Skip to content

Commit b23be53

Browse files
committed
lib: ctraces: update to v0.7.0
Signed-off-by: Eduardo Silva <eduardo@chronosphere.io>
1 parent cb15cd3 commit b23be53

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

lib/ctraces/.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [windows-latest, windows-2019]
17+
os: [windows-latest]
1818
permissions:
1919
contents: read
2020
steps:
2121
- uses: actions/checkout@v6
2222
with:
2323
submodules: true
2424

25-
- name: Build on ${{ matrix.os }} with vs-2019
25+
- name: Build on ${{ matrix.os }}
2626
run: |
2727
.\scripts\win_build.bat
2828
@@ -79,9 +79,9 @@ jobs:
7979
working-directory: ctraces
8080

8181
build-debian:
82-
name: Debian Buster build to confirm no issues once used downstream
82+
name: Debian Bullseye build to confirm no issues once used downstream
8383
runs-on: ubuntu-latest
84-
container: debian:buster
84+
container: debian:bullseye
8585
steps:
8686
- name: Set up base image dependencies
8787
run: |

lib/ctraces/src/ctr_decode_opentelemetry.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,11 @@ static int convert_any_value(struct opentelemetry_decode_value *ctr_val,
308308
result = convert_string_value(ctr_val, value_type, key, val->string_value);
309309
break;
310310

311+
case OPENTELEMETRY__PROTO__COMMON__V1__ANY_VALUE__VALUE_STRING_VALUE_STRINDEX:
312+
/* Profiling-only string dictionary reference: ignore in traces. */
313+
result = 0;
314+
break;
315+
311316
case OPENTELEMETRY__PROTO__COMMON__V1__ANY_VALUE__VALUE_BOOL_VALUE:
312317
result = convert_bool_value(ctr_val, value_type, key, val->bool_value);
313318
break;

0 commit comments

Comments
 (0)