diff options
author | Valery Piashchynski <[email protected]> | 2022-05-16 15:46:24 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-05-16 15:46:24 +0200 |
commit | 5ce50f7b86909714a3857d7900ec0ddf45cc7529 (patch) | |
tree | cc1289f200057e2aade6932936cafeb806471891 /.rr.yaml | |
parent | a8a2a7b39cffefc0719c66111618879d7e1800d0 (diff) |
update schemas
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.rr.yaml')
-rw-r--r-- | .rr.yaml | 42 |
1 files changed, 42 insertions, 0 deletions
@@ -499,6 +499,48 @@ http: "fe80::/10", ] + # [SINCE 2.10] OpenTelemetry middleware + otel: + # Use insecure endpoint (http) or insecure gRPC + # + # Default: false + insecure: true + + # Use gzip to compress the spans + # + # Default: false + compress: false + + # Client to send the spans + # + # Default: http. Possible values: `http`, `grpc` + client: http + + # Provides functionality to emit telemetry to consumers + # + # Default: otlp. Possible values: otlp (used for new_relic, datadog), zipkin or stdout + exporter: otlp + + # Used for the http client to override the default URL + # + # Default: empty + custom_url: + + # User's service name + # + # Default: RoadRunner + service_name: rr_test + + # User's service version + # + # Default: RoadRunner + service_version: 1.0.0 + + # Consumer's endpoint + # + # Default: localhost:4318 + endpoint: 127.0.0.1:4318 + # [SINCE 2.6] New Relic middleware new_relic: # Application name. |