diff --git a/Source/Libraries/Adapters/GrafanaAdapters/Functions/BuiltIn/ExceedsAt.cs b/Source/Libraries/Adapters/GrafanaAdapters/Functions/BuiltIn/ExceedsAt.cs index 09d0c0d035..866ee8548c 100644 --- a/Source/Libraries/Adapters/GrafanaAdapters/Functions/BuiltIn/ExceedsAt.cs +++ b/Source/Libraries/Adapters/GrafanaAdapters/Functions/BuiltIn/ExceedsAt.cs @@ -14,7 +14,10 @@ namespace GrafanaAdapters.Functions.BuiltIn; /// of exceeding. returnDurations, optional, is a boolean that determines if the duration (in seconds) from where /// value exceeded threshold should be returned instead of the original value. Forth parameter, reportEndMarker, /// is a boolean flag that determines if a value should be reported at the point when threshold stops being exceeding -/// the threshold. +/// the threshold.
+/// See +/// example template dashboard. /// /// /// Signature: ExceedsAt(threshold, [fallsBelow = false], [returnDurations = false], [reportEndMarker = false], expression)
diff --git a/Source/Tools/GenerateGrafanaFunctionsMarkdown/ForwardText.md b/Source/Tools/GenerateGrafanaFunctionsMarkdown/ForwardText.md index 26bc5efcf7..1942203513 100644 --- a/Source/Tools/GenerateGrafanaFunctionsMarkdown/ForwardText.md +++ b/Source/Tools/GenerateGrafanaFunctionsMarkdown/ForwardText.md @@ -58,7 +58,7 @@ The following optional special command operations can be specified as part of an | Command | Description | | ------- | ----------- | | `DropEmptySeries` | Ensures any empty series are hidden from display. Example: `; dropEmptySeries` | -| `FullResolutionQuery` | Ensures query returns non-decimated, full resolution data. Example: `; fullResolutionData` | +| `FullResolutionQuery` | Ensures query returns non-decimated, full resolution data. Example: `; FullResolutionQuery` | | `IncludePeaks` | Ensures decimated data includes both min/max interval peaks, note this can reduce query performance. Example: `; includePeaks` | | `RadialDistribution` | Updates query coordinate metadata, i.e., longitude/latitude, where values overlap in a radial distribution. Example: `; radialDistribution` | | `SquareDistribution` | Updates query coordinate metadata, i.e., longitude/latitude, where values overlap in a square distribution. Example: `; squareDistribution` |