Skip to content

How can OpenTelemetry be integrated into a C project? I saw that there is no C among the supported languages, only C++. Is there any case of integrating it into a C project? #59

How can OpenTelemetry be integrated into a C project? I saw that there is no C among the supported languages, only C++. Is there any case of integrating it into a C project?

How can OpenTelemetry be integrated into a C project? I saw that there is no C among the supported languages, only C++. Is there any case of integrating it into a C project? #59

name: OpenTelemetry-cpp project
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["needs-triage"]
})