<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Troubleshooting missing traces in GitHub Actions with OpenTelemetry in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/Troubleshooting-missing-traces-in-GitHub-Actions-with/m-p/278159#M38123</link>
    <description>&lt;P&gt;Hi Community,&lt;/P&gt;
&lt;P&gt;We're trying to monitor some of our GitHub Actions but are encountering difficulties. We've followed the instructions in the video and on the GitHub page, deploying the following:&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;PRE&gt;name: Deploy OpenTelemetry
on:
  push:
    branches: main
    paths:
      - .github/workflows/**
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: plengauer/Thoth/actions/instrument/job@v5.16.4
        with:
          secrets_to_redact: ${{ toJSON(secrets) }}
        env:
          OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
          OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Deploy with OpenTelemetry Instrumentation
        uses: plengauer/Thoth/actions/instrument/deploy@v5.16.4
        with:
          github_token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
        env:
          OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
          OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;We believe the job instrumentation was added automatically. We then created a job like this:&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;PRE&gt;name: Simple Action with Custom Token
on:
  push:
    branches: ["main"]
jobs:
  hello:
    runs-on: ubuntu-latest
    steps:
      - uses: plengauer/Thoth/actions/instrument/job@v5.16.4
        with:
          secrets_to_redact: ${{ toJSON(secrets) }}
        env:
          OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
          OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}
      - name: Say Hello
        run: echo "Hello Observability"
      - name: Curl https://www.post.ch
        run: curl https://www.post.ch&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;However, we're not seeing any traces reaching our system. We've verified that the connection to our OTLP endpoint is working.&lt;/P&gt;
&lt;P&gt;Could you please help us identify what we might be doing wrong or what we're missing?&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And we intend to send the traces via one of our ActiveGates.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for your assistance,&lt;BR /&gt;Patrick&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Dec 2025 09:54:49 GMT</pubDate>
    <dc:creator>patmis</dc:creator>
    <dc:date>2025-12-02T09:54:49Z</dc:date>
    <item>
      <title>Troubleshooting missing traces in GitHub Actions with OpenTelemetry</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/Troubleshooting-missing-traces-in-GitHub-Actions-with/m-p/278159#M38123</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;
&lt;P&gt;We're trying to monitor some of our GitHub Actions but are encountering difficulties. We've followed the instructions in the video and on the GitHub page, deploying the following:&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;PRE&gt;name: Deploy OpenTelemetry
on:
  push:
    branches: main
    paths:
      - .github/workflows/**
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: plengauer/Thoth/actions/instrument/job@v5.16.4
        with:
          secrets_to_redact: ${{ toJSON(secrets) }}
        env:
          OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
          OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Deploy with OpenTelemetry Instrumentation
        uses: plengauer/Thoth/actions/instrument/deploy@v5.16.4
        with:
          github_token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
        env:
          OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
          OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;We believe the job instrumentation was added automatically. We then created a job like this:&lt;/P&gt;
&lt;DIV class=""&gt;
&lt;PRE&gt;name: Simple Action with Custom Token
on:
  push:
    branches: ["main"]
jobs:
  hello:
    runs-on: ubuntu-latest
    steps:
      - uses: plengauer/Thoth/actions/instrument/job@v5.16.4
        with:
          secrets_to_redact: ${{ toJSON(secrets) }}
        env:
          OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
          OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}
      - name: Say Hello
        run: echo "Hello Observability"
      - name: Curl https://www.post.ch
        run: curl https://www.post.ch&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;However, we're not seeing any traces reaching our system. We've verified that the connection to our OTLP endpoint is working.&lt;/P&gt;
&lt;P&gt;Could you please help us identify what we might be doing wrong or what we're missing?&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And we intend to send the traces via one of our ActiveGates.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for your assistance,&lt;BR /&gt;Patrick&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 09:54:49 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/Troubleshooting-missing-traces-in-GitHub-Actions-with/m-p/278159#M38123</guid>
      <dc:creator>patmis</dc:creator>
      <dc:date>2025-12-02T09:54:49Z</dc:date>
    </item>
  </channel>
</rss>

