Skip to content

Commit

Permalink
fix(ci): tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmalkmus committed Dec 12, 2023
1 parent 9d7d26d commit 647c384
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ jobs:
axiom dataset info $AXIOM_DATASET -f=json | jq -e 'any( .numEvents ; . == 3 )'
- example: otelinstrument
verify: |
axiom dataset info _traces -f=json | jq -e 'any( .numEvents ; . >= 1 )'
axiom dataset info $AXIOM_DATASET -f=json | jq -e 'any( .numEvents ; . >= 1 )'
- example: oteltraces
verify: |
axiom dataset info _traces -f=json | jq -e 'any( .numEvents ; . >= 1 )'
axiom dataset info $AXIOM_DATASET -f=json | jq -e 'any( .numEvents ; . == 2 )'
- example: query
setup: |
echo '[{"mood":"hyped","msg":"This is awesome!"}]' >> logs.json
Expand Down
1 change: 0 additions & 1 deletion axiom/client_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ func (s *IntegrationTestSuite) SetupSuite() {
s.suiteCtx, s.suiteCancel = context.WithTimeout(context.Background(), time.Minute)

if len(telemetryTracesURL+telemetryTracesToken+telemetryTracesDataset) > 0 {
fmt.Println(telemetryTracesURL, telemetryTracesToken, telemetryTracesDataset)
var err error
s.flushTraces, err = otel.InitTracing(
s.suiteCtx,
Expand Down

0 comments on commit 647c384

Please sign in to comment.