# TracedOptions interface · @imqueue/datadog

Source: https://imqueue.org/api/datadog/latest/datadog.tracedoptions/
Published: 2026-08-01
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/datadog 3.2.0 — generated reference, not hand-written

Options for the [traced()](https://imqueue.org/api/datadog/latest/datadog.traced/) method decorator. Every field is optional at the call site — `traced()` takes a `Partial` of this and fills the rest in.

**Signature:**

```typescript
export interface TracedOptions 
```

## Properties


| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [kind](https://imqueue.org/api/datadog/latest/datadog.tracedoptions.kind/) |  | [TraceKind](https://imqueue.org/api/datadog/latest/datadog.tracekind/) | Whether the decorated method serves work or calls out for it. Reported as the `span.kind` tag. Defaults to [TraceKind.SERVER](https://imqueue.org/api/datadog/latest/datadog.tracekind/). |
| [tags?](https://imqueue.org/api/datadog/latest/datadog.tracedoptions.tags/) |  | [TraceTags](https://imqueue.org/api/datadog/latest/datadog.tracetags/) | _(Optional)_ Extra tags for every span the decorator creates. Applied after the automatic ones, so a key used here overrides the automatic value — including `resource.name`, to name the operation yourself. |

