Compare commits
10 Commits
835905ba86
...
5d4782c06b
Author | SHA1 | Date |
---|---|---|
Shadowfacts | 5d4782c06b | |
Andrea Leopardi | c2cb6bc86c | |
renovate[bot] | 3f13bc8b20 | |
renovate[bot] | b013cb5e0c | |
github-actions[bot] | 63ac1bbe01 | |
renovate[bot] | fdbeff232a | |
Bryan Naegele | 35d719215b | |
João Thallis | de84e7b275 | |
renovate[bot] | 0dbda341f2 | |
renovate[bot] | 116260cbff |
|
@ -350,7 +350,7 @@ jobs:
|
|||
elixir-version: ${{ matrix.elixir_version }}
|
||||
rebar3-version: ${{ matrix.rebar3_version }}
|
||||
- name: Cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/deps
|
||||
|
|
|
@ -190,7 +190,7 @@ jobs:
|
|||
}
|
||||
}
|
||||
|
||||
- uses: erlef/setup-beam@a23b1fc4452a892cf3e92cbc2c405256cd6c27ec # v1
|
||||
- uses: erlef/setup-beam@2f0cc07b4b9bea248ae098aba9e1a8a1de5ec24c # v1
|
||||
with:
|
||||
version-type: strict
|
||||
otp-version: "25.3.2.5"
|
||||
|
@ -218,7 +218,7 @@ jobs:
|
|||
- name: "Open a Version Update PR"
|
||||
if: ${{ env.releasePrepped == 'false' }}
|
||||
id: version-update-pr
|
||||
uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6
|
||||
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v6
|
||||
with:
|
||||
add-paths: |
|
||||
${{ steps.update-files.outputs.srcFilePath }}
|
||||
|
|
|
@ -130,7 +130,7 @@ jobs:
|
|||
name: '[opentelemetry-bandit-release] Draft release'
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: release-drafter/release-drafter@v5
|
||||
- uses: release-drafter/release-drafter@v6
|
||||
with:
|
||||
config-name: release-drafter-templates/opentelemetry-bandit.yml
|
||||
env:
|
||||
|
|
|
@ -62,7 +62,7 @@ We'd love your help!. Use tags [up-for-grabs][up-for-grabs-issues] and
|
|||
|
||||
- For more information on OpenTelemetry, see [opentelemetry.io](https://opentelemetry.io).
|
||||
- For conventions used in OpenTelemetry traces, see the following [readme](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/README.md).
|
||||
- For help or feedback on this project, join us in [GitHub Discussions](https://github.com/open-telemetry/opentelemetry-erlang-contrib/discussions), `#otel-erlang-elixir` channel in the [CNCF slack](https://slack.cncf.io/), and `#opentelemetry` channel in the [Elixir Lang slack](https://elixir-slackin.herokuapp.com/)
|
||||
- For help or feedback on this project, join us in [GitHub Discussions](https://github.com/open-telemetry/opentelemetry-erlang-contrib/discussions), `#otel-erlang-elixir` channel in the [CNCF slack](https://slack.cncf.io/), and `#opentelemetry` channel in the [Elixir Lang slack](https://elixir-slack.community/)
|
||||
- Erlang SIG [community page](https://github.com/open-telemetry/community#special-interest-groups)
|
||||
|
||||
## License
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<a href="https://twitter.com/elixirphoenix">Twitter @elixirphoenix</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://elixir-slackin.herokuapp.com/">Elixir on Slack</a>
|
||||
<a href="https://elixir-slack.community/">Elixir on Slack</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://discord.gg/elixir">Elixir on Discord</a>
|
||||
|
|
|
@ -52,10 +52,10 @@ defmodule OpentelemetryBandit do
|
|||
if Map.has_key?(meta, :error) do
|
||||
%{
|
||||
Trace.http_url() => url,
|
||||
Trace.http_method() => meta.method,
|
||||
Trace.http_method() => conn.method,
|
||||
Trace.net_transport() => :"IP.TCP",
|
||||
Trace.http_response_content_length() => measurements.resp_body_bytes,
|
||||
Trace.http_status_code() => meta.status
|
||||
Trace.http_response_content_length() => Map.get(measurements, :resp_body_bytes),
|
||||
Trace.http_status_code() => conn.status
|
||||
}
|
||||
else
|
||||
%{
|
||||
|
@ -65,9 +65,9 @@ defmodule OpentelemetryBandit do
|
|||
Trace.net_peer_name() => conn.host,
|
||||
Trace.net_peer_port() => conn.port,
|
||||
Trace.http_target() => conn.request_path,
|
||||
Trace.http_method() => meta.method,
|
||||
Trace.http_status_code() => meta.status,
|
||||
Trace.http_response_content_length() => measurements.resp_body_bytes,
|
||||
Trace.http_method() => conn.method,
|
||||
Trace.http_status_code() => conn.status,
|
||||
Trace.http_response_content_length() => Map.get(measurements, :resp_body_bytes),
|
||||
Trace.net_transport() => :"IP.TCP",
|
||||
Trace.http_user_agent() => user_agent(conn)
|
||||
}
|
||||
|
@ -75,7 +75,7 @@ defmodule OpentelemetryBandit do
|
|||
|
||||
span_kind = if Map.has_key?(meta, :error), do: :error, else: :server
|
||||
|
||||
span_id = "HTTP #{meta.method} #{request_path}" |> String.trim()
|
||||
span_id = "HTTP #{conn.method} #{request_path}" |> String.trim()
|
||||
|
||||
OpenTelemetry.Tracer.start_span(span_id, %{
|
||||
attributes: attributes,
|
||||
|
|
|
@ -78,7 +78,7 @@ defmodule OpentelemetryBandit.MixProject do
|
|||
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
|
||||
{:opentelemetry, "~> 1.0", only: [:dev, :test]},
|
||||
{:opentelemetry_exporter, "~> 1.0", only: [:dev, :test]},
|
||||
{:req, "~> 0.3", only: [:dev, :test]}
|
||||
{:req, "~> 0.4", only: [:dev, :test]}
|
||||
]
|
||||
end
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
%{
|
||||
"acceptor_pool": {:hex, :acceptor_pool, "1.0.0", "43c20d2acae35f0c2bcd64f9d2bde267e459f0f3fd23dab26485bf518c281b21", [:rebar3], [], "hexpm", "0cbcd83fdc8b9ad2eee2067ef8b91a14858a5883cb7cd800e6fcd5803e158788"},
|
||||
"bandit": {:hex, :bandit, "1.0.0", "2bd87bbf713d0eed0090f2fa162cd1676198122e6c2b68a201c706e354a6d5e5", [:mix], [{:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:thousand_island, "~> 1.0", [hex: :thousand_island, repo: "hexpm", optional: false]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "32acf6ac030fee1f99fd9c3fcf81671911ae8637e0a61c98111861b466efafdb"},
|
||||
"castore": {:hex, :castore, "1.0.4", "ff4d0fb2e6411c0479b1d965a814ea6d00e51eb2f58697446e9c41a97d940b28", [:mix], [], "hexpm", "9418c1b8144e11656f0be99943db4caf04612e3eaecefb5dae9a2a87565584f8"},
|
||||
"castore": {:hex, :castore, "1.0.5", "9eeebb394cc9a0f3ae56b813459f990abb0a3dedee1be6b27fdb50301930502f", [:mix], [], "hexpm", "8d7c597c3e4a64c395980882d4bca3cebb8d74197c590dc272cfd3b6a6310578"},
|
||||
"chatterbox": {:hex, :ts_chatterbox, "0.13.0", "6f059d97bcaa758b8ea6fffe2b3b81362bd06b639d3ea2bb088335511d691ebf", [:rebar3], [{:hpack, "~> 0.2.3", [hex: :hpack_erl, repo: "hexpm", optional: false]}], "hexpm", "b93d19104d86af0b3f2566c4cba2a57d2e06d103728246ba1ac6c3c0ff010aa7"},
|
||||
"ctx": {:hex, :ctx, "0.6.0", "8ff88b70e6400c4df90142e7f130625b82086077a45364a78d208ed3ed53c7fe", [:rebar3], [], "hexpm", "a14ed2d1b67723dbebbe423b28d7615eb0bdcba6ff28f2d1f1b0a7e1d4aa5fc2"},
|
||||
"dialyxir": {:hex, :dialyxir, "1.4.1", "a22ed1e7bd3a3e3f197b68d806ef66acb61ee8f57b3ac85fc5d57354c5482a93", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "84b795d6d7796297cca5a3118444b80c7d94f7ce247d49886e7c291e1ae49801"},
|
||||
|
@ -9,7 +9,7 @@
|
|||
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
|
||||
"ex_doc": {:hex, :ex_doc, "0.31.0", "06eb1dfd787445d9cab9a45088405593dd3bb7fe99e097eaa71f37ba80c7a676", [:mix], [{:earmark_parser, "~> 1.4.39", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_c, ">= 0.1.1", [hex: :makeup_c, repo: "hexpm", optional: true]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "5350cafa6b7f77bdd107aa2199fe277acf29d739aba5aee7e865fc680c62a110"},
|
||||
"excoveralls": {:hex, :excoveralls, "0.18.0", "b92497e69465dc51bc37a6422226ee690ab437e4c06877e836f1c18daeb35da9", [:mix], [{:castore, "~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "1109bb911f3cb583401760be49c02cbbd16aed66ea9509fc5479335d284da60b"},
|
||||
"finch": {:hex, :finch, "0.16.0", "40733f02c89f94a112518071c0a91fe86069560f5dbdb39f9150042f44dcfb1a", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.3", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 0.2.6 or ~> 1.0", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "f660174c4d519e5fec629016054d60edd822cdfe2b7270836739ac2f97735ec5"},
|
||||
"finch": {:hex, :finch, "0.17.0", "17d06e1d44d891d20dbd437335eebe844e2426a0cd7e3a3e220b461127c73f70", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.3", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 0.2.6 or ~> 1.0", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "8d014a661bb6a437263d4b5abf0bcbd3cf0deb26b1e8596f2a271d22e48934c7"},
|
||||
"gproc": {:hex, :gproc, "0.8.0", "cea02c578589c61e5341fce149ea36ccef236cc2ecac8691fba408e7ea77ec2f", [:rebar3], [], "hexpm", "580adafa56463b75263ef5a5df4c86af321f68694e7786cb057fd805d1e2a7de"},
|
||||
"grpcbox": {:hex, :grpcbox, "0.16.0", "b83f37c62d6eeca347b77f9b1ec7e9f62231690cdfeb3a31be07cd4002ba9c82", [:rebar3], [{:acceptor_pool, "~> 1.0.0", [hex: :acceptor_pool, repo: "hexpm", optional: false]}, {:chatterbox, "~> 0.13.0", [hex: :ts_chatterbox, repo: "hexpm", optional: false]}, {:ctx, "~> 0.6.0", [hex: :ctx, repo: "hexpm", optional: false]}, {:gproc, "~> 0.8.0", [hex: :gproc, repo: "hexpm", optional: false]}], "hexpm", "294df743ae20a7e030889f00644001370a4f7ce0121f3bbdaf13cf3169c62913"},
|
||||
"hpack": {:hex, :hpack_erl, "0.2.3", "17670f83ff984ae6cd74b1c456edde906d27ff013740ee4d9efaa4f1bf999633", [:rebar3], [], "hexpm", "06f580167c4b8b8a6429040df36cc93bba6d571faeaec1b28816523379cbb23a"},
|
||||
|
@ -19,8 +19,9 @@
|
|||
"makeup_elixir": {:hex, :makeup_elixir, "0.16.1", "cc9e3ca312f1cfeccc572b37a09980287e243648108384b97ff2b76e505c3555", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "e127a341ad1b209bd80f7bd1620a15693a9908ed780c3b763bccf7d200c767c6"},
|
||||
"makeup_erlang": {:hex, :makeup_erlang, "0.1.3", "d684f4bac8690e70b06eb52dad65d26de2eefa44cd19d64a8095e1417df7c8fd", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "b78dc853d2e670ff6390b605d807263bf606da3c82be37f9d7f68635bd886fc9"},
|
||||
"mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"},
|
||||
"mint": {:hex, :mint, "1.5.1", "8db5239e56738552d85af398798c80648db0e90f343c8469f6c6d8898944fb6f", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "4a63e1e76a7c3956abd2c72f370a0d0aecddc3976dea5c27eccbecfa5e7d5b1e"},
|
||||
"nimble_options": {:hex, :nimble_options, "1.0.2", "92098a74df0072ff37d0c12ace58574d26880e522c22801437151a159392270e", [:mix], [], "hexpm", "fd12a8db2021036ce12a309f26f564ec367373265b53e25403f0ee697380f1b8"},
|
||||
"mint": {:hex, :mint, "1.5.2", "4805e059f96028948870d23d7783613b7e6b0e2fb4e98d720383852a760067fd", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "d77d9e9ce4eb35941907f1d3df38d8f750c357865353e21d335bdcdf6d892a02"},
|
||||
"nimble_options": {:hex, :nimble_options, "1.1.0", "3b31a57ede9cb1502071fade751ab0c7b8dbe75a9a4c2b5bbb0943a690b63172", [:mix], [], "hexpm", "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99"},
|
||||
"nimble_ownership": {:hex, :nimble_ownership, "0.2.1", "3e44c72ebe8dd213db4e13aff4090aaa331d158e72ce1891d02e0ffb05a1eb2d", [:mix], [], "hexpm", "bf38d2ef4fb990521a4ecf112843063c1f58a5c602484af4c7977324042badee"},
|
||||
"nimble_parsec": {:hex, :nimble_parsec, "1.4.0", "51f9b613ea62cfa97b25ccc2c1b4216e81df970acd8e16e8d1bdc58fef21370d", [:mix], [], "hexpm", "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"},
|
||||
"nimble_pool": {:hex, :nimble_pool, "1.0.0", "5eb82705d138f4dd4423f69ceb19ac667b3b492ae570c9f5c900bb3d2f50a847", [:mix], [], "hexpm", "80be3b882d2d351882256087078e1b1952a28bf98d0a287be87e4a24a710b67a"},
|
||||
"opentelemetry": {:hex, :opentelemetry, "1.3.1", "f0a342a74379e3540a634e7047967733da4bc8b873ec9026e224b2bd7369b1fc", [:rebar3], [{:opentelemetry_api, "~> 1.2.2", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:opentelemetry_semantic_conventions, "~> 0.2", [hex: :opentelemetry_semantic_conventions, repo: "hexpm", optional: false]}], "hexpm", "de476b2ac4faad3e3fe3d6e18b35dec9cb338c3b9910c2ce9317836dacad3483"},
|
||||
|
@ -28,9 +29,9 @@
|
|||
"opentelemetry_exporter": {:hex, :opentelemetry_exporter, "1.6.0", "f4fbf69aa9f1541b253813221b82b48a9863bc1570d8ecc517bc510c0d1d3d8c", [:rebar3], [{:grpcbox, ">= 0.0.0", [hex: :grpcbox, repo: "hexpm", optional: false]}, {:opentelemetry, "~> 1.3", [hex: :opentelemetry, repo: "hexpm", optional: false]}, {:opentelemetry_api, "~> 1.2", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:tls_certificate_check, "~> 1.18", [hex: :tls_certificate_check, repo: "hexpm", optional: false]}], "hexpm", "1802d1dca297e46f21e5832ecf843c451121e875f73f04db87355a6cb2ba1710"},
|
||||
"opentelemetry_semantic_conventions": {:hex, :opentelemetry_semantic_conventions, "0.2.0", "b67fe459c2938fcab341cb0951c44860c62347c005ace1b50f8402576f241435", [:mix, :rebar3], [], "hexpm", "d61fa1f5639ee8668d74b527e6806e0503efc55a42db7b5f39939d84c07d6895"},
|
||||
"opentelemetry_telemetry": {:hex, :opentelemetry_telemetry, "1.0.0", "d5982a319e725fcd2305b306b65c18a86afdcf7d96821473cf0649ff88877615", [:mix, :rebar3], [{:opentelemetry_api, "~> 1.0", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:telemetry_registry, "~> 0.3.0", [hex: :telemetry_registry, repo: "hexpm", optional: false]}], "hexpm", "3401d13a1d4b7aa941a77e6b3ec074f0ae77f83b5b2206766ce630123a9291a9"},
|
||||
"plug": {:hex, :plug, "1.15.1", "b7efd81c1a1286f13efb3f769de343236bd8b7d23b4a9f40d3002fc39ad8f74c", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "459497bd94d041d98d948054ec6c0b76feacd28eec38b219ca04c0de13c79d30"},
|
||||
"plug": {:hex, :plug, "1.15.3", "712976f504418f6dff0a3e554c40d705a9bcf89a7ccef92fc6a5ef8f16a30a97", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "cc4365a3c010a56af402e0809208873d113e9c38c401cabd88027ef4f5c01fd2"},
|
||||
"plug_crypto": {:hex, :plug_crypto, "2.0.0", "77515cc10af06645abbfb5e6ad7a3e9714f805ae118fa1a70205f80d2d70fe73", [:mix], [], "hexpm", "53695bae57cc4e54566d993eb01074e4d894b65a3766f1c43e2c61a1b0f45ea9"},
|
||||
"req": {:hex, :req, "0.4.4", "a17b6bec956c9af4f08b5d8e8a6fc6e4edf24ccc0ac7bf363a90bba7a0f0138c", [:mix], [{:brotli, "~> 0.3.1", [hex: :brotli, repo: "hexpm", optional: true]}, {:ezstd, "~> 1.0", [hex: :ezstd, repo: "hexpm", optional: true]}, {:finch, "~> 0.9", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:nimble_csv, "~> 1.0", [hex: :nimble_csv, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "2618c0493444fee927d12073afb42e9154e766b3f4448e1011f0d3d551d1a011"},
|
||||
"req": {:hex, :req, "0.4.9", "d079876e952f28b60fb0f595ae6492d1bc5b727b376746776014d541b9b56187", [:mix], [{:aws_signature, "~> 0.3.0", [hex: :aws_signature, repo: "hexpm", optional: true]}, {:brotli, "~> 0.3.1", [hex: :brotli, repo: "hexpm", optional: true]}, {:ezstd, "~> 1.0", [hex: :ezstd, repo: "hexpm", optional: true]}, {:finch, "~> 0.17.0", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:nimble_csv, "~> 1.0", [hex: :nimble_csv, repo: "hexpm", optional: true]}, {:nimble_ownership, "~> 0.2.0", [hex: :nimble_ownership, repo: "hexpm", optional: false]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "c8c2bff52a336586b63ee9f047078637e2e91073bf948e312f84caade28b521b"},
|
||||
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"},
|
||||
"telemetry": {:hex, :telemetry, "1.2.1", "68fdfe8d8f05a8428483a97d7aab2f268aaff24b49e0f599faa091f1d4e7f61c", [:rebar3], [], "hexpm", "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"},
|
||||
"telemetry_registry": {:hex, :telemetry_registry, "0.3.1", "14a3319a7d9027bdbff7ebcacf1a438f5f5c903057b93aee484cca26f05bdcba", [:mix, :rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "6d0ca77b691cf854ed074b459a93b87f4c7f5512f8f7743c635ca83da81f939e"},
|
||||
|
|
|
@ -1,24 +1,23 @@
|
|||
# OpentelemetryEcto
|
||||
|
||||
Telemetry handler that creates Opentelemetry spans from Ecto query events. Because
|
||||
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.
|
||||
After installing, set up the handler in your application's `start/2` callback before your
|
||||
top-level supervisor starts, passing the Telemetry prefix of the Ecto repo you want to instrument.
|
||||
|
||||
```elixir
|
||||
OpentelemetryEcto.setup([:blog, :repo])
|
||||
```
|
||||
|
||||
See the documentation for `OpentelemetryEcto.setup/2` for additional options that
|
||||
See [the documentation for `OpentelemetryEcto.setup/2`](https://hexdocs.pm/opentelemetry_ecto/OpentelemetryEcto.html#setup/2) for additional options that
|
||||
may be supplied.
|
||||
|
||||
## Installation
|
||||
|
||||
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
|
||||
by adding `opentelemetry_ecto` to your list of dependencies in `mix.exs`:
|
||||
Add the package to your list of dependencies in `mix.exs`:
|
||||
|
||||
```elixir
|
||||
def deps do
|
||||
|
@ -30,7 +29,7 @@ end
|
|||
|
||||
## Compatibility Matrix
|
||||
|
||||
| OpentelemetryEcto Version | Otel Version | Notes |
|
||||
| OpentelemetryEcto Version | OTel Version | Notes |
|
||||
| :------------------------ | :----------- | :---- |
|
||||
| | | |
|
||||
| v0.1.0 | <= v.0.5.0 | |
|
||||
|
@ -39,8 +38,3 @@ end
|
|||
| v1.0.0-rc.3 | v1.0.0-rc.3 | |
|
||||
| v1.0.0-rc.4 | v1.0.0-rc.4 | |
|
||||
| v1.0 | v1.0 | |
|
||||
|
||||
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
|
||||
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
|
||||
be found at [https://hexdocs.pm/opentelemetry_ecto](https://hexdocs.pm/opentelemetry_ecto).
|
||||
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
defmodule OpentelemetryEcto do
|
||||
@moduledoc """
|
||||
Telemetry handler for creating OpenTelemetry Spans from Ecto query events. Any
|
||||
relation preloads, which are executed in parallel in separate tasks, will be
|
||||
Telemetry handler for creating OpenTelemetry Spans from Ecto query events.
|
||||
|
||||
Any relation preloads, which are executed in parallel in separate tasks, will be
|
||||
linked to the span of the process that initiated the call. For example:
|
||||
|
||||
Tracer.with_span "parent span" do
|
||||
Repo.all(Query.from(User, preload: [:posts, :comments]))
|
||||
end
|
||||
|
||||
this will create a span called "parent span" with three child spans for each
|
||||
This will create a span called `"parent span:"` with three child spans for each
|
||||
query: users, posts, and comments.
|
||||
|
||||
> #### Note {: .neutral}
|
||||
|
@ -19,35 +20,62 @@ defmodule OpentelemetryEcto do
|
|||
|
||||
require OpenTelemetry.Tracer
|
||||
|
||||
@typedoc """
|
||||
Option that you can pass to `setup/2`.
|
||||
"""
|
||||
@typedoc since: "1.3.0"
|
||||
@type setup_option() ::
|
||||
{:time_unit, System.time_unit()}
|
||||
| {:span_prefix, String.t()}
|
||||
| {:additional_attributes, %{String.t() => term()}}
|
||||
| {:db_statement, :enabled | :disabled | (String.t() -> String.t())}
|
||||
|
||||
@doc """
|
||||
Attaches the OpentelemetryEcto handler to your repo events. This should be called
|
||||
from your application behaviour on startup.
|
||||
Attaches the `OpentelemetryEcto` handler to your repo events.
|
||||
|
||||
Example:
|
||||
This should be called from your application's `c:Application.start/2` callback on startup,
|
||||
before starting the application's top-level supervisor.
|
||||
|
||||
`event_prefix` must be the prefix configured in the `Ecto.Repo` Telemetry configuration.
|
||||
By default, it's the snake-cased name of the repository module. For `MyApp.Repo`, it would
|
||||
be `[:my_app, :repo]`.
|
||||
|
||||
For example:
|
||||
|
||||
@impl Application
|
||||
def start(_type, _args) do
|
||||
OpentelemetryEcto.setup([:blog, :repo])
|
||||
|
||||
children = [...]
|
||||
Supervisor.start_link(children, strategy: :one_for_one)
|
||||
end
|
||||
|
||||
## Options
|
||||
|
||||
You may also supply the following options in the second argument:
|
||||
|
||||
* `:time_unit` - a time unit used to convert the values of query phase
|
||||
timings, defaults to `:microsecond`. See `System.convert_time_unit/3`
|
||||
* `:span_prefix` - the first part of the span name, as a `String.t`,
|
||||
defaults to the concatenation of the event name with periods, e.g.
|
||||
timings, defaults to `:microsecond`. See `System.convert_time_unit/3`.
|
||||
* `:span_prefix` - the first part of the span name.
|
||||
Defaults to the concatenation of the event name with periods, such as
|
||||
`"blog.repo.query"`. This will always be followed with a colon and the
|
||||
source (the table name for SQL adapters).
|
||||
source (the table name for SQL adapters). For example: `"blog.repo.query:users"`.
|
||||
* `:additional_attributes` - additional attributes to include in the span. If there
|
||||
are conflits with default provided attributes, the ones provided with
|
||||
this config will have precedence.
|
||||
* `:db_statement` - :disabled (default) | :enabled | fun
|
||||
Whether or not to include db statements.
|
||||
* `:db_statement` - `:disabled` (default), `:enabled`, or a function.
|
||||
Whether or not to include DB statements in the **span attributes** (as the
|
||||
`db.statement` attribute).
|
||||
Optionally provide a function that takes a query string and returns a
|
||||
sanitized version of it. This is useful for removing sensitive information from the
|
||||
query string. Unless this option is `:enabled` or a function,
|
||||
query statements will not be recorded on spans.
|
||||
|
||||
"""
|
||||
def setup(event_prefix, config \\ []) do
|
||||
@spec setup(:telemetry.event_name(), [setup_option()]) :: :ok | {:error, :already_exists}
|
||||
def setup(event_prefix, options \\ []) when is_list(options) do
|
||||
event = event_prefix ++ [:query]
|
||||
:telemetry.attach({__MODULE__, event}, event, &__MODULE__.handle_event/4, config)
|
||||
:telemetry.attach({__MODULE__, event}, event, &__MODULE__.handle_event/4, options)
|
||||
end
|
||||
|
||||
@doc false
|
||||
|
|
|
@ -53,7 +53,7 @@ defmodule OpentelemetryOban do
|
|||
|
||||
def insert(name \\ Oban, %Changeset{} = changeset) do
|
||||
attributes = attributes_before_insert(changeset)
|
||||
worker = Changeset.get_field(changeset, :worker, "unknown")
|
||||
worker = Changeset.get_field(changeset, :worker)
|
||||
|
||||
OpenTelemetry.Tracer.with_span "#{worker} send", attributes: attributes, kind: :producer do
|
||||
changeset = add_tracing_information_to_meta(changeset)
|
||||
|
@ -75,7 +75,7 @@ defmodule OpentelemetryOban do
|
|||
|
||||
def insert!(name \\ Oban, %Changeset{} = changeset) do
|
||||
attributes = attributes_before_insert(changeset)
|
||||
worker = Changeset.get_field(changeset, :worker, "unknown")
|
||||
worker = Changeset.get_field(changeset, :worker)
|
||||
|
||||
OpenTelemetry.Tracer.with_span "#{worker} send", attributes: attributes, kind: :producer do
|
||||
changeset = add_tracing_information_to_meta(changeset)
|
||||
|
@ -126,8 +126,8 @@ defmodule OpentelemetryOban do
|
|||
end
|
||||
|
||||
defp attributes_before_insert(changeset) do
|
||||
queue = Changeset.get_field(changeset, :queue, "unknown")
|
||||
worker = Changeset.get_field(changeset, :worker, "unknown")
|
||||
queue = Changeset.get_field(changeset, :queue)
|
||||
worker = Changeset.get_field(changeset, :worker)
|
||||
|
||||
%{
|
||||
Trace.messaging_system() => :oban,
|
||||
|
|
|
@ -45,8 +45,8 @@ defmodule OpentelemetryOban.MixProject do
|
|||
defp deps do
|
||||
[
|
||||
{:oban, "~> 2.0"},
|
||||
{:opentelemetry_api, "~> 1.0"},
|
||||
{:opentelemetry_telemetry, "~> 1.1.0"},
|
||||
{:opentelemetry_api, "~> 1.2"},
|
||||
{:opentelemetry_telemetry, "~> 1.1"},
|
||||
{:opentelemetry_semantic_conventions, "~> 0.2"},
|
||||
{:opentelemetry, "~> 1.0", only: [:test]},
|
||||
{:opentelemetry_exporter, "~> 1.0", only: [:test]},
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"makeup_elixir": {:hex, :makeup_elixir, "0.16.1", "cc9e3ca312f1cfeccc572b37a09980287e243648108384b97ff2b76e505c3555", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "e127a341ad1b209bd80f7bd1620a15693a9908ed780c3b763bccf7d200c767c6"},
|
||||
"makeup_erlang": {:hex, :makeup_erlang, "0.1.4", "29563475afa9b8a2add1b7a9c8fb68d06ca7737648f28398e04461f008b69521", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "f4ed47ecda66de70dd817698a703f8816daa91272e7e45812469498614ae8b29"},
|
||||
"nimble_parsec": {:hex, :nimble_parsec, "1.4.0", "51f9b613ea62cfa97b25ccc2c1b4216e81df970acd8e16e8d1bdc58fef21370d", [:mix], [], "hexpm", "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"},
|
||||
"oban": {:hex, :oban, "2.17.3", "ddfd5710aadcd550d2e174c8d73ce5f1865601418cf54a91775f20443fb832b7", [:mix], [{:ecto_sql, "~> 3.6", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:ecto_sqlite3, "~> 0.9", [hex: :ecto_sqlite3, repo: "hexpm", optional: true]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}, {:postgrex, "~> 0.16", [hex: :postgrex, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "452eada8bfe0d0fefd0740ab5fa8cf3ef6c375df0b4a3c3805d179022a04738a"},
|
||||
"oban": {:hex, :oban, "2.17.4", "3ebe79dc0cad16f23e5feea418f9bc5b07d453b8fb7caf376d812be96157a5c5", [:mix], [{:ecto_sql, "~> 3.6", [hex: :ecto_sql, repo: "hexpm", optional: false]}, {:ecto_sqlite3, "~> 0.9", [hex: :ecto_sqlite3, repo: "hexpm", optional: true]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}, {:postgrex, "~> 0.16", [hex: :postgrex, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "71a804abea3bb7e104782a5b5337cbab76c1a56b9689a6d5159a3873c93898b6"},
|
||||
"opentelemetry": {:hex, :opentelemetry, "1.3.1", "f0a342a74379e3540a634e7047967733da4bc8b873ec9026e224b2bd7369b1fc", [:rebar3], [{:opentelemetry_api, "~> 1.2.2", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:opentelemetry_semantic_conventions, "~> 0.2", [hex: :opentelemetry_semantic_conventions, repo: "hexpm", optional: false]}], "hexpm", "de476b2ac4faad3e3fe3d6e18b35dec9cb338c3b9910c2ce9317836dacad3483"},
|
||||
"opentelemetry_api": {:hex, :opentelemetry_api, "1.2.2", "693f47b0d8c76da2095fe858204cfd6350c27fe85d00e4b763deecc9588cf27a", [:mix, :rebar3], [{:opentelemetry_semantic_conventions, "~> 0.2", [hex: :opentelemetry_semantic_conventions, repo: "hexpm", optional: false]}], "hexpm", "dc77b9a00f137a858e60a852f14007bb66eda1ffbeb6c05d5fe6c9e678b05e9d"},
|
||||
"opentelemetry_exporter": {:hex, :opentelemetry_exporter, "1.6.0", "f4fbf69aa9f1541b253813221b82b48a9863bc1570d8ecc517bc510c0d1d3d8c", [:rebar3], [{:grpcbox, ">= 0.0.0", [hex: :grpcbox, repo: "hexpm", optional: false]}, {:opentelemetry, "~> 1.3", [hex: :opentelemetry, repo: "hexpm", optional: false]}, {:opentelemetry_api, "~> 1.2", [hex: :opentelemetry_api, repo: "hexpm", optional: false]}, {:tls_certificate_check, "~> 1.18", [hex: :tls_certificate_check, repo: "hexpm", optional: false]}], "hexpm", "1802d1dca297e46f21e5832ecf843c451121e875f73f04db87355a6cb2ba1710"},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
defmodule OpentelemetryTesla.MixProject do
|
||||
use Mix.Project
|
||||
|
||||
@version "2.3.0"
|
||||
@version "2.4.0"
|
||||
|
||||
def project do
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue