mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
fix: Change None aggregation to Custom (#1633)
Justification: "None" is confusing to customers. Custom reflects the ability for users to use their own aggregation in the where clause.
This commit is contained in:
parent
c2a6193393
commit
ea56d11f8b
2 changed files with 6 additions and 1 deletions
5
.changeset/sweet-boxes-breathe.md
Normal file
5
.changeset/sweet-boxes-breathe.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
chore: Change "None" aggregation label to "Custom" in charts.
|
||||
|
|
@ -74,7 +74,7 @@ export const AGG_FNS = [
|
|||
isAttributable: false,
|
||||
},
|
||||
{ value: 'any' as const, label: 'Any' },
|
||||
{ value: 'none' as const, label: 'None' },
|
||||
{ value: 'none' as const, label: 'Custom' },
|
||||
];
|
||||
|
||||
export const getMetricAggFns = (
|
||||
|
|
|
|||
Loading…
Reference in a new issue