在面板插件中插值变量
变量是值的占位符,您可以使用它们创建模板查询、仪表板或面板链接。有关变量的更多信息,请参阅 模板和变量。
Grafana 提供了在字符串模板中插值变量的辅助函数。在 PanelProps
中可用 replaceVariables
函数。
将 replaceVariables
添加到参数列表中,并将其传递给用户定义的模板字符串
export function SimplePanel({ options, data, width, height, replaceVariables }: Props) {
const query = replaceVariables('Now displaying $service');
return <div>{query}</div>;
}