DOCA 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_devinfo
capability-query family (its doca_caps dump is a stub). The
lifecycle is schema_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 modes
role-split table + the path-selection bullet, both of which name
doca-telemetry-exporter as 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_processed event record from my
DOCA Flow application". Answered by the schema → source
lifecycle in
CAPABILITIES.md ## Capabilities and modes
object table + the workflow in
TASKS.md ## configure +
TASKS.md ## run step 3 (file-write smoke before
bulk), starting from the telemetry_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 the telemetry_export_metrics/ sample), plus
the sample map in TASKS.md ## modify.
- "My report call returns
DOCA_ERROR_BAD_STATE — what did I
get wrong?" — worked example:
"doca_telemetry_exporter_source_report returns BAD_STATE on
the first call". Answered by the BAD_STATE row in
CAPABILITIES.md ## Error taxonomy
(the source was never started, or an OTLP context is missing on
write/flush) + the lifecycle order in
TASKS.md ## configure. Note there is NO
DOCA_ERROR_AGAIN and NO DOCA_ERROR_NOT_FOUND on 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_status steps in
TASKS.md ## test (prove the publish half with
file write, then confirm IPC is CONNECTED and the receiver
is up).
- "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 in
doca-version) plus the honest
introspection rule in
CAPABILITIES.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_schema for 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_source instances
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_devinfo cap-query family and NO doca_caps data for
this library): doca_telemetry_exporter_check_ipc_status for
IPC liveness, _source_get_opaque_report_max_data_size for the
opaque payload bound, and the _schema_get_* config getters.
- Debugging a
DOCA_ERROR_* returned from an exporter call
(BAD_STATE lifecycle-order vs. INVALID_VALUE type/label
mismatch vs. NO_MEMORY vs. INITIALIZATION vs. UNKNOWN
backend) and the per-call status returned to the application.
- Choosing between Telemetry Exporter and an adjacent option
(
doca_log when stdout / structured-log shipping is enough; a
Prometheus client library when the user needs a non-DOCA-aware
sink; doca-comch when 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 →
_source with 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_* — NO
doca_caps data, NO device cap-query), the exporter error
taxonomy (mapped onto the cross-library DOCA_ERROR_* set, with
the note that there is NO AGAIN and NO NOT_FOUND on 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 against doca_log and
doca-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 a Deferred task verbs block 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 in
doca-programming-guide,
layered with the exporter-specific overrides in
TASKS.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, where pkg-config --modversion doca-telemetry-exporter is the source of truth.
- A
samples/, bindings/, or reference/ 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.md first 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, no NOT_FOUND), observability, the safety
policy, and the path-selection rule against doca_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 is
https://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 compatibility
cross-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
canonical pkg-config + meson build pattern, the universal
modify-a-shipped-sample first-app workflow, the universal
lifecycle, the cross-library DOCA_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-order BAD_STATE, type/label INVALID_VALUE,
opaque-path-not-enabled) overlays on top of that ladder.
1---2name: doca-telemetry-exporter3description: Use this skill when the user is doing hands-on DOCA Telemetry Exporter programming on a host where DOCA is installed — defining a doca_telemetry_exporter_schema and event types, creating sources, picking a publish surface (typed events / opaque events / the metrics counter-gauge-histogram API / OTLP logs / NetFlow), walking the schema-then-source lifecycle, or debugging DOCA_ERROR_* failures from the exporter API. Trigger even when the user does not explicitly mention "DOCA Telemetry Exporter" or "doca_telemetry_exporter_*" — typical implicit phrasings include "publishing counters from my DOCA app", "BAD_STATE when I report an event", "consumer/DTS sees nothing but my report succeeded", "how do I export NetFlow/IPFIX records", or "should I link the exporter or the telemetry service". Refuse and route elsewhere for the receiving DOCA Telemetry Service (DTS), plain stdout logging via doca_log, or real-time event subscription back into the app via doca-comch — those belong to other skills.4license: Apache-2.05---67# DOCA Telemetry Exporter89**Where to start:** This skill assumes DOCA is already installed and10the user is doing **hands-on telemetry-exporter work** — emitting11structured application telemetry (counters / events) from a12DOCA-using program to an external consumer. Open13[`TASKS.md`](TASKS.md) if the user wants to *do* something (configure14/ build / modify + rebuild / run / test / debug); open15[`CAPABILITIES.md`](CAPABILITIES.md) when the question is *what can16the exporter express* on this install. If the user has not installed17DOCA yet, route to [`doca-setup`](../../doca-setup/SKILL.md) first.18If the user is confused about whether they want this library or the19DOCA Telemetry Service (the receiver) — read the20exporter-vs-service rule in21[`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)22before configuring anything.2324> **This library is NOT a DOCA Core context.** There is no25> `doca_ctx_start()` for the exporter and no per-`doca_devinfo`26> capability-query family (its `doca_caps` dump is a stub). The27> lifecycle is `schema_init` → configure exporters → register28> type(s) → `schema_start` → `source_create` → `source_start` →29> report → flush → destroy.3031## Example questions this skill answers well3233The CLASSES of telemetry-exporter questions this skill is built to34answer, each with one worked example. The agent should treat the35*class* as the load-bearing piece — the worked example is a single36instance.3738- **"Which library do I want — the exporter or the telemetry39 service?"** — worked example: *"I want my DOCA Flow program to40 publish a per-second packets-processed counter to a downstream41 collector — which DOCA artifact do I link?"*. Answered by the42 exporter-vs-service rule in43 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)44 role-split table + the path-selection bullet, both of which name45 `doca-telemetry-exporter` as the publisher the application links46 and route the receiving / consuming side away from this skill.47- **"How do I emit my first structured event from a DOCA program?"** —48 worked example: *"emit a `packets_processed` event record from my49 DOCA Flow application"*. Answered by the schema → source50 lifecycle in51 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)52 object table + the workflow in53 [`TASKS.md ## configure`](TASKS.md#configure) +54 [`TASKS.md ## run`](TASKS.md#run) step 3 (file-write smoke before55 bulk), starting from the `telemetry_export/` sample.56- **"Which publish surface do I want — typed events, metrics, OTLP57 logs, or NetFlow?"** — worked example: *"I want labeled58 per-interface packet counters and a bandwidth gauge"*. Answered59 by the publish-surface table in60 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)61 (that intent maps to the Metrics API — `_metrics_add_counter` /62 `_add_gauge` — and the `telemetry_export_metrics/` sample), plus63 the sample map in [`TASKS.md ## modify`](TASKS.md#modify).64- **"My report call returns `DOCA_ERROR_BAD_STATE` — what did I65 get wrong?"** — worked example:66 *"`doca_telemetry_exporter_source_report` returns `BAD_STATE` on67 the first call"*. Answered by the `BAD_STATE` row in68 [`CAPABILITIES.md ## Error taxonomy`](CAPABILITIES.md#error-taxonomy)69 (the source was never started, or an OTLP context is missing on70 write/flush) + the lifecycle order in71 [`TASKS.md ## configure`](TASKS.md#configure). Note there is NO72 `DOCA_ERROR_AGAIN` and NO `DOCA_ERROR_NOT_FOUND` on this API.73- **"My program reports, but the DTS / collector sees nothing —74 where do I start?"** — worked example: *"my report returns75 success, but the DTS log is empty"*. Answered by the76 receiver-up-first staging in77 [`CAPABILITIES.md ## Safety policy`](CAPABILITIES.md#safety-policy)78 + the file-write smoke and `check_ipc_status` steps in79 [`TASKS.md ## test`](TASKS.md#test) (prove the publish half with80 file write, then confirm IPC is `CONNECTED` and the receiver81 is up).82- **"How do I confirm the exporter is installed and my transport83 is live?"** — worked example: *"is the exporter on my DOCA 3.x84 install, and is IPC to DTS actually connected?"*. Answered by85 the version-compatibility overlay in86 [`CAPABILITIES.md ## Version compatibility`](CAPABILITIES.md#version-compatibility)87 (cross-linking the detection chain in88 [`doca-version`](../../doca-version/SKILL.md)) plus the honest89 introspection rule in90 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)91 (`doca_telemetry_exporter_check_ipc_status`, not a device92 cap-query).9394## Audience9596This skill serves **external developers building applications that97emit structured telemetry through DOCA Telemetry Exporter** — i.e.,98users whose application code calls `doca_telemetry_exporter_*`99(directly in C/C++, or through FFI/bindings from another language)100to publish counters, gauges, and events from their DOCA-using101program to an external telemetry consumer. It is *not* for NVIDIA102developers contributing to DOCA Telemetry Exporter itself, and it103is *not* for users building the receiving / aggregating telemetry104service (the DOCA Telemetry Service is a separate DOCA service with105its own public guide, reached via106[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)).107108**Language scope.** DOCA Telemetry Exporter ships as a C library109with `pkg-config` module name `doca-telemetry-exporter`. The110shipped samples are written in C. C and C++ consumers are the111canonical case; the worked examples in `TASKS.md` assume that path.112Other-language consumers (Rust, Go, Python, …) consume the same113`*.so` through FFI or language-specific bindings; the skill's114contribution in that case is to keep the exporter-vs-service115distinction, the schema → source lifecycle, the transport-not-caps116discovery rule, the same-user-as-the-app permission rule, the117buffered flush-based delivery model, and the error-taxonomy118guidance language-neutral, and to route the agent to the public C119ABI as the authoritative surface that any wrapper will eventually120call.121122## When to load this skill123124Load this skill when the user is doing hands-on DOCA Telemetry125Exporter work, in any language. Concretely:126127- Defining a `doca_telemetry_exporter_schema` for the events the128 application will emit (field names + field types), and129 registering it with the exporter BEFORE any event is published.130- Creating one or more `doca_telemetry_exporter_source` instances131 to represent distinct logical sources of telemetry inside the132 application (e.g. one source per worker thread / per pipeline133 stage).134- Picking the right publish surface — typed structured events135 (`_source_report`), opaque events (`_source_opaque_report`), the136 Metrics API (counter / gauge / histogram), OTLP logs, or the137 NetFlow sibling API — for what the application reports.138- Confirming the exporter's install + transport reality (there is139 NO `doca_devinfo` cap-query family and NO `doca_caps` data for140 this library): `doca_telemetry_exporter_check_ipc_status` for141 IPC liveness, `_source_get_opaque_report_max_data_size` for the142 opaque payload bound, and the `_schema_get_*` config getters.143- Debugging a `DOCA_ERROR_*` returned from an exporter call144 (`BAD_STATE` lifecycle-order vs. `INVALID_VALUE` type/label145 mismatch vs. `NO_MEMORY` vs. `INITIALIZATION` vs. `UNKNOWN`146 backend) and the per-call status returned to the application.147- Choosing between Telemetry Exporter and an adjacent option148 (`doca_log` when stdout / structured-log shipping is enough; a149 Prometheus client library when the user needs a non-DOCA-aware150 sink; [`doca-comch`](../doca-comch/SKILL.md) when the user151 needs a real-time event subscription back INTO the app — the152 exporter is publish-only / one-way).153- Designing or extending non-C bindings (Rust, Go, Python, …)154 that wrap the exporter C ABI — for the exporter-vs-service155 distinction, the schema → source lifecycle, the permission156 policy, the buffered flush-based delivery model, and the157 transport-introspection + error rules the wrapper must honor.158159Do **not** load this skill for general DOCA orientation, install160of DOCA itself, the receiving telemetry service (the DOCA161Telemetry Service has its own public guide reachable through162[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)),163or non-exporter library questions. For those, use164[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md).165166## What this skill provides167168This is a **thin loader**. The body keeps only the orientation169needed to pick the right next file. The substantive170exporter-specific material lives in two companion files:171172- `CAPABILITIES.md` — what the exporter can express on this173 install: the exporter-vs-service role-split rule, the object174 family (`doca_telemetry_exporter_schema` → `_type`/`_field` →175 `_source` with the schema → source lifecycle), the four publish176 surfaces (typed events / opaque events / Metrics API / OTLP177 logs) plus the NetFlow sibling API, the transport-not-caps178 introspection rule (`check_ipc_status`,179 `_get_opaque_report_max_data_size`, `_schema_get_*` — NO180 `doca_caps` data, NO device cap-query), the exporter error181 taxonomy (mapped onto the cross-library `DOCA_ERROR_*` set, with182 the note that there is NO `AGAIN` and NO `NOT_FOUND` on this183 surface), the observability surface (per-call status + IPC184 status + file-write inspection + the receiver side as the185 end-to-end signal), the safety policy that gates the186 same-user-as-the-app permission and the receiver-up-first187 staging, and the path-selection rule against `doca_log` and188 `doca-comch`.189- `TASKS.md` — step-by-step workflows for the six in-scope190 exporter verbs: `configure`, `build`, `modify` (followed by a191 rebuild), `run`, `test`, `debug`. Plus a `Deferred task verbs` block that points192 out-of-scope questions at the right next skill.193194The skill assumes a host where DOCA is already installed at the195standard location, the application runs as a user that can write196to the telemetry transport the exporter is configured for, and a197receiving telemetry consumer is reachable and started before the198exporter. It does not cover installing DOCA — that path goes199through [`doca-setup`](../../doca-setup/SKILL.md) — and it does200not cover configuring / operating the receiving telemetry service,201which is a separate DOCA service with its own public guide.202203## What this skill deliberately does not ship204205This skill is **agent guidance**, not a samples or templates206bundle. To keep the boundary clean, it deliberately does not207contain — and pull requests should not add:208209- **Pre-written DOCA Telemetry Exporter application source code,210 in any language.** The verified exporter source code is the211 shipped C samples at212 `/opt/mellanox/doca/samples/doca_telemetry_exporter/`. The213 agent's job is to route the user to those files and prescribe a214 minimum-diff modification on them via the universal215 modify-a-sample workflow in216 [`doca-programming-guide`](../../doca-programming-guide/SKILL.md),217 layered with the exporter-specific overrides in218 [`TASKS.md ## modify`](TASKS.md#modify).219- **A telemetry consumer / collector / receiving service.** The220 DOCA Telemetry Service is a separate DOCA service with its own221 public guide; routing to it goes through222 [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md).223 This skill is about the publisher side only.224- **Standalone build manifests** (`meson.build`, `CMakeLists.txt`,225 `Cargo.toml`, …) parked inside the skill. The agent constructs226 the build manifest *in the user's project directory* against227 the user's installed DOCA, where `pkg-config --modversion228 doca-telemetry-exporter` is the source of truth.229- **A `samples/`, `bindings/`, or `reference/` subtree** of any230 kind. A mock or incomplete artifact in this skill's tree, even231 one labeled "reference", is misleading: users will read it as232 buildable.233234## Loading order2352361. Read this `SKILL.md` first to confirm the user's question is237 in scope.2382. **For the exporter-vs-service rule, the object family, the239 schema → source lifecycle, the four publish surfaces + NetFlow,240 the transport-not-caps introspection rule, the error taxonomy241 (note: no `AGAIN`, no `NOT_FOUND`), observability, the safety242 policy, and the path-selection rule against `doca_log` / comch,243 see [CAPABILITIES.md](CAPABILITIES.md).**2443. **For step-by-step workflows — configure, build, modify,245 rebuild, run, test, debug — see [TASKS.md](TASKS.md).**246247Both companion files cross-link to each other,248[`doca-version`](../../doca-version/SKILL.md) for the canonical249version-handling rules, and250[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)251whenever the right answer is "look it up in the public docs or252the installed package layout" rather than "exporter-specific253guidance".254255## Related skills256257- [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md) —258 the routing table for every public DOCA documentation source259 and the on-disk layout of an installed DOCA package. The260 exporter's public guide URL is261 `https://docs.nvidia.com/doca/sdk/DOCA-Telemetry-Exporter/index.html`;262 the on-disk samples live under263 `/opt/mellanox/doca/samples/doca_telemetry_exporter/`. The264 DOCA Telemetry Service (the *receiver*, out of scope here) is265 a separate guide reachable through that same routing table.266- [`doca-setup`](../../doca-setup/SKILL.md) — env preparation,267 install verification, transport-side reachability checks, and268 the *I have no install yet* path with the public NGC DOCA269 container. This skill assumes its preconditions are satisfied270 (in particular, the application user can write to the271 telemetry transport).272- [`doca-version`](../../doca-version/SKILL.md) — canonical DOCA273 version-handling rules. This skill's `## Version compatibility`274 cross-links the four-way match rule + detection chain and adds275 the exporter-specific overlay rules.276- [`doca-structured-tools-contract`](../../doca-structured-tools-contract/SKILL.md) —277 the bundle's structured-tools precedence rule (detect / prefer278 / fall back / report). The Command appendix in279 [TASKS.md](TASKS.md) honors this contract.280- [`doca-programming-guide`](../../doca-programming-guide/SKILL.md) —281 general DOCA programming patterns shared by every library: the282 canonical `pkg-config` + meson build pattern, the universal283 modify-a-shipped-sample first-app workflow, the universal284 lifecycle, the cross-library `DOCA_ERROR_*` taxonomy, and the285 program-side debug order. This skill layers exporter specifics286 on top.287- [`doca-comch`](../doca-comch/SKILL.md) — the right primitive288 when the user needs a real-time event subscription back INTO289 the application (host ↔ DPU control-plane messaging). The290 exporter is publish-only / one-way; this skill's291 path-selection rule routes there when subscription is the292 actual requirement.293- [`doca-debug`](../../doca-debug/SKILL.md) — the cross-cutting294 debug ladder (install / version / build / link / runtime /295 program / driver). Exporter-specific debug (receiver not up,296 lifecycle-order `BAD_STATE`, type/label `INVALID_VALUE`,297 opaque-path-not-enabled) overlays on top of that ladder.