|
IGrafanaFunctionParseParameters Method
|
Executes custom parameter parsing for the Grafana function.
Namespace: GrafanaAdapters.FunctionsAssembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.207-beta
Syntax function ParseParameters(queryParameters, queryExpression);
View SourceParameters
- queryParameters QueryParameters
- Query parameters.
- queryExpression String
- Expression to parse.
Return Value
ValueTupleListString,
String
A tuple of parsed parameters and any remaining query expression (typically the filter expression)
after parsing parameters. Tuple of
(null, null) should be returned to use standard parsing.
Remarks
This method is used to support custom parameter parsing for functions that may have special parameter
parsing requirements. By default, this method will return a tuple of (null, null) meaning that
standard parameter parsing will be used.
See Also