mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
chore: Remove beta label from MVs (#1624)
Closes HDX-3223 # Summary This PR removes the Beta label from materialized views, now that the following limitations have been addressed 1. MVs now support alerts 2. Charts are now auto-aligned with MV granularity <img width="944" height="802" alt="Screenshot 2026-01-20 at 9 43 46 AM" src="https://github.com/user-attachments/assets/a05dcef0-9074-4610-8516-fb1b8e93941c" /> <img width="639" height="490" alt="Screenshot 2026-01-20 at 9 43 29 AM" src="https://github.com/user-attachments/assets/0b078f9b-30e2-4920-898d-95d64ee453d4" />
This commit is contained in:
parent
94ddc7ebaa
commit
9725a1fc9c
3 changed files with 7 additions and 16 deletions
5
.changeset/brown-nails-hide.md
Normal file
5
.changeset/brown-nails-hide.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
chore: Remove beta label from MVs
|
||||
|
|
@ -42,14 +42,7 @@ export default function MVOptimizationModal({
|
|||
|
||||
return (
|
||||
<Modal
|
||||
title={
|
||||
<Group>
|
||||
{hasMultipleMVs ? 'Materialized Views' : 'Materialized View'}
|
||||
<Badge size="sm" radius="sm" color="gray">
|
||||
Beta
|
||||
</Badge>
|
||||
</Group>
|
||||
}
|
||||
title={hasMultipleMVs ? 'Materialized Views' : 'Materialized View'}
|
||||
opened={opened}
|
||||
onClose={onClose}
|
||||
size="lg"
|
||||
|
|
|
|||
|
|
@ -416,14 +416,7 @@ function MaterializedViewsFormSection({ control, setValue }: TableModelProps) {
|
|||
return (
|
||||
<Stack gap="md">
|
||||
<FormRow
|
||||
label={
|
||||
<Group>
|
||||
Materialized Views
|
||||
<Badge size="sm" radius="sm" color="gray">
|
||||
Beta
|
||||
</Badge>
|
||||
</Group>
|
||||
}
|
||||
label="Materialized Views"
|
||||
helpText="Configure materialized views for query optimization. These pre-aggregated views can significantly improve query performance on aggregation queries."
|
||||
>
|
||||
<Stack gap="md">
|
||||
|
|
|
|||
Loading…
Reference in a new issue