mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
|
|
import logfmt from 'logfmt';
|
||
|
|
|
||
|
|
import { ScopedVars, DataLinkTransformationConfig, SupportedTransformationTypes } from '@grafana/data';
|
||
|
|
import { safeStringifyValue } from 'app/core/utils/explore';
|
||
|
|
|
||
|
|
export const getTransformationVars = (
|
||
|
|
transformation: DataLinkTransformationConfig,
|
||
|
|
fieldValue: string,
|
||
|
|
fieldName: string
|
||
|
|
): ScopedVars => {
|
||
|
|
let transformationScopedVars: ScopedVars = {};
|
||
|
|
let transformVal: { [key: string]: string | boolean | null | undefined } = {};
|
||
|
|
if (transformation.type === SupportedTransformationTypes.Regex && transformation.expression) {
|
||
|
|
const regexp = new RegExp(transformation.expression, 'gi');
|
||
|
|
const matches = fieldValue.matchAll(regexp);
|
||
|
|
for (const match of matches) {
|
||
|
|
if (match.groups) {
|
||
|
|
transformVal = match.groups;
|
||
|
|
} else {
|
||
|
|
transformVal[transformation.mapValue || fieldName] = match[1] || match[0];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
} else if (transformation.type === SupportedTransformationTypes.Logfmt) {
|
||
|
|
transformVal = logfmt.parse(fieldValue);
|
||
|
|
}
|
||
|
|
|
||
|
|
Object.keys(transformVal).forEach((key) => {
|
||
|
|
const transformValString =
|
||
|
|
typeof transformVal[key] === 'string' ? transformVal[key] : safeStringifyValue(transformVal[key]);
|
||
|
|
transformationScopedVars[key] = { value: transformValString };
|
||
|
|
});
|
||
|
|
|
||
|
|
return transformationScopedVars;
|
||
|
|
};
|