mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 06:52:42 +08:00
29 lines
711 B
Markdown
29 lines
711 B
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "TraceSpanReference"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## TraceSpanReference type
|
|
|
|
### TraceSpanReference type
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export declare type TraceSpanReference = {
|
|
refType: 'CHILD_OF' | 'FOLLOWS_FROM';
|
|
span?: TraceSpan | null | undefined;
|
|
spanID: string;
|
|
traceID: string;
|
|
};
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { TraceSpanReference } from '@grafana/data';
|
|
```
|