mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-28 04:02:21 -04:00
Merge pull request #18318 from linasm/autocomplete-for-ts-of-first-over-time
fix(UI): autocomplete for first_over_time and ts_of_first_over_time
This commit is contained in:
commit
c92085eecf
1 changed files with 13 additions and 1 deletions
|
|
@ -317,10 +317,16 @@ export const functionIdentifierTerms = [
|
|||
info: 'Join together label values into new label',
|
||||
type: 'function',
|
||||
},
|
||||
{
|
||||
label: 'first_over_time',
|
||||
detail: 'function',
|
||||
info: 'Return the value of the oldest sample in the specified interval',
|
||||
type: 'function',
|
||||
},
|
||||
{
|
||||
label: 'last_over_time',
|
||||
detail: 'function',
|
||||
info: 'The most recent point value in specified interval.',
|
||||
info: 'Return the value of the most recent sample in the specified interval',
|
||||
type: 'function',
|
||||
},
|
||||
{
|
||||
|
|
@ -371,6 +377,12 @@ export const functionIdentifierTerms = [
|
|||
info: 'Return the timestamp of the minimum value over time for input series',
|
||||
type: 'function',
|
||||
},
|
||||
{
|
||||
label: 'ts_of_first_over_time',
|
||||
detail: 'function',
|
||||
info: 'Return the timestamp of the first value over time for input series',
|
||||
type: 'function',
|
||||
},
|
||||
{
|
||||
label: 'ts_of_last_over_time',
|
||||
detail: 'function',
|
||||
|
|
|
|||
Loading…
Reference in a new issue