DataTransformerConfig interface

Signature

  1. export interface DataTransformerConfig<TOptions = any>

Import

  1. import { DataTransformerConfig } from '@grafana/data';

Properties

PropertyTypeDescription
disabledbooleanDisabled transformations are skipped
idstringUnique identifier of transformer
optionsTOptionsOptions to be passed to the transformer
replace(target?: string, scopedVars?: ScopedVars, format?: string | Function) => stringFunction to apply template variable substitution to the DataTransformerConfig

disabled property

Disabled transformations are skipped

Signature

  1. disabled?: boolean;

id property

Unique identifier of transformer

Signature

  1. id: string;

options property

Options to be passed to the transformer

Signature

  1. options: TOptions;

replace property

Function to apply template variable substitution to the DataTransformerConfig

Signature

  1. replace?: (target?: string, scopedVars?: ScopedVars, format?: string | Function) => string;