legend.ts 342 B

1234567
  1. import { Labels } from '@grafana/data';
  2. /** replace labels in a string. Used for loki+prometheus legend formats */
  3. export function renderLegendFormat(aliasPattern: string, aliasData: Labels): string {
  4. const aliasRegex = /\{\{\s*(.+?)\s*\}\}/g;
  5. return aliasPattern.replace(aliasRegex, (_, g1) => (aliasData[g1] ? aliasData[g1] : g1));
  6. }