diff options
author | Kajetan <[email protected]> | 2023-02-07 09:26:28 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-07 09:26:28 +0100 |
commit | 081e58f2e04a2de43bdbca600001bfea3944ff22 (patch) | |
tree | 9ce150290dbd7d2351028a50a434d5cf33a96204 /.rr.yaml | |
parent | 7221ba037c5aeb2cfee0e8eefc8b0e15112b1d2f (diff) |
[#1444]: feature: opentelemetry support for the `gRPC` and `Temporal` plugins
Diffstat (limited to '.rr.yaml')
-rw-r--r-- | .rr.yaml | 83 |
1 files changed, 41 insertions, 42 deletions
@@ -543,6 +543,47 @@ service: # Default: 30 restart_sec: 1 +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 stderr 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: 127.0.0.1:4318 + endpoint: "127.0.0.1:4318" + # HTTP plugin settings. http: # Host and port to listen on (eg.: `127.0.0.1:8080`). @@ -589,48 +630,6 @@ 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. |