Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
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';