@oneuptime/common 11.0.1 → 11.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Models/DatabaseModels/Alert.ts +110 -0
- package/Models/DatabaseModels/CephCluster.ts +964 -0
- package/Models/DatabaseModels/CephClusterLabelRule.ts +514 -0
- package/Models/DatabaseModels/CephClusterOwnerRule.ts +596 -0
- package/Models/DatabaseModels/CephClusterOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/CephClusterOwnerUser.ts +486 -0
- package/Models/DatabaseModels/CephResource.ts +809 -0
- package/Models/DatabaseModels/Host.ts +64 -0
- package/Models/DatabaseModels/Incident.ts +110 -0
- package/Models/DatabaseModels/Index.ts +24 -0
- package/Models/DatabaseModels/ProxmoxCluster.ts +943 -0
- package/Models/DatabaseModels/ProxmoxClusterLabelRule.ts +514 -0
- package/Models/DatabaseModels/ProxmoxClusterOwnerRule.ts +596 -0
- package/Models/DatabaseModels/ProxmoxClusterOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/ProxmoxClusterOwnerUser.ts +486 -0
- package/Models/DatabaseModels/ProxmoxResource.ts +726 -0
- package/Models/DatabaseModels/ScheduledMaintenance.ts +110 -0
- package/Server/API/BillingInvoiceAPI.ts +47 -7
- package/Server/API/CephResourceAPI.ts +134 -0
- package/Server/API/DashboardAPI.ts +46 -0
- package/Server/API/ProjectAPI.ts +15 -0
- package/Server/API/ProxmoxResourceAPI.ts +132 -0
- package/Server/API/ResellerPlanAPI.ts +17 -0
- package/Server/Infrastructure/GlobalCache.ts +8 -2
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.ts +163 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.ts +211 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.ts +590 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.ts +64 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +8 -0
- package/Server/Infrastructure/Redis.ts +40 -12
- package/Server/Services/AnalyticsDatabaseService.ts +1 -1
- package/Server/Services/BillingService.ts +109 -21
- package/Server/Services/CephClusterLabelRuleEngineService.ts +200 -0
- package/Server/Services/CephClusterLabelRuleService.ts +14 -0
- package/Server/Services/CephClusterOwnerRuleEngineService.ts +218 -0
- package/Server/Services/CephClusterOwnerRuleService.ts +14 -0
- package/Server/Services/CephClusterOwnerTeamService.ts +10 -0
- package/Server/Services/CephClusterOwnerUserService.ts +10 -0
- package/Server/Services/CephClusterService.ts +401 -0
- package/Server/Services/CephResourceService.ts +383 -0
- package/Server/Services/CloudResourceService.ts +11 -3
- package/Server/Services/DockerHostService.ts +11 -3
- package/Server/Services/ExceptionAggregationService.ts +2 -0
- package/Server/Services/HostService.ts +11 -3
- package/Server/Services/Index.ts +24 -0
- package/Server/Services/KubernetesClusterService.ts +11 -3
- package/Server/Services/LogAggregationService.ts +2 -0
- package/Server/Services/MetricAggregationService.ts +2 -0
- package/Server/Services/OpenTelemetryIngestService.ts +36 -0
- package/Server/Services/ProxmoxClusterLabelRuleEngineService.ts +204 -0
- package/Server/Services/ProxmoxClusterLabelRuleService.ts +14 -0
- package/Server/Services/ProxmoxClusterOwnerRuleEngineService.ts +222 -0
- package/Server/Services/ProxmoxClusterOwnerRuleService.ts +14 -0
- package/Server/Services/ProxmoxClusterOwnerTeamService.ts +10 -0
- package/Server/Services/ProxmoxClusterOwnerUserService.ts +10 -0
- package/Server/Services/ProxmoxClusterService.ts +382 -0
- package/Server/Services/ProxmoxResourceService.ts +404 -0
- package/Server/Services/RumApplicationService.ts +11 -3
- package/Server/Services/ServerlessFunctionService.ts +11 -3
- package/Server/Services/TelemetryUsageBillingService.ts +41 -3
- package/Server/Services/TraceAggregationService.ts +2 -0
- package/Server/Types/AnalyticsDatabase/AggregateBy.ts +8 -23
- package/Server/Utils/Monitor/MonitorAlert.ts +45 -0
- package/Server/Utils/Monitor/MonitorClusterContext.ts +129 -0
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +344 -4
- package/Server/Utils/Monitor/MonitorIncident.ts +130 -7
- package/Server/Utils/Monitor/MonitorMaintenanceSuppression.ts +39 -6
- package/Server/Utils/Monitor/MonitorTemplateUtil.ts +3 -1
- package/Server/Utils/Monitor/SeriesResourceLabels.ts +33 -0
- package/Server/Utils/Profiling.ts +37 -2
- package/Server/Utils/Telemetry/EntityRegistry.ts +4 -0
- package/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.ts +1096 -0
- package/Server/Utils/Telemetry/TelemetryEntity.ts +85 -0
- package/Server/Utils/Telemetry.ts +8 -19
- package/Tests/Server/API/BillingInvoiceAPI.test.ts +194 -0
- package/Tests/Server/API/ProjectAPI.test.ts +91 -0
- package/Tests/Server/API/ResellerPlanAPI.test.ts +207 -0
- package/Tests/Server/Infrastructure/GlobalCache.test.ts +100 -0
- package/Tests/Server/Services/BillingService.test.ts +323 -0
- package/Tests/Server/Services/CephResourceService.test.ts +264 -0
- package/Tests/Server/Services/ProxmoxResourceService.test.ts +326 -0
- package/Tests/Server/Utils/Monitor/MonitorCriteriaEvaluator.test.ts +322 -0
- package/Tests/Server/Utils/Monitor/MonitorMaintenanceSuppression.test.ts +13 -0
- package/Tests/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.test.ts +879 -0
- package/Tests/Server/Utils/Telemetry/TelemetryEntity.test.ts +196 -0
- package/Tests/Types/Monitor/CephAlertTemplates.test.ts +1231 -0
- package/Tests/Types/Monitor/ProxmoxAlertTemplates.test.ts +732 -0
- package/Tests/Utils/Telemetry/EntityRelationship.test.ts +49 -0
- package/Tests/Utils/Telemetry/HeartbeatAvailability.test.ts +423 -0
- package/Types/BaseDatabase/AggregationIntervalUtil.ts +74 -0
- package/Types/Dashboard/DashboardComponentType.ts +4 -0
- package/Types/Dashboard/DashboardComponents/ComponentArgument.ts +2 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.ts +14 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.ts +16 -0
- package/Types/Dashboard/DashboardTemplates.ts +446 -0
- package/Types/Icon/IconProp.ts +2 -0
- package/Types/Monitor/CephAlertTemplates.ts +1647 -0
- package/Types/Monitor/CephMetricCatalog.ts +409 -0
- package/Types/Monitor/MetricMonitor/MetricMonitorResponse.ts +44 -0
- package/Types/Monitor/MonitorStep.ts +64 -0
- package/Types/Monitor/MonitorStepCephMonitor.ts +57 -0
- package/Types/Monitor/MonitorStepProxmoxMonitor.ts +81 -0
- package/Types/Monitor/MonitorType.ts +29 -1
- package/Types/Monitor/ProxmoxAlertTemplates.ts +899 -0
- package/Types/Monitor/ProxmoxMetricCatalog.ts +382 -0
- package/Types/Permission.ts +464 -0
- package/Types/Telemetry/EntityType.ts +11 -0
- package/Types/Telemetry/ServiceType.ts +2 -0
- package/UI/Components/Icon/Icon.tsx +84 -0
- package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +9 -5
- package/UI/Utils/Telemetry/Telemetry.ts +16 -21
- package/UI/Utils/TelemetryService.ts +7 -3
- package/Utils/Dashboard/Components/DashboardCephOsdListComponent.ts +63 -0
- package/Utils/Dashboard/Components/DashboardCephPoolListComponent.ts +32 -0
- package/Utils/Dashboard/Components/DashboardCephResourceListShared.ts +61 -0
- package/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.ts +69 -0
- package/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.ts +55 -0
- package/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.ts +61 -0
- package/Utils/Dashboard/Components/Index.ts +28 -0
- package/Utils/Telemetry/EntityKey.ts +35 -0
- package/Utils/Telemetry/EntityRelationship.ts +6 -0
- package/Utils/Telemetry/HeartbeatAvailability.ts +262 -0
- package/build/dist/Models/DatabaseModels/Alert.js +108 -0
- package/build/dist/Models/DatabaseModels/Alert.js.map +1 -1
- package/build/dist/Models/DatabaseModels/CephCluster.js +992 -0
- package/build/dist/Models/DatabaseModels/CephCluster.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/CephClusterLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/CephClusterOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/CephResource.js +846 -0
- package/build/dist/Models/DatabaseModels/CephResource.js.map +1 -0
- package/build/dist/Models/DatabaseModels/Host.js +63 -0
- package/build/dist/Models/DatabaseModels/Host.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Incident.js +108 -0
- package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +24 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ProxmoxCluster.js +967 -0
- package/build/dist/Models/DatabaseModels/ProxmoxCluster.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/ProxmoxClusterOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ProxmoxResource.js +761 -0
- package/build/dist/Models/DatabaseModels/ProxmoxResource.js.map +1 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js +108 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js.map +1 -1
- package/build/dist/Server/API/BillingInvoiceAPI.js +35 -5
- package/build/dist/Server/API/BillingInvoiceAPI.js.map +1 -1
- package/build/dist/Server/API/CephResourceAPI.js +98 -0
- package/build/dist/Server/API/CephResourceAPI.js.map +1 -0
- package/build/dist/Server/API/DashboardAPI.js +46 -0
- package/build/dist/Server/API/DashboardAPI.js.map +1 -1
- package/build/dist/Server/API/ProjectAPI.js +11 -0
- package/build/dist/Server/API/ProjectAPI.js.map +1 -1
- package/build/dist/Server/API/ProxmoxResourceAPI.js +95 -0
- package/build/dist/Server/API/ProxmoxResourceAPI.js.map +1 -0
- package/build/dist/Server/API/ResellerPlanAPI.js +17 -3
- package/build/dist/Server/API/ResellerPlanAPI.js.map +1 -1
- package/build/dist/Server/Infrastructure/GlobalCache.js +7 -2
- package/build/dist/Server/Infrastructure/GlobalCache.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.js +76 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.js +108 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000000-AddProxmoxCephV2Columns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.js +253 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781600000001-AddProxmoxCephActivityAndRules.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.js +43 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781700000000-AddProxmoxCephV3Columns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +8 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Infrastructure/Redis.js +31 -8
- package/build/dist/Server/Infrastructure/Redis.js.map +1 -1
- package/build/dist/Server/Services/AnalyticsDatabaseService.js +1 -1
- package/build/dist/Server/Services/AnalyticsDatabaseService.js.map +1 -1
- package/build/dist/Server/Services/BillingService.js +85 -23
- package/build/dist/Server/Services/BillingService.js.map +1 -1
- package/build/dist/Server/Services/CephClusterLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/CephClusterLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterLabelRuleService.js +13 -0
- package/build/dist/Server/Services/CephClusterLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/CephClusterOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/CephClusterOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterOwnerUserService.js +9 -0
- package/build/dist/Server/Services/CephClusterOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/CephClusterService.js +353 -0
- package/build/dist/Server/Services/CephClusterService.js.map +1 -0
- package/build/dist/Server/Services/CephResourceService.js +257 -0
- package/build/dist/Server/Services/CephResourceService.js.map +1 -0
- package/build/dist/Server/Services/CloudResourceService.js +10 -2
- package/build/dist/Server/Services/CloudResourceService.js.map +1 -1
- package/build/dist/Server/Services/DockerHostService.js +10 -2
- package/build/dist/Server/Services/DockerHostService.js.map +1 -1
- package/build/dist/Server/Services/ExceptionAggregationService.js +2 -0
- package/build/dist/Server/Services/ExceptionAggregationService.js.map +1 -1
- package/build/dist/Server/Services/HostService.js +10 -2
- package/build/dist/Server/Services/HostService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +24 -0
- package/build/dist/Server/Services/Index.js.map +1 -1
- package/build/dist/Server/Services/KubernetesClusterService.js +10 -2
- package/build/dist/Server/Services/KubernetesClusterService.js.map +1 -1
- package/build/dist/Server/Services/LogAggregationService.js +2 -0
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricAggregationService.js +2 -0
- package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
- package/build/dist/Server/Services/OpenTelemetryIngestService.js +37 -7
- package/build/dist/Server/Services/OpenTelemetryIngestService.js.map +1 -1
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleService.js +13 -0
- package/build/dist/Server/Services/ProxmoxClusterLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerUserService.js +9 -0
- package/build/dist/Server/Services/ProxmoxClusterOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxClusterService.js +337 -0
- package/build/dist/Server/Services/ProxmoxClusterService.js.map +1 -0
- package/build/dist/Server/Services/ProxmoxResourceService.js +285 -0
- package/build/dist/Server/Services/ProxmoxResourceService.js.map +1 -0
- package/build/dist/Server/Services/RumApplicationService.js +10 -2
- package/build/dist/Server/Services/RumApplicationService.js.map +1 -1
- package/build/dist/Server/Services/ServerlessFunctionService.js +10 -2
- package/build/dist/Server/Services/ServerlessFunctionService.js.map +1 -1
- package/build/dist/Server/Services/TelemetryUsageBillingService.js +30 -3
- package/build/dist/Server/Services/TelemetryUsageBillingService.js.map +1 -1
- package/build/dist/Server/Services/TraceAggregationService.js +2 -0
- package/build/dist/Server/Services/TraceAggregationService.js.map +1 -1
- package/build/dist/Server/Types/AnalyticsDatabase/AggregateBy.js +8 -25
- package/build/dist/Server/Types/AnalyticsDatabase/AggregateBy.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js +36 -0
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js +90 -0
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +228 -4
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js +103 -8
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js +23 -6
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +3 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js +23 -0
- package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js.map +1 -1
- package/build/dist/Server/Utils/Profiling.js +24 -3
- package/build/dist/Server/Utils/Profiling.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js +4 -0
- package/build/dist/Server/Utils/Telemetry/EntityRegistry.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.js +854 -0
- package/build/dist/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js +62 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry.js +8 -10
- package/build/dist/Server/Utils/Telemetry.js.map +1 -1
- package/build/dist/Types/BaseDatabase/AggregationIntervalUtil.js +69 -0
- package/build/dist/Types/BaseDatabase/AggregationIntervalUtil.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js +4 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js +394 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js.map +1 -1
- package/build/dist/Types/Icon/IconProp.js +2 -0
- package/build/dist/Types/Icon/IconProp.js.map +1 -1
- package/build/dist/Types/Monitor/CephAlertTemplates.js +1379 -0
- package/build/dist/Types/Monitor/CephAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/CephMetricCatalog.js +353 -0
- package/build/dist/Types/Monitor/CephMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStep.js +46 -0
- package/build/dist/Types/Monitor/MonitorStep.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorStepCephMonitor.js +34 -0
- package/build/dist/Types/Monitor/MonitorStepCephMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js +36 -0
- package/build/dist/Types/Monitor/MonitorStepProxmoxMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorType.js +27 -1
- package/build/dist/Types/Monitor/MonitorType.js.map +1 -1
- package/build/dist/Types/Monitor/ProxmoxAlertTemplates.js +743 -0
- package/build/dist/Types/Monitor/ProxmoxAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/ProxmoxMetricCatalog.js +320 -0
- package/build/dist/Types/Monitor/ProxmoxMetricCatalog.js.map +1 -0
- package/build/dist/Types/Permission.js +408 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Telemetry/EntityType.js +11 -0
- package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
- package/build/dist/Types/Telemetry/ServiceType.js +2 -0
- package/build/dist/Types/Telemetry/ServiceType.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +33 -0
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +5 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js.map +1 -1
- package/build/dist/UI/Utils/Telemetry/Telemetry.js +11 -10
- package/build/dist/UI/Utils/Telemetry/Telemetry.js.map +1 -1
- package/build/dist/UI/Utils/TelemetryService.js +5 -2
- package/build/dist/UI/Utils/TelemetryService.js.map +1 -1
- package/build/dist/Utils/Dashboard/Components/DashboardCephOsdListComponent.js +50 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephOsdListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephPoolListComponent.js +27 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephPoolListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephResourceListShared.js +46 -0
- package/build/dist/Utils/Dashboard/Components/DashboardCephResourceListShared.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.js +55 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxGuestListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.js +42 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxNodeListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.js +46 -0
- package/build/dist/Utils/Dashboard/Components/DashboardProxmoxResourceListShared.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/Index.js +16 -0
- package/build/dist/Utils/Dashboard/Components/Index.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityKey.js +27 -0
- package/build/dist/Utils/Telemetry/EntityKey.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityRelationship.js +3 -0
- package/build/dist/Utils/Telemetry/EntityRelationship.js.map +1 -1
- package/build/dist/Utils/Telemetry/HeartbeatAvailability.js +174 -0
- package/build/dist/Utils/Telemetry/HeartbeatAvailability.js.map +1 -0
- package/package.json +29 -21
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import RollingTime from "../RollingTime/RollingTime";
|
|
2
|
+
/**
|
|
3
|
+
* The kind of Ceph resource a metric series belongs to. Unlike Proxmox
|
|
4
|
+
* there is no agent-stamped scope attribute — ceph-mgr series are already
|
|
5
|
+
* equality-filterable by `ceph_daemon` / `pool_id` — so this enum is a
|
|
6
|
+
* catalog/UI hint only, never a query filter.
|
|
7
|
+
*/
|
|
8
|
+
export var CephResourceScope;
|
|
9
|
+
(function (CephResourceScope) {
|
|
10
|
+
CephResourceScope["Cluster"] = "Cluster";
|
|
11
|
+
CephResourceScope["Mon"] = "Mon";
|
|
12
|
+
CephResourceScope["Osd"] = "OSD";
|
|
13
|
+
CephResourceScope["Pool"] = "Pool";
|
|
14
|
+
})(CephResourceScope || (CephResourceScope = {}));
|
|
15
|
+
export class MonitorStepCephMonitorUtil {
|
|
16
|
+
static getDefault() {
|
|
17
|
+
return {
|
|
18
|
+
clusterIdentifier: "",
|
|
19
|
+
resourceFilters: {},
|
|
20
|
+
metricViewConfig: {
|
|
21
|
+
queryConfigs: [],
|
|
22
|
+
formulaConfigs: [],
|
|
23
|
+
},
|
|
24
|
+
rollingTime: RollingTime.Past1Minute,
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
static fromJSON(json) {
|
|
28
|
+
return json;
|
|
29
|
+
}
|
|
30
|
+
static toJSON(monitor) {
|
|
31
|
+
return monitor;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=MonitorStepCephMonitor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MonitorStepCephMonitor.js","sourceRoot":"","sources":["../../../../Types/Monitor/MonitorStepCephMonitor.ts"],"names":[],"mappings":"AAEA,OAAO,WAAW,MAAM,4BAA4B,CAAC;AAErD;;;;;GAKG;AACH,MAAM,CAAN,IAAY,iBAKX;AALD,WAAY,iBAAiB;IAC3B,wCAAmB,CAAA;IACnB,gCAAW,CAAA;IACX,gCAAW,CAAA;IACX,kCAAa,CAAA;AACf,CAAC,EALW,iBAAiB,KAAjB,iBAAiB,QAK5B;AAqBD,MAAM,OAAO,0BAA0B;IAC9B,MAAM,CAAC,UAAU;QACtB,OAAO;YACL,iBAAiB,EAAE,EAAE;YACrB,eAAe,EAAE,EAAE;YACnB,gBAAgB,EAAE;gBAChB,YAAY,EAAE,EAAE;gBAChB,cAAc,EAAE,EAAE;aACnB;YACD,WAAW,EAAE,WAAW,CAAC,WAAW;SACrC,CAAC;IACJ,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,IAAgB;QACrC,OAAO,IAAqC,CAAC;IAC/C,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,OAA+B;QAClD,OAAO,OAA4B,CAAC;IACtC,CAAC;CACF"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import RollingTime from "../RollingTime/RollingTime";
|
|
2
|
+
/**
|
|
3
|
+
* The kind of Proxmox resource a metric series belongs to. Enum values are
|
|
4
|
+
* byte-equal to the `pve.scope` datapoint attribute stamped by the agent's
|
|
5
|
+
* OTTL transform processor (which splits pve-exporter's `id` label —
|
|
6
|
+
* `node/pve1`, `qemu/100`, `lxc/101`, `storage/local` — into `pve.scope`,
|
|
7
|
+
* `pve.type` and `pve.id`), so the monitor worker can map a scope filter to
|
|
8
|
+
* an attribute-equality clause with no translation.
|
|
9
|
+
*/
|
|
10
|
+
export var ProxmoxResourceScope;
|
|
11
|
+
(function (ProxmoxResourceScope) {
|
|
12
|
+
ProxmoxResourceScope["Cluster"] = "cluster";
|
|
13
|
+
ProxmoxResourceScope["Node"] = "node";
|
|
14
|
+
ProxmoxResourceScope["Guest"] = "guest";
|
|
15
|
+
ProxmoxResourceScope["Storage"] = "storage";
|
|
16
|
+
})(ProxmoxResourceScope || (ProxmoxResourceScope = {}));
|
|
17
|
+
export class MonitorStepProxmoxMonitorUtil {
|
|
18
|
+
static getDefault() {
|
|
19
|
+
return {
|
|
20
|
+
clusterIdentifier: "",
|
|
21
|
+
resourceFilters: {},
|
|
22
|
+
metricViewConfig: {
|
|
23
|
+
queryConfigs: [],
|
|
24
|
+
formulaConfigs: [],
|
|
25
|
+
},
|
|
26
|
+
rollingTime: RollingTime.Past1Minute,
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
static fromJSON(json) {
|
|
30
|
+
return json;
|
|
31
|
+
}
|
|
32
|
+
static toJSON(monitor) {
|
|
33
|
+
return monitor;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=MonitorStepProxmoxMonitor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MonitorStepProxmoxMonitor.js","sourceRoot":"","sources":["../../../../Types/Monitor/MonitorStepProxmoxMonitor.ts"],"names":[],"mappings":"AAEA,OAAO,WAAW,MAAM,4BAA4B,CAAC;AAErD;;;;;;;GAOG;AACH,MAAM,CAAN,IAAY,oBAKX;AALD,WAAY,oBAAoB;IAC9B,2CAAmB,CAAA;IACnB,qCAAa,CAAA;IACb,uCAAe,CAAA;IACf,2CAAmB,CAAA;AACrB,CAAC,EALW,oBAAoB,KAApB,oBAAoB,QAK/B;AA2CD,MAAM,OAAO,6BAA6B;IACjC,MAAM,CAAC,UAAU;QACtB,OAAO;YACL,iBAAiB,EAAE,EAAE;YACrB,eAAe,EAAE,EAAE;YACnB,gBAAgB,EAAE;gBAChB,YAAY,EAAE,EAAE;gBAChB,cAAc,EAAE,EAAE;aACnB;YACD,WAAW,EAAE,WAAW,CAAC,WAAW;SACrC,CAAC;IACJ,CAAC;IAEM,MAAM,CAAC,QAAQ,CAAC,IAAgB;QACrC,OAAO,IAAwC,CAAC;IAClD,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,OAAkC;QACrD,OAAO,OAA4B,CAAC;IACtC,CAAC;CACF"}
|
|
@@ -8,6 +8,8 @@ var MonitorType;
|
|
|
8
8
|
MonitorType["Ping"] = "Ping";
|
|
9
9
|
MonitorType["Kubernetes"] = "Kubernetes";
|
|
10
10
|
MonitorType["Docker"] = "Docker";
|
|
11
|
+
MonitorType["Proxmox"] = "Proxmox";
|
|
12
|
+
MonitorType["Ceph"] = "Ceph";
|
|
11
13
|
MonitorType["IP"] = "IP";
|
|
12
14
|
MonitorType["IncomingRequest"] = "Incoming Request";
|
|
13
15
|
MonitorType["IncomingEmail"] = "Incoming Email";
|
|
@@ -78,6 +80,14 @@ export class MonitorTypeHelper {
|
|
|
78
80
|
label: "Docker",
|
|
79
81
|
monitorTypes: [MonitorType.Docker],
|
|
80
82
|
},
|
|
83
|
+
{
|
|
84
|
+
label: "Proxmox",
|
|
85
|
+
monitorTypes: [MonitorType.Proxmox],
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
label: "Ceph",
|
|
89
|
+
monitorTypes: [MonitorType.Ceph],
|
|
90
|
+
},
|
|
81
91
|
{
|
|
82
92
|
label: "Telemetry",
|
|
83
93
|
monitorTypes: [
|
|
@@ -108,7 +118,9 @@ export class MonitorTypeHelper {
|
|
|
108
118
|
monitorType === MonitorType.Exceptions ||
|
|
109
119
|
monitorType === MonitorType.Profiles ||
|
|
110
120
|
monitorType === MonitorType.Kubernetes ||
|
|
111
|
-
monitorType === MonitorType.Docker
|
|
121
|
+
monitorType === MonitorType.Docker ||
|
|
122
|
+
monitorType === MonitorType.Proxmox ||
|
|
123
|
+
monitorType === MonitorType.Ceph);
|
|
112
124
|
}
|
|
113
125
|
static isManualMonitor(monitorType) {
|
|
114
126
|
return monitorType === MonitorType.Manual;
|
|
@@ -151,6 +163,18 @@ export class MonitorTypeHelper {
|
|
|
151
163
|
description: "This monitor type lets you monitor Docker containers — CPU, memory, network, restarts, and lifecycle events.",
|
|
152
164
|
icon: IconProp.Cube,
|
|
153
165
|
},
|
|
166
|
+
{
|
|
167
|
+
monitorType: MonitorType.Proxmox,
|
|
168
|
+
title: "Proxmox",
|
|
169
|
+
description: "This monitor type lets you monitor Proxmox VE clusters — node availability, VM and container (guest) health, CPU, memory, storage, and HA state.",
|
|
170
|
+
icon: IconProp.ServerStack,
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
monitorType: MonitorType.Ceph,
|
|
174
|
+
title: "Ceph",
|
|
175
|
+
description: "This monitor type lets you monitor Ceph storage clusters — cluster health, monitor quorum, OSD availability, pool capacity, and placement group states.",
|
|
176
|
+
icon: IconProp.Database,
|
|
177
|
+
},
|
|
154
178
|
{
|
|
155
179
|
monitorType: MonitorType.IP,
|
|
156
180
|
title: "IP",
|
|
@@ -321,6 +345,8 @@ export class MonitorTypeHelper {
|
|
|
321
345
|
MonitorType.ExternalStatusPage,
|
|
322
346
|
MonitorType.Kubernetes,
|
|
323
347
|
MonitorType.Docker,
|
|
348
|
+
MonitorType.Proxmox,
|
|
349
|
+
MonitorType.Ceph,
|
|
324
350
|
];
|
|
325
351
|
}
|
|
326
352
|
static doesMonitorTypeHaveDocumentation(monitorType) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MonitorType.js","sourceRoot":"","sources":["../../../../Types/Monitor/MonitorType.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,+BAA+B,CAAC;AAC7D,OAAO,QAAQ,MAAM,kBAAkB,CAAC;AAExC,IAAK,
|
|
1
|
+
{"version":3,"file":"MonitorType.js","sourceRoot":"","sources":["../../../../Types/Monitor/MonitorType.ts"],"names":[],"mappings":"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"}
|