跳至主要内容

在面板插件中插值变量

变量是值的占位符,您可以使用它们创建模板查询以及仪表板或面板链接。 有关变量的更多信息,请参阅 模板和变量

Grafana 提供了辅助函数来在字符串模板中插值变量。 replaceVariables 函数在 PanelProps 中可用。

replaceVariables 添加到参数列表中,并向其传递用户定义的模板字符串

export function SimplePanel({ options, data, width, height, replaceVariables }: Props) {
const query = replaceVariables('Now displaying $service');

return <div>{query}</div>;
}