mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 17:42:12 +08:00
36 lines
849 B
Markdown
36 lines
849 B
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "TraceSpanData"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## TraceSpanData type
|
|
|
|
### TraceSpanData type
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export declare type TraceSpanData = {
|
|
spanID: string;
|
|
traceID: string;
|
|
processID: string;
|
|
operationName: string;
|
|
startTime: number;
|
|
duration: number;
|
|
logs: TraceLog[];
|
|
tags?: TraceKeyValuePair[];
|
|
references?: TraceSpanReference[];
|
|
warnings?: string[] | null;
|
|
flags: number;
|
|
};
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { TraceSpanData } from '@grafana/data';
|
|
```
|