mirror of https://github.com/grafana/grafana.git
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';
|
||
|
```
|