opentelemetry-erlang-contrib/instrumentation/opentelemetry_ecto
Ho-Yon Mak 352c17231a
Set error status for ecto errors in opentelemetry_ecto (#41)
* Set error status on error instead of just adding attribute

* Use Exception.message if error is an exception

Co-authored-by: Bryan Naegele <bryannaegele@users.noreply.github.com>
2021-11-22 12:08:31 -07:00
..
config Otel 1.0.0-rc.3 support (#27) 2021-10-13 21:11:26 -06:00
lib Set error status for ecto errors in opentelemetry_ecto (#41) 2021-11-22 12:08:31 -07:00
priv/test_repo/migrations Migrate otel ecto (#16) 2021-10-08 15:38:18 -06:00
test Set error status for ecto errors in opentelemetry_ecto (#41) 2021-11-22 12:08:31 -07:00
.formatter.exs Migrate otel ecto (#16) 2021-10-08 15:38:18 -06:00
.gitignore Migrate otel ecto (#16) 2021-10-08 15:38:18 -06:00
CHANGELOG.md Lock Otel versions and publish updates (#22) 2021-10-08 16:27:42 -06:00
LICENSE Migrate otel ecto (#16) 2021-10-08 15:38:18 -06:00
README.md Otel 1.0.0-rc.3 support (#27) 2021-10-13 21:11:26 -06:00
docker-compose.yml Otel 1.0.0-rc.3 support (#27) 2021-10-13 21:11:26 -06:00
mix.exs Otel 1.0.0-rc.3 support (#27) 2021-10-13 21:11:26 -06:00
mix.lock Publish packages (#28) 2021-10-15 14:01:11 -06:00

README.md

OpentelemetryEcto

Telemetry handler that creates Opentelemetry spans from Ecto query events. Because Ecto emits telemetry events only after queries have finished, OpentelemetryEcto estimates the start time of the span by subtracting the reported total duration from the current timestamp.

After installing, setup the handler in your application behaviour before your top-level supervisor starts.

OpentelemetryEcto.setup([:blog, :repo])

See the documentation for OpentelemetryEcto.setup/2 for additional options that may be supplied.

Installation

If available in Hex, the package can be installed by adding opentelemetry_ecto to your list of dependencies in mix.exs:

def deps do
  [
    {:opentelemetry_ecto, "~> 1.0.0-rc.2"}
  ]
end

Compatibility Matrix

OpentelemetryEcto Version Otel Version Notes
v0.1.0 <= v.0.5.0
v1.0.0-rc.1 v1.0.0-rc.1
v1.0.0-rc.2 v1.0.0-rc.2
v1.0.0-rc.3 v1.0.0-rc.3

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