feat(opentelemetry): do not trace prometheus requests by default #3674
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Memtest | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NODE_NO_WARNINGS: 1 | |
| K6_VERSION: v0.56.0 | |
| jobs: | |
| memtest: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| test_name: | |
| - auto-type-merging | |
| - federation-example | |
| - federation-mixed | |
| - federation-subscriptions-passthrough | |
| - opentelemetry | |
| - programmatic-batching | |
| - logger | |
| e2e_runner: | |
| - node | |
| # - bun TODO: get memory snaps and heap sampling for bun. is it even necessary? | |
| name: ${{matrix.e2e_runner}} / ${{matrix.test_name}} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4 | |
| - name: Install k6 | |
| run: | | |
| mkdir -p "$HOME/.local/bin" | |
| cd "$HOME/.local/bin" | |
| curl https://github.com/grafana/k6/releases/download/${{ env.K6_VERSION }}/k6-${{ env.K6_VERSION }}-linux-amd64.tar.gz -L | tar xvz --strip-components 1 | |
| echo "$PWD" >> $GITHUB_PATH | |
| - name: Set up env | |
| uses: the-guild-org/shared-config/setup@v1 | |
| with: | |
| # TODO: should we test more node versions? we usually always recommend upgrading to | |
| # latest when people suspect leaks - latest is always the most stable | |
| node-version-file: .node-version | |
| - if: runner.os == 'Linux' | |
| name: Hash Docker Images | |
| id: hash-docker-images | |
| run: | # get all "image: '" occurrences in the e2e tests and hash them | |
| echo "result=$(grep -r -h "image: '" e2e | shasum | base64)" >> "$GITHUB_OUTPUT" | |
| - if: runner.os == 'Linux' | |
| name: Cache Docker Images | |
| uses: ScribeMD/docker-cache@e1be5d7e63cc5f0c6400d8cb86d3d899a7fd71e2 # 0.5.0 + https://github.com/ScribeMD/docker-cache/pull/838 | |
| continue-on-error: true | |
| with: | |
| key: docker-images-${{ runner.os }}-${{ steps.hash-docker-images.outputs.result }} | |
| - name: Test | |
| env: | |
| E2E_GATEWAY_RUNNER: ${{matrix.e2e_runner}} | |
| run: yarn test:mem ${{matrix.test_name}} | |
| - name: Upload heap snapshots | |
| if: failure() | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: ${{matrix.test_name}}-heap-snapshots | |
| path: | | |
| e2e/${{matrix.test_name}}/*.heapsnapshot | |
| packages/logger/tests/*.heapsnapshot |