feat(excon)! Add a connect span to excon and add more span attributes to the tracer middleware #2153
Workflow file for this run
This file contains 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: CI Instrumentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
instrumentation: | |
strategy: | |
fail-fast: false | |
matrix: | |
gem: | |
- action_pack | |
- action_view | |
- active_job | |
- active_model_serializers | |
- active_record | |
- active_support | |
- all | |
- aws_sdk | |
- base | |
- concurrent_ruby | |
- delayed_job | |
- ethon | |
- excon | |
- faraday | |
- grape | |
- graphql | |
- gruf | |
- http | |
- http_client | |
- httpx | |
- koala | |
- lmdb | |
- net_http | |
- rack | |
- rails | |
- restclient | |
- rspec | |
- sinatra | |
os: | |
- ubuntu-latest | |
name: ${{ matrix.gem }} / ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Test Ruby 3.2" | |
uses: ./.github/actions/test_gem | |
with: | |
gem: "opentelemetry-instrumentation-${{ matrix.gem }}" | |
ruby: "3.2" | |
- name: "Test Ruby 3.1" | |
uses: ./.github/actions/test_gem | |
with: | |
gem: "opentelemetry-instrumentation-${{ matrix.gem }}" | |
ruby: "3.1" | |
- name: "Test Ruby 3.0" | |
if: "${{ matrix.os == 'ubuntu-latest' }}" | |
uses: ./.github/actions/test_gem | |
with: | |
gem: "opentelemetry-instrumentation-${{ matrix.gem }}" | |
ruby: "3.0" | |
yard: true | |
rubocop: true | |
build: true | |
- name: "JRuby Filter" | |
id: jruby_skip | |
shell: bash | |
run: | | |
echo "skip=false" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "action_pack" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "action_view" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "active_model_serializers" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "active_record" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "active_support" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "aws_sdk" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "delayed_job" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "graphql" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "http" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "http_client" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "koala" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "lmdb" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "rack" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "rails" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
[[ "${{ matrix.gem }}" == "gruf" ]] && echo "skip=true" >> $GITHUB_OUTPUT | |
# This is essentially a bash script getting evaluated, so we need to return true or the whole job fails. | |
true | |
- name: "Test JRuby" | |
if: "${{ matrix.os == 'ubuntu-latest' && steps.jruby_skip.outputs.skip == 'false' }}" | |
uses: ./.github/actions/test_gem | |
with: | |
gem: "opentelemetry-instrumentation-${{ matrix.gem }}" | |
ruby: "jruby-9.4.2.0" |