TraceKeyValuePair type
TraceKeyValuePair type
Type representing a tag in a trace span or fields of a log.
Signature
export declare type TraceKeyValuePair<T = any> = {
key: string;
value: T;
};
Import
import { TraceKeyValuePair } from '@grafana/data';