mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
Merge branch 'main' into indirectDescOperatorImprovement
This commit is contained in:
commit
b258d7653f
@ -124,7 +124,7 @@ export const FUNCTION_NAMES: Record<string, FunctionName> = {
|
|||||||
RUNNING_DIFF: 'runningDiff',
|
RUNNING_DIFF: 'runningDiff',
|
||||||
LOG2: 'log2',
|
LOG2: 'log2',
|
||||||
LOG10: 'log10',
|
LOG10: 'log10',
|
||||||
CUM_SUM: 'cumSum',
|
CUM_SUM: 'cumulativeSum',
|
||||||
EWMA3: 'ewma3',
|
EWMA3: 'ewma3',
|
||||||
EWMA5: 'ewma5',
|
EWMA5: 'ewma5',
|
||||||
EWMA7: 'ewma7',
|
EWMA7: 'ewma7',
|
||||||
|
|||||||
@ -125,7 +125,7 @@ export const queryFunctionsTypesConfig: QueryFunctionConfigType = {
|
|||||||
log10: {
|
log10: {
|
||||||
showInput: false,
|
showInput: false,
|
||||||
},
|
},
|
||||||
cumSum: {
|
cumulativeSum: {
|
||||||
showInput: false,
|
showInput: false,
|
||||||
},
|
},
|
||||||
ewma3: {
|
ewma3: {
|
||||||
|
|||||||
@ -68,7 +68,7 @@ export type FunctionName =
|
|||||||
| 'runningDiff'
|
| 'runningDiff'
|
||||||
| 'log2'
|
| 'log2'
|
||||||
| 'log10'
|
| 'log10'
|
||||||
| 'cumSum'
|
| 'cumulativeSum'
|
||||||
| 'ewma3'
|
| 'ewma3'
|
||||||
| 'ewma5'
|
| 'ewma5'
|
||||||
| 'ewma7'
|
| 'ewma7'
|
||||||
|
|||||||
@ -200,7 +200,7 @@ export enum QueryFunctionsTypes {
|
|||||||
RUNNING_DIFF = 'runningDiff',
|
RUNNING_DIFF = 'runningDiff',
|
||||||
LOG_2 = 'log2',
|
LOG_2 = 'log2',
|
||||||
LOG_10 = 'log10',
|
LOG_10 = 'log10',
|
||||||
CUMULATIVE_SUM = 'cumSum',
|
CUMULATIVE_SUM = 'cumulativeSum',
|
||||||
EWMA_3 = 'ewma3',
|
EWMA_3 = 'ewma3',
|
||||||
EWMA_5 = 'ewma5',
|
EWMA_5 = 'ewma5',
|
||||||
EWMA_7 = 'ewma7',
|
EWMA_7 = 'ewma7',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user