// Copyright 2021 The Prometheus Authors // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import { Completion, snippet } from '@codemirror/autocomplete'; export const durationTerms = [{ label: 'y' }, { label: 'w' }, { label: 'd' }, { label: 'h' }, { label: 'm' }, { label: 's' }, { label: 'ms' }]; export const matchOpTerms = [{ label: '=' }, { label: '!=' }, { label: '=~' }, { label: '!~' }]; export const binOpTerms = [ { label: '^' }, { label: '*' }, { label: '/' }, { label: '%' }, { label: '+' }, { label: '-' }, { label: '==' }, { label: '>=' }, { label: '>' }, { label: '<' }, { label: '<=' }, { label: '!=' }, { label: 'atan2' }, { label: 'and' }, { label: 'or' }, { label: 'unless' }, ]; export const binOpModifierTerms = [ { label: 'on', info: 'Match only on specified labels', type: 'keyword' }, { label: 'ignoring', info: 'Ignore specified labels for matching', type: 'keyword' }, { label: 'group_left', info: 'Allow many-to-one matching', type: 'keyword' }, { label: 'group_right', info: 'Allow one-to-many matching', type: 'keyword' }, ]; export const atModifierTerms = [ { label: 'start()', info: 'resolve to the start of the query', type: 'keyword' }, { label: 'end()', info: 'resolve to the end of the query', type: 'keyword' }, ]; export const functionIdentifierTerms = [ { label: 'abs', detail: 'function', info: 'Return absolute values of input series', type: 'function', }, { label: 'absent', detail: 'function', info: 'Determine whether input vector is empty', type: 'function', }, { label: 'absent_over_time', detail: 'function', info: 'Determine whether input range vector is empty', type: 'function', }, { label: 'acos', detail: 'function', info: 'Calculate the arccosine, in radians, for input series', type: 'function', }, { label: 'acosh', detail: 'function', info: 'Calculate the inverse hyperbolic cosine, in radians, for input series', type: 'function', }, { label: 'asin', detail: 'function', info: 'Calculate the arcsine, in radians, for input series', type: 'function', }, { label: 'asinh', detail: 'function', info: 'Calculate the inverse hyperbolic sine, in radians, for input series', type: 'function', }, { label: 'atan', detail: 'function', info: 'Calculate the arctangent, in radians, for input series', type: 'function', }, { label: 'atanh', detail: 'function', info: 'Calculate the inverse hyperbolic tangent, in radians, for input series', type: 'function', }, { label: 'avg_over_time', detail: 'function', info: 'Average series values over time', type: 'function', }, { label: 'ceil', detail: 'function', info: 'Round up values of input series to nearest integer', type: 'function', }, { label: 'changes', detail: 'function', info: 'Return number of value changes in input series over time', type: 'function', }, { label: 'clamp', detail: 'function', info: 'Limit the value of input series between a minimum and a maximum', type: 'function', }, { label: 'clamp_max', detail: 'function', info: 'Limit the value of input series to a maximum', type: 'function', }, { label: 'clamp_min', detail: 'function', info: 'Limit the value of input series to a minimum', type: 'function', }, { label: 'cos', detail: 'function', info: 'Calculate the cosine, in radians, for input series', type: 'function', }, { label: 'cosh', detail: 'function', info: 'Calculate the hyperbolic cosine, in radians, for input series', type: 'function', }, { label: 'count_over_time', detail: 'function', info: 'Count the number of values for each input series', type: 'function', }, { label: 'days_in_month', detail: 'function', info: 'Return the number of days in current month for provided timestamps', type: 'function', }, { label: 'day_of_month', detail: 'function', info: 'Return the day of the month for provided timestamps', type: 'function', }, { label: 'day_of_week', detail: 'function', info: 'Return the day of the week for provided timestamps', type: 'function', }, { label: 'deg', detail: 'function', info: 'Convert radians to degrees for input series', type: 'function', }, { label: 'delta', detail: 'function', info: 'Calculate the difference between beginning and end of a range vector (for gauges)', type: 'function', }, { label: 'deriv', detail: 'function', info: 'Calculate the per-second derivative over series in a range vector (for gauges)', type: 'function', }, { label: 'exp', detail: 'function', info: 'Calculate exponential function for input vector values', type: 'function', }, { label: 'floor', detail: 'function', info: 'Round down values of input series to nearest integer', type: 'function', }, { label: 'histogram_quantile', detail: 'function', info: 'Calculate quantiles from histogram buckets', type: 'function', }, { label: 'holt_winters', detail: 'function', info: 'Calculate smoothed value of input series', type: 'function', }, { label: 'hour', detail: 'function', info: 'Return the hour of the day for provided timestamps', type: 'function', }, { label: 'idelta', detail: 'function', info: 'Calculate the difference between the last two samples of a range vector (for counters)', type: 'function', }, { label: 'increase', detail: 'function', info: 'Calculate the increase in value over a range of time (for counters)', type: 'function', }, { label: 'irate', detail: 'function', info: 'Calculate the per-second increase over the last two samples of a range vector (for counters)', type: 'function', }, { label: 'label_replace', detail: 'function', info: 'Set or replace label values', type: 'function', }, { label: 'label_join', detail: 'function', info: 'Join together label values into new label', type: 'function', }, { label: 'last_over_time', detail: 'function', info: 'The most recent point value in specified interval.', type: 'function', }, { label: 'ln', detail: 'function', info: 'Calculate natural logarithm of input series', type: 'function', }, { label: 'log10', detail: 'function', info: 'Calulcate base-10 logarithm of input series', type: 'function', }, { label: 'log2', detail: 'function', info: 'Calculate base-2 logarithm of input series', type: 'function', }, { label: 'max_over_time', detail: 'function', info: 'Return the maximum value over time for input series', type: 'function', }, { label: 'min_over_time', detail: 'function', info: 'Return the minimum value over time for input series', type: 'function', }, { label: 'minute', detail: 'function', info: 'Return the minute of the hour for provided timestamps', type: 'function', }, { label: 'month', detail: 'function', info: 'Return the month for provided timestamps', type: 'function', }, { label: 'pi', detail: 'function', info: 'Return pi', type: 'function', }, { label: 'predict_linear', detail: 'function', info: 'Predict the value of a gauge into the future', type: 'function', }, { label: 'present_over_time', detail: 'function', info: 'the value 1 for any series in the specified interval', type: 'function', }, { label: 'quantile_over_time', detail: 'function', info: 'Calculate value quantiles over time for input series', type: 'function', }, { label: 'rad', detail: 'function', info: 'Convert degrees to radians for input series', type: 'function', }, { label: 'rate', detail: 'function', info: 'Calculate per-second increase over a range vector (for counters)', type: 'function', }, { label: 'resets', detail: 'function', info: 'Return number of value decreases (resets) in input series of time', type: 'function', }, { label: 'round', detail: 'function', info: 'Round values of input series to nearest integer', type: 'function', }, { label: 'scalar', detail: 'function', info: 'Convert single-element series vector into scalar value', type: 'function', }, { label: 'sgn', detail: 'function', info: 'Returns the sign of the instant vector', type: 'function', }, { label: 'sin', detail: 'function', info: 'Calculate the sine, in radians, for input series', type: 'function', }, { label: 'sinh', detail: 'function', info: 'Calculate the hyperbolic sine, in radians, for input series', type: 'function', }, { label: 'sort', detail: 'function', info: 'Sort input series ascendingly by value', type: 'function', }, { label: 'sort_desc', detail: 'function', info: 'Sort input series descendingly by value', type: 'function', }, { label: 'sqrt', detail: 'function', info: 'Return the square root for input series', type: 'function', }, { label: 'stddev_over_time', detail: 'function', info: 'Calculate the standard deviation within input series over time', type: 'function', }, { label: 'stdvar_over_time', detail: 'function', info: 'Calculate the standard variation within input series over time', type: 'function', }, { label: 'sum_over_time', detail: 'function', info: 'Calculate the sum over the values of input series over time', type: 'function', }, { label: 'tan', detail: 'function', info: 'Calculate the tangent, in radians, for input series', type: 'function', }, { label: 'tanh', detail: 'function', info: 'Calculate the hyperbolic tangent, in radians, for input series', type: 'function', }, { label: 'time', detail: 'function', info: 'Return the Unix timestamp at the current evaluation time', type: 'function', }, { label: 'timestamp', detail: 'function', info: 'Return the Unix timestamp for the samples in the input vector', type: 'function', }, { label: 'vector', detail: 'function', info: 'Convert a scalar value into a single-element series vector', type: 'function', }, { label: 'year', detail: 'function', info: 'Return the year for provided timestamps', type: 'function', }, ]; export const aggregateOpTerms = [ { label: 'avg', detail: 'aggregation', info: 'Calculate the average over dimensions', type: 'keyword', }, { label: 'bottomk', detail: 'aggregation', info: 'Smallest k elements by sample value', type: 'keyword', }, { label: 'count', detail: 'aggregation', info: 'Count number of elements in the vector', type: 'keyword', }, { label: 'count_values', detail: 'aggregation', info: 'Count number of elements with the same value', type: 'keyword', }, { label: 'group', detail: 'aggregation', info: 'Group series, while setting the sample value to 1', type: 'keyword', }, { label: 'max', detail: 'aggregation', info: 'Select maximum over dimensions', type: 'keyword', }, { label: 'min', detail: 'aggregation', info: 'Select minimum over dimensions', type: 'keyword', }, { label: 'quantile', detail: 'aggregation', info: 'Calculate φ-quantile (0 ≤ φ ≤ 1) over dimensions', type: 'keyword', }, { label: 'stddev', detail: 'aggregation', info: 'Calculate population standard deviation over dimensions', type: 'keyword', }, { label: 'stdvar', detail: 'aggregation', info: 'Calculate population standard variance over dimensions', type: 'keyword', }, { label: 'sum', detail: 'aggregation', info: 'Calculate sum over dimensions', type: 'keyword', }, { label: 'topk', detail: 'aggregation', info: 'Largest k elements by sample value', type: 'keyword', }, ]; export const aggregateOpModifierTerms = [ { label: 'by', info: 'Keep the listed labels, remove all others.', type: 'keyword', }, { label: 'without', info: 'Remove the listed labels, preserve all others.', type: 'keyword', }, ]; export const numberTerms = [ { label: 'nan', info: 'Floating-point NaN value', type: 'constant' }, { label: 'inf', info: 'Floating-point infinity', type: 'constant' }, ]; export const snippets: readonly Completion[] = [ { label: 'sum(rate(__input_vector__[5m]))', type: 'function', detail: 'snippet', info: 'Sum over rates of increase', apply: snippet('sum(rate(${__input_vector__}[5m]))'), }, { label: 'histogram_quantile(__quantile__, sum by(le) (rate(__histogram_metric__[5m])))', type: 'function', detail: 'snippet', info: 'Approximate a quantile value from an aggregated histogram', apply: snippet('histogram_quantile(${__quantile__}, sum by(le) (rate(${__histogram_metric__}[5m])))'), }, { label: 'label_replace(__input_vector__, "__dst__", "__replacement__", "__src__", "__regex__")', type: 'function', detail: 'snippet', info: 'Set or replace a label value in an input vector', apply: snippet('label_replace(${__input_vector__}, "${__dst__}", "${__replacement__}", "${__src__}", "${__regex__}")'), }, { label: 'topk(__rank_number__, __input_vector__)', type: 'function', detail: 'snippet', info: 'Largest k elements by sample value', apply: snippet('topk(${__rank_number__}, ${__input_vector__})'), }, { label: 'bottomk(__rank_number__, __input_vector__)', type: 'function', detail: 'snippet', info: 'Smallest k elements by sample value', apply: snippet('bottomk(${__rank_number__}, ${__input_vector__})'), }, { label: 'count_values("__label_name__", __input_vector__)', type: 'function', detail: 'snippet', info: 'Count the number of series per distinct sample value', apply: snippet('count_values("${__label_name__}", ${__metric__})'), }, ];