Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Telemetry plugin with exports for OTLP, Jaeger and Datadog #282

Merged
merged 7 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,11 @@ jobs:
name: k6
env:
K6_VERSION: 0.48.0
runs-on: benchmark-runner
runs-on: ubuntu-22.04
steps:
- name: adjust os
run: ulimit -n 30000

- name: checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

Expand Down Expand Up @@ -77,7 +80,7 @@ jobs:
- uses: JarvusInnovations/background-action@v1
name: run gateway in background
with:
run: cargo run --bin conductor -- ./benchmark/gw.yaml
run: cargo run --release --bin conductor -- ./benchmark/gw.yaml
wait-on: http-get://127.0.0.1:9000/_health
tail: true
wait-for: 10m
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
name: tests
name: build & test
runs-on: ubuntu-22.04
steps:
- name: checkout
Expand All @@ -30,7 +30,9 @@ jobs:
run: cargo install -q worker-build && worker-build

- name: test
run: cargo test
run: cargo test -- --nocapture
env:
RUST_BACKTRACE: full

- name: install node
uses: actions/setup-node@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: build docker images
timeout-minutes: 15
timeout-minutes: 20
id: docker-bake
uses: docker/bake-action@v4
env:
Expand Down Expand Up @@ -176,4 +176,4 @@ jobs:
file: target/${{ matrix.platform.target }}/release/conductor
asset_name: conductor-${{ matrix.platform.target }}
tag: ${{ github.ref }}
overwrite: true
overwrite: true
Loading
Loading