mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 16:32:15 +08:00
33 lines
875 B
Markdown
33 lines
875 B
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "TraceSpan"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## TraceSpan type
|
|
|
|
### TraceSpan type
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export declare type TraceSpan = TraceSpanData & {
|
|
depth: number;
|
|
hasChildren: boolean;
|
|
process: TraceProcess;
|
|
relativeStartTime: number;
|
|
tags: NonNullable<TraceSpanData['tags']>;
|
|
references: NonNullable<TraceSpanData['references']>;
|
|
warnings: NonNullable<TraceSpanData['warnings']>;
|
|
subsidiarilyReferencedBy: TraceSpanReference[];
|
|
};
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { TraceSpan } from '@grafana/data';
|
|
```
|