opentelemetry-erlang-contrib/instrumentation/opentelemetry_redix
Patrik Stenmark ddf0706bf1
Make exdocs settings a bit more similar between different packages (#168)
* Add source_url_pattern to be able to use the "link to source" button
* Add README.md as an "extra" where it wasn't already
* Add a `main` setting. They all have a very obvious main module. Set
  that as `main`, so a user is shown this immediately instead of a list
  of usually only this module.
2023-04-30 12:10:03 -06:00
..
config Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
lib chore: add semantic conventions pgk to redix (#119) 2022-11-14 15:33:48 -07:00
test Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
.formatter.exs Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
.gitignore Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
CHANGELOG.md Report Redix error messages through OTel status (#81) 2022-05-10 14:05:35 -06:00
LICENSE Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
README.md Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
docker-compose.yml Add OpenTelemetry integration to Redix (#29) 2022-01-04 14:39:19 -07:00
mix.exs Make exdocs settings a bit more similar between different packages (#168) 2023-04-30 12:10:03 -06:00
mix.lock Phoenix Plug.Cowboy adapter support (#144) 2023-01-06 13:46:06 -07:00

README.md

OpentelemetryRedix

OpentelemetryRedix uses telemetry handlers to create OpenTelemetry spans from Redix command events.

Supported events include command stop. Connection and disconnection events are also observed to track Redis instance address.

Note on Redix integration

A sidecar process runs under opentelemetry_redix application to track Redix connection information to inside command spans. As a requirement, all Redis connections should start after this application.

For connections started by your application, all works as expected. But some libraries manage internally, and for those cases, you need to ensure proper order via extra_applications.

One such example is hammer_backend_redis. In case you depend on that library, extra_applications will be similar to the following:

  def application do
    [
      extra_applications: [:opentelemetry_redix, :hammer_backend_redis]
    ]
  end

Installation

The package can be installed by adding opentelemetry_redix to your list of dependencies in mix.exs:

  def deps do
    [
      {:opentelemetry_redix, "~> 0.1"}
    ]
  end

Compatibility Matrix

OpentelemetryRedix Version Otel Version Notes
v0.1.0 v1.0.0

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/opentelemetry_redix.