
DOCA Telemetry Exporter
OfficialFreeStreamline telemetry data from DOCA applications.
Free · Opens the source repo
What DOCA Telemetry Exporter does
The DOCA Telemetry Exporter is a specialized skill designed for developers working with NVIDIA's DOCA framework to emit structured telemetry data from their applications. This skill assumes that DOCA is already installed on the user's host machine and focuses on the hands-on programming aspects of the telemetry exporter. Users can define telemetry schemas, create event types, and manage the lifecycle of data sources, making it easier to publish telemetry data to external consumers.
With this skill, developers can navigate the complexities of the telemetry-exporter API, including configuring exporters, registering event types, and debugging common issues such as DOCA_ERROR_BAD_STATE. The skill provides clear guidance on how to emit structured events, choose the appropriate publish surface, and test the connection to the DOCA Telemetry Service (DTS). It also clarifies the distinction between the telemetry exporter and the telemetry service, ensuring that users link the correct components in their applications.
This skill is particularly beneficial for external developers who are integrating telemetry capabilities into their applications using the DOCA framework. It is not intended for NVIDIA developers contributing to the exporter or for users focused on building the telemetry service itself. The skill supports C and C++ applications, with examples provided to facilitate understanding and implementation.
By using the DOCA Telemetry Exporter skill, developers can efficiently manage telemetry data flow, troubleshoot issues, and enhance the observability of their DOCA-based applications, leading to better performance monitoring and analysis.
When to use it
Use this skill when you are actively working on telemetry-exporter programming with DOCA installed and need to manage telemetry data flow.
When not to use it
This skill is not suitable for users who are setting up the DOCA Telemetry Service or those who have not installed DOCA yet.
What you can build with it
Setting Up Telemetry Exporter
A developer needs to configure the DOCA Telemetry Exporter to publish event data from their application.
Debugging Telemetry Issues
A user encounters a `DOCA_ERROR_BAD_STATE` error and uses the skill to troubleshoot the issue.
Choosing Publish Surface
A developer is unsure whether to use typed events or metrics for telemetry and seeks guidance from the skill.
How to install DOCA Telemetry Exporter
View source1. Install with the skills CLI
npx skills add nvidia/skills/doca-telemetry-exporter --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by nvidiaDOCA Telemetry Exporter
Where to start: This skill assumes DOCA is already installed and
the user is doing hands-on telemetry-exporter work — emitting
structured application telemetry (counters / events) from a
DOCA-using program to an external consumer. Open
TASKS.md if the user wants to do something (configure
/ build / modify + rebuild / run / test / debug); open
CAPABILITIES.md when the question is what can
the exporter express on this install. If the user has not installed
DOCA yet, route to doca-setup first.
If the user is confused about whether they want this library or the
DOCA Telemetry Service (the receiver) — read the
exporter-vs-service rule in
CAPABILITIES.md ## Capabilities and modes
before configuring anything.
This library is NOT a DOCA Core context. There is no
doca_ctx_start()for the exporter and no per-doca_devinfocapability-query family (itsdoca_capsdump is a stub). The lifecycle isschema_init→ configure exporters → register type(s) →schema_start→source_create→source_start→ report → flush → destroy.
Example questions this skill answers well
The CLASSES of telemetry-exporter questions this skill is built to answer, each with one worked example. The agent should treat the class as the load-bearing piece — the worked example is a single instance.
- "Which library do I want — the exporter or the telemetry
service?" — worked example: "I want my DOCA Flow program to
publish a per-second packets-processed counter to a downstream
collector — which DOCA artifact do I link?". Answered by the
exporter-vs-service rule in
CAPABILITIES.md ## Capabilities and modesrole-split table + the path-selection bullet, both of which namedoca-telemetry-exporteras the publisher the application links and route the receiving / consuming side away from this skill. - "How do I emit my first structured event from a DOCA program?" —
worked example: "emit a
packets_processedevent record from my DOCA Flow application". Answered by the schema → source lifecycle inCAPABILITIES.md ## Capabilities and modesobject table + the workflow inTASKS.md ## configure+TASKS.md ## runstep 3 (file-write smoke before bulk), starting from thetelemetry_export/sample. - "Which publish surface do I want — typed events, metrics, OTLP
logs, or NetFlow?" — worked example: "I want labeled
per-interface packet counters and a bandwidth gauge". Answered
by the publish-surface table in
CAPABILITIES.md ## Capabilities and modes(that intent maps to the Metrics API —_metrics_add_counter/_add_gauge— and thetelemetry_export_metrics/sample), plus the sample map inTASKS.md ## modify. - "My report call returns
DOCA_ERROR_BAD_STATE— what did I get wrong?" — worked example: "doca_telemetry_exporter_source_reportreturnsBAD_STATEon the first call". Answered by theBAD_STATErow inCAPABILITIES.md ## Error taxonomy(the source was never started, or an OTLP context is missing on write/flush) + the lifecycle order inTASKS.md ## configure. Note there is NODOCA_ERROR_AGAINand NODOCA_ERROR_NOT_FOUNDon this API. - "My program reports, but the DTS / collector sees nothing —
where do I start?" — worked example: "my report returns
success, but the DTS log is empty". Answered by the
receiver-up-first staging in
CAPABILITIES.md ## Safety policy- the file-write smoke and
check_ipc_statussteps inTASKS.md ## test(prove the publish half with file write, then confirm IPC isCONNECTEDand the receiver is up).
- the file-write smoke and
- "How do I confirm the exporter is installed and my transport
is live?" — worked example: "is the exporter on my DOCA 3.x
install, and is IPC to DTS actually connected?". Answered by
the version-compatibility overlay in
CAPABILITIES.md ## Version compatibility(cross-linking the detection chain indoca-version) plus the honest introspection rule inCAPABILITIES.md ## Capabilities and modes(doca_telemetry_exporter_check_ipc_status, not a device cap-query).
Audience
This skill serves external developers building applications that
emit structured telemetry through DOCA Telemetry Exporter — i.e.,
users whose application code calls doca_telemetry_exporter_*
(directly in C/C++, or through FFI/bindings from another language)
to publish counters, gauges, and events from their DOCA-using
program to an external telemetry consumer. It is not for NVIDIA
developers contributing to DOCA Telemetry Exporter itself, and it
is not for users building the receiving / aggregating telemetry
service (the DOCA Telemetry Service is a separate DOCA service with
its own public guide, reached via
doca-public-knowledge-map).
Language scope. DOCA Telemetry Exporter ships as a C library
with pkg-config module name doca-telemetry-exporter. The
shipped samples are written in C. C and C++ consumers are the
canonical case; the worked examples in TASKS.md assume that path.
Other-language consumers (Rust, Go, Python, …) consume the same
*.so through FFI or language-specific bindings; the skill's
contribution in that case is to keep the exporter-vs-service
distinction, the schema → source lifecycle, the transport-not-caps
discovery rule, the same-user-as-the-app permission rule, the
buffered flush-based delivery model, and the error-taxonomy
guidance language-neutral, and to route the agent to the public C
ABI as the authoritative surface that any wrapper will eventually
call.
When to load this skill
Load this skill when the user is doing hands-on DOCA Telemetry Exporter work, in any language. Concretely:
- Defining a
doca_telemetry_exporter_schemafor the events the application will emit (field names + field types), and registering it with the exporter BEFORE any event is published. - Creating one or more
doca_telemetry_exporter_sourceinstances to represent distinct logical sources of telemetry inside the application (e.g. one source per worker thread / per pipeline stage). - Picking the right publish surface — typed structured events
(
_source_report), opaque events (_source_opaque_report), the Metrics API (counter / gauge / histogram), OTLP logs, or the NetFlow sibling API — for what the application reports. - Confirming the exporter's install + transport reality (there is
NO
doca_devinfocap-query family and NOdoca_capsdata for this library):doca_telemetry_exporter_check_ipc_statusfor IPC liveness,_source_get_opaque_report_max_data_sizefor the opaque payload bound, and the_schema_get_*config getters. - Debugging a
DOCA_ERROR_*returned from an exporter call (BAD_STATElifecycle-order vs.INVALID_VALUEtype/label mismatch vs.NO_MEMORYvs.INITIALIZATIONvs.UNKNOWNbackend) and the per-call status returned to the application. - Choosing between Telemetry Exporter and an adjacent option
(
doca_logwhen stdout / structured-log shipping is enough; a Prometheus client library when the user needs a non-DOCA-aware sink;doca-comchwhen the user needs a real-time event subscription back INTO the app — the exporter is publish-only / one-way). - Designing or extending non-C bindings (Rust, Go, Python, …) that wrap the exporter C ABI — for the exporter-vs-service distinction, the schema → source lifecycle, the permission policy, the buffered flush-based delivery model, and the transport-introspection + error rules the wrapper must honor.
Do not load this skill for general DOCA orientation, install
of DOCA itself, the receiving telemetry service (the DOCA
Telemetry Service has its own public guide reachable through
doca-public-knowledge-map),
or non-exporter library questions. For those, use
doca-public-knowledge-map.
What this skill provides
This is a thin loader. The body keeps only the orientation needed to pick the right next file. The substantive exporter-specific material lives in two companion files:
CAPABILITIES.md— what the exporter can express on this install: the exporter-vs-service role-split rule, the object family (doca_telemetry_exporter_schema→_type/_field→_sourcewith the schema → source lifecycle), the four publish surfaces (typed events / opaque events / Metrics API / OTLP logs) plus the NetFlow sibling API, the transport-not-caps introspection rule (check_ipc_status,_get_opaque_report_max_data_size,_schema_get_*— NOdoca_capsdata, NO device cap-query), the exporter error taxonomy (mapped onto the cross-libraryDOCA_ERROR_*set, with the note that there is NOAGAINand NONOT_FOUNDon this surface), the observability surface (per-call status + IPC status + file-write inspection + the receiver side as the end-to-end signal), the safety policy that gates the same-user-as-the-app permission and the receiver-up-first staging, and the path-selection rule againstdoca_loganddoca-comch.TASKS.md— step-by-step workflows for the six in-scope exporter verbs:configure,build,modify(followed by a rebuild),run,test,debug. Plus aDeferred task verbsblock that points out-of-scope questions at the right next skill.
The skill assumes a host where DOCA is already installed at the
standard location, the application runs as a user that can write
to the telemetry transport the exporter is configured for, and a
receiving telemetry consumer is reachable and started before the
exporter. It does not cover installing DOCA — that path goes
through doca-setup — and it does
not cover configuring / operating the receiving telemetry service,
which is a separate DOCA service with its own public guide.
What this skill deliberately does not ship
This skill is agent guidance, not a samples or templates bundle. To keep the boundary clean, it deliberately does not contain — and pull requests should not add:
- Pre-written DOCA Telemetry Exporter application source code,
in any language. The verified exporter source code is the
shipped C samples at
/opt/mellanox/doca/samples/doca_telemetry_exporter/. The agent's job is to route the user to those files and prescribe a minimum-diff modification on them via the universal modify-a-sample workflow indoca-programming-guide, layered with the exporter-specific overrides inTASKS.md ## modify. - A telemetry consumer / collector / receiving service. The
DOCA Telemetry Service is a separate DOCA service with its own
public guide; routing to it goes through
doca-public-knowledge-map. This skill is about the publisher side only. - Standalone build manifests (
meson.build,CMakeLists.txt,Cargo.toml, …) parked inside the skill. The agent constructs the build manifest in the user's project directory against the user's installed DOCA, wherepkg-config --modversion doca-telemetry-exporteris the source of truth. - A
samples/,bindings/, orreference/subtree of any kind. A mock or incomplete artifact in this skill's tree, even one labeled "reference", is misleading: users will read it as buildable.
Loading order
- Read this
SKILL.mdfirst to confirm the user's question is in scope. - For the exporter-vs-service rule, the object family, the
schema → source lifecycle, the four publish surfaces + NetFlow,
the transport-not-caps introspection rule, the error taxonomy
(note: no
AGAIN, noNOT_FOUND), observability, the safety policy, and the path-selection rule againstdoca_log/ comch, see CAPABILITIES.md. - For step-by-step workflows — configure, build, modify, rebuild, run, test, debug — see TASKS.md.
Both companion files cross-link to each other,
doca-version for the canonical
version-handling rules, and
doca-public-knowledge-map
whenever the right answer is "look it up in the public docs or
the installed package layout" rather than "exporter-specific
guidance".
Related skills
doca-public-knowledge-map— the routing table for every public DOCA documentation source and the on-disk layout of an installed DOCA package. The exporter's public guide URL ishttps://docs.nvidia.com/doca/sdk/DOCA-Telemetry-Exporter/index.html; the on-disk samples live under/opt/mellanox/doca/samples/doca_telemetry_exporter/. The DOCA Telemetry Service (the receiver, out of scope here) is a separate guide reachable through that same routing table.doca-setup— env preparation, install verification, transport-side reachability checks, and the I have no install yet path with the public NGC DOCA container. This skill assumes its preconditions are satisfied (in particular, the application user can write to the telemetry transport).doca-version— canonical DOCA version-handling rules. This skill's## Version compatibilitycross-links the four-way match rule + detection chain and adds the exporter-specific overlay rules.doca-structured-tools-contract— the bundle's structured-tools precedence rule (detect / prefer / fall back / report). The Command appendix in TASKS.md honors this contract.doca-programming-guide— general DOCA programming patterns shared by every library: the canonicalpkg-config+ meson build pattern, the universal modify-a-shipped-sample first-app workflow, the universal lifecycle, the cross-libraryDOCA_ERROR_*taxonomy, and the program-side debug order. This skill layers exporter specifics on top.doca-comch— the right primitive when the user needs a real-time event subscription back INTO the application (host ↔ DPU control-plane messaging). The exporter is publish-only / one-way; this skill's path-selection rule routes there when subscription is the actual requirement.doca-debug— the cross-cutting debug ladder (install / version / build / link / runtime / program / driver). Exporter-specific debug (receiver not up, lifecycle-orderBAD_STATE, type/labelINVALID_VALUE, opaque-path-not-enabled) overlays on top of that ladder.
Frequently asked questions about DOCA Telemetry Exporter
Similar skills
WinMD API Search
Easily find and explore Windows desktop APIs.
WebMCPify
Transform any web app into an agent-ready platform.
Phoenix Tracing
Instrument LLM applications with OpenInference tracing.
Foundry Hosted Agent CopilotKit
Guidance for developing agentic web apps on Azure.
Power Automate Foundation
Connect AI agents to Power Automate seamlessly.
Power Automate Flow Builder
Efficiently build and deploy Power Automate flows programmatically.
