diff options
-rw-r--r-- | .rr.yaml | 8 | ||||
-rw-r--r-- | schemas/config/2.0.schema.json | 4 |
2 files changed, 6 insertions, 6 deletions
@@ -524,22 +524,22 @@ http: # Used for the http client to override the default URL # # Default: empty - custom_url: + custom_url: "" # User's service name # # Default: RoadRunner - service_name: rr_test + service_name: "rr_test" # User's service version # # Default: RoadRunner - service_version: 1.0.0 + service_version: "1.0.0" # Consumer's endpoint # # Default: localhost:4318 - endpoint: 127.0.0.1:4318 + endpoint: "127.0.0.1:4318" # [SINCE 2.6] New Relic middleware new_relic: diff --git a/schemas/config/2.0.schema.json b/schemas/config/2.0.schema.json index 4894a1f0..64e7e279 100644 --- a/schemas/config/2.0.schema.json +++ b/schemas/config/2.0.schema.json @@ -749,7 +749,7 @@ }, "exporter": { "description": "Provides functionality to emit telemetry to consumers", - "type": "array", + "type": "string", "items": { "type": "string", "enum": [ @@ -772,7 +772,7 @@ }, "client": { "description": "Client to send the spans", - "type": "array", + "type": "string", "items": { "type": "string", "enum": [ |