|
| 1 | +[[opentelemetry]] |
| 2 | +=== Using OpenTelemetry |
| 3 | + |
| 4 | +You can use https://opentelemetry.io/[OpenTelemetry] to monitor the performance and behavior of your Elasticsearch requests through the Ruby Client. |
| 5 | +The Ruby Client comes with built-in OpenTelemetry instrumentation that emits https://www.elastic.co/guide/en/apm/guide/current/apm-distributed-tracing.html[distributed tracing spans] by default. |
| 6 | +With that, applications https://opentelemetry.io/docs/instrumentation/ruby/manual/[instrumented with OpenTelemetry] or using the https://opentelemetry.io/docs/instrumentation/ruby/automatic/[OpenTelemetry Ruby SDK] are inherently enriched with additional spans that contain insightful information about the execution of the Elasticsearch requests. |
| 7 | + |
| 8 | +The native instrumentation in the Ruby Client follows the https://opentelemetry.io/docs/specs/semconv/database/elasticsearch/[OpenTelemetry Semantic Conventions for Elasticsearch]. In particular, the instrumentation in the client covers the logical Elasticsearch request layer, thus, creates a single span per request the service executes against the Ruby Client. The following image shows a resulting trace in which two different Elasticsearch requests are executed, i.e. `ping` and a search `request`: |
| 9 | + |
| 10 | +[role="screenshot"] |
| 11 | +image::images/otel-waterfall-instrumented-without-http.jpg[alt="Distributed trace with Elasticsearch spans",align="center"] |
| 12 | + |
| 13 | +Usually, OpenTelemetry auto-instrumentation modules come with instrumentation support for HTTP-level communication. In this case, in addition to the logical Elasticsearch client requests, spans will be captured for the physical HTTP requests emitted by the client. The following image shows a trace with both, Elasticsearch spans (in blue) and the corresponding HTTP-level spans (in red): |
| 14 | + |
| 15 | +[role="screenshot"] |
| 16 | +image::images/otel-waterfall-instrumented-with-http.jpg[alt="Distributed trace with Elasticsearch spans",align="center"] |
| 17 | + |
| 18 | +Advanced Ruby Client behavior such as nodes round-robin and request retries are revealed through the combination of logical Elasticsearch spans and the physical HTTP spans. The following example shows an `search` request in a scenario with two Elasticsearch nodes: |
| 19 | + |
| 20 | +[role="screenshot"] |
| 21 | +image::images/otel-waterfall-retry.jpg[alt="Distributed trace with Elasticsearch spans",align="center"] |
| 22 | + |
| 23 | +The first node is unavailable and results in an HTTP error, while the retry to the second node succeeds. Both HTTP requests are subsumed by the logical Elasticsearch request span (in blue). |
| 24 | + |
| 25 | +[discrete] |
| 26 | +==== Setup the OpenTelemetry instrumentation |
| 27 | +When using the https://opentelemetry.io/docs/instrumentation/ruby/manual[OpenTelemetry Ruby SDK manually] or using the https://opentelemetry.io/docs/instrumentation/ruby/automatic/[OpenTelemetry Ruby Auto-Instrumentations], the Ruby Client's OpenTelemetry instrumentation is enabled by default and uses the global OpenTelemetry SDK with the global tracer provider. You can provide a tracer provider via the Ruby Client configuration option `opentelemetry_tracer_provider` when instantiating the client. This is sometimes useful for testing or other specific use cases. |
| 28 | + |
| 29 | +[discrete] |
| 30 | +==== Configuring the OpenTelemetry instrumentation |
| 31 | + |
| 32 | +You can configure the OpenTelemetry instrumentation through Environment Variables. |
| 33 | +The following configuration options are available. |
| 34 | + |
| 35 | +[discrete] |
| 36 | +[[opentelemetry-config-enable]] |
| 37 | +===== Enable / Disable the OpenTelemetry instrumentation |
| 38 | + |
| 39 | +With this configuration option you can enable (default) or disable the built-in OpenTelemetry instrumentation. |
| 40 | + |
| 41 | +**Default:** `true` |
| 42 | + |
| 43 | +|============ |
| 44 | +| Environment Variable | `OTEL_RUBY_INSTRUMENTATION_ELASTICSEARCH_ENABLED` |
| 45 | +|============ |
| 46 | + |
| 47 | +[discrete] |
| 48 | +===== Capture search request bodies |
| 49 | + |
| 50 | +Per default, the built-in OpenTelemetry instrumentation does not capture request bodies because of data privacy reasons. You can use this option to enable capturing of search queries from the the request bodies of Elasticsearch search requests in case you wish to capture this information, regardless. The options are to capture the raw search query, sanitize the query with a default list of sensitive keys, or not capture it at all. |
| 51 | + |
| 52 | +**Default:** `omit` |
| 53 | + |
| 54 | +|============ |
| 55 | +| Environment Variable | `OTEL_INSTRUMENTATION_ELASTICSEARCH_CAPTURE_SEARCH_QUERY` |
| 56 | +|============ |
| 57 | + |
| 58 | +[discrete] |
| 59 | +===== Sanitize the elasticsearch search request body |
| 60 | + |
| 61 | +You can configure the list of keys whose values are redacted when the search query is captured. The values should be separated by a comma. |
| 62 | + |
| 63 | +**Default:** `nil` |
| 64 | + |
| 65 | +|============ |
| 66 | +| Environment Variable | `OTEL_RUBY_INSTRUMENTATION_ELASTICSEARCH_SEARCH_QUERY_SANITIZE_KEYS` |
| 67 | +|============ |
| 68 | + |
| 69 | +Example: |
| 70 | + |
| 71 | +```bash |
| 72 | +OTEL_RUBY_INSTRUMENTATION_ELASTICSEARCH_SEARCH_QUERY_SANITIZE_KEYS='sensitive-key,other-sensitive-key' |
| 73 | +``` |
| 74 | + |
| 75 | +[discrete] |
| 76 | +==== Overhead |
| 77 | +The OpenTelemetry instrumentation (as any other monitoring approach) may come with a little overhead on CPU, memory and/or latency. The overhead may only occur when the instrumentation is enabled (default) and an OpenTelemetry SDK is active in the target application. In case that either the instrumentation is disabled or no OpenTelemetry SDK is active with the target application, there is no monitoring overhead expected when using the client. |
| 78 | + |
| 79 | +Even when the instrumentation is enabled and is being actively used (by an OpenTelemetry SDK), in the vast majority of cases the overhead is very small and negligible. In edge cases in which there is a noticable overhead the <<opentelemetry-config-enable,instrumentation can be explicitly disabled>> to eliminate any potential overhead effect of the instrumentation. |
0 commit comments