Skip to content

Commit 1fef3cd

Browse files
committed
Add support for OpenTelemetry tracing via OTLP
This allows using the GRPC endpoint of an OTLP exporter to export span-based telemetry data directly from conmon-rs. Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
1 parent b67dfed commit 1fef3cd

File tree

10 files changed

+757
-30
lines changed

10 files changed

+757
-30
lines changed

.github/install-deps

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
set -euo pipefail
33

44
sudo apt-get update
5-
sudo apt-get install capnproto runc
5+
sudo apt-get install capnproto runc protobuf-compiler

.github/workflows/cross.yml

-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
env:
88
CROSS_VERSION: v0.2.4
99
CARGO_TERM_COLOR: always
10-
ACTION_MSRV_TOOLCHAIN: 1.58.1
1110
jobs:
1211
build:
1312
strategy:
@@ -31,13 +30,6 @@ jobs:
3130
~/.cargo/git
3231
target
3332
key: ${{ runner.os }}-cross-${{matrix.arch}}-${{ hashFiles('**/Cargo.lock') }}
34-
- name: Select Toolchain
35-
uses: actions-rs/toolchain@v1
36-
with:
37-
toolchain: ${{ env['ACTION_MSRV_TOOLCHAIN'] }}
38-
default: true
39-
override: true
40-
components: rustfmt
4133
- name: Install cross-rs
4234
run: |
4335
curl -sSfL --retry 5 --retry-delay 3 \

0 commit comments

Comments
 (0)