@oneuptime/common 11.0.1 → 11.0.3
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 +276 -0
- package/Models/DatabaseModels/AlertLabelRule.ts +38 -0
- package/Models/DatabaseModels/AlertOwnerRule.ts +38 -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/DockerSwarmCluster.ts +989 -0
- package/Models/DatabaseModels/DockerSwarmClusterLabelRule.ts +514 -0
- package/Models/DatabaseModels/DockerSwarmClusterOwnerRule.ts +596 -0
- package/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/DockerSwarmClusterOwnerUser.ts +486 -0
- package/Models/DatabaseModels/DockerSwarmResource.ts +750 -0
- package/Models/DatabaseModels/Host.ts +64 -0
- package/Models/DatabaseModels/Incident.ts +276 -0
- package/Models/DatabaseModels/IncidentLabelRule.ts +38 -0
- package/Models/DatabaseModels/IncidentOwnerRule.ts +38 -0
- package/Models/DatabaseModels/IncidentTemplate.ts +56 -0
- package/Models/DatabaseModels/Index.ts +48 -0
- package/Models/DatabaseModels/PodmanHost.ts +859 -0
- package/Models/DatabaseModels/PodmanHostLabelRule.ts +514 -0
- package/Models/DatabaseModels/PodmanHostOwnerRule.ts +596 -0
- package/Models/DatabaseModels/PodmanHostOwnerTeam.ts +487 -0
- package/Models/DatabaseModels/PodmanHostOwnerUser.ts +486 -0
- package/Models/DatabaseModels/PodmanResource.ts +498 -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 +220 -0
- package/Models/DatabaseModels/ScheduledMaintenanceLabelRule.ts +38 -0
- package/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.ts +38 -0
- package/Models/DatabaseModels/ScheduledMaintenanceTemplate.ts +56 -0
- package/Models/DatabaseModels/TelemetryException.ts +2 -0
- package/Server/API/BillingInvoiceAPI.ts +47 -7
- package/Server/API/CephResourceAPI.ts +134 -0
- package/Server/API/DashboardAPI.ts +135 -0
- package/Server/API/DockerSwarmResourceAPI.ts +137 -0
- package/Server/API/ProjectAPI.ts +15 -0
- package/Server/API/ProxmoxResourceAPI.ts +132 -0
- package/Server/API/ResellerPlanAPI.ts +17 -0
- package/Server/API/TelemetryAPI.ts +8 -1
- package/Server/Infrastructure/GlobalCache.ts +8 -2
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781500000000-AddProxmoxAndCephClusterTables.ts +163 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.ts +3199 -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 +10 -0
- package/Server/Infrastructure/Redis.ts +40 -12
- package/Server/Services/AlertLabelRuleEngineService.ts +29 -0
- package/Server/Services/AlertOwnerRuleEngineService.ts +67 -0
- 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/DockerSwarmClusterLabelRuleEngineService.ts +214 -0
- package/Server/Services/DockerSwarmClusterLabelRuleService.ts +14 -0
- package/Server/Services/DockerSwarmClusterOwnerRuleEngineService.ts +232 -0
- package/Server/Services/DockerSwarmClusterOwnerRuleService.ts +14 -0
- package/Server/Services/DockerSwarmClusterOwnerTeamService.ts +10 -0
- package/Server/Services/DockerSwarmClusterOwnerUserService.ts +10 -0
- package/Server/Services/DockerSwarmClusterService.ts +404 -0
- package/Server/Services/DockerSwarmResourceService.ts +381 -0
- package/Server/Services/ExceptionAggregationService.ts +3 -0
- package/Server/Services/HostService.ts +11 -3
- package/Server/Services/IncidentLabelRuleEngineService.ts +27 -0
- package/Server/Services/IncidentOwnerRuleEngineService.ts +67 -0
- package/Server/Services/IncidentService.ts +11 -0
- package/Server/Services/Index.ts +38 -0
- package/Server/Services/KubernetesClusterService.ts +11 -3
- package/Server/Services/LogAggregationService.ts +3 -0
- package/Server/Services/MetricAggregationService.ts +3 -0
- package/Server/Services/OpenTelemetryIngestService.ts +73 -0
- package/Server/Services/PodmanHostLabelRuleEngineService.ts +198 -0
- package/Server/Services/PodmanHostLabelRuleService.ts +14 -0
- package/Server/Services/PodmanHostOwnerRuleEngineService.ts +216 -0
- package/Server/Services/PodmanHostOwnerRuleService.ts +14 -0
- package/Server/Services/PodmanHostOwnerTeamService.ts +10 -0
- package/Server/Services/PodmanHostOwnerUserService.ts +10 -0
- package/Server/Services/PodmanHostService.ts +368 -0
- package/Server/Services/PodmanResourceService.ts +310 -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/ScheduledMaintenanceLabelRuleEngineService.ts +29 -0
- package/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.ts +67 -0
- package/Server/Services/ServerlessFunctionService.ts +11 -3
- package/Server/Services/TelemetryUsageBillingService.ts +59 -3
- package/Server/Services/TraceAggregationService.ts +3 -0
- package/Server/Types/AnalyticsDatabase/AggregateBy.ts +8 -23
- package/Server/Types/Database/Permissions/OwnerTableRegistry.ts +13 -0
- package/Server/Utils/Monitor/MonitorAlert.ts +55 -0
- package/Server/Utils/Monitor/MonitorClusterContext.ts +158 -0
- package/Server/Utils/Monitor/MonitorCriteriaEvaluator.ts +650 -4
- package/Server/Utils/Monitor/MonitorIncident.ts +175 -7
- package/Server/Utils/Monitor/MonitorMaintenanceSuppression.ts +56 -6
- package/Server/Utils/Monitor/MonitorTemplateUtil.ts +6 -1
- package/Server/Utils/Monitor/SeriesResourceLabels.ts +59 -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/ResourceFacetResolver.ts +49 -0
- package/Server/Utils/Telemetry/Telemetry.ts +10 -0
- package/Server/Utils/Telemetry/TelemetryEntity.ts +107 -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 +14 -0
- package/Tests/Server/Utils/Telemetry/ProxmoxCephSnapshotScan.test.ts +879 -0
- package/Tests/Server/Utils/Telemetry/TelemetryEntity.test.ts +196 -0
- package/Tests/Types/DockerSwarm/DockerSwarmInventoryExtractor.test.ts +667 -0
- package/Tests/Types/Monitor/CephAlertTemplates.test.ts +1231 -0
- package/Tests/Types/Monitor/DockerSwarmAlertTemplates.test.ts +528 -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 +11 -0
- package/Types/Dashboard/DashboardComponents/ComponentArgument.ts +4 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent.ts +14 -0
- package/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.ts +16 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.ts +16 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.ts +15 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxGuestListComponent.ts +17 -0
- package/Types/Dashboard/DashboardComponents/DashboardProxmoxNodeListComponent.ts +16 -0
- package/Types/Dashboard/DashboardTemplates.ts +640 -0
- package/Types/DockerSwarm/DockerSwarmInventoryExtractor.ts +452 -0
- package/Types/Icon/IconProp.ts +3 -0
- package/Types/Monitor/CephAlertTemplates.ts +1647 -0
- package/Types/Monitor/CephMetricCatalog.ts +409 -0
- package/Types/Monitor/DockerSwarmAlertTemplates.ts +461 -0
- package/Types/Monitor/DockerSwarmMetricCatalog.ts +139 -0
- package/Types/Monitor/HostAlertTemplates.ts +455 -0
- package/Types/Monitor/HostMetricCatalog.ts +177 -0
- package/Types/Monitor/MetricMonitor/MetricMonitorResponse.ts +65 -0
- package/Types/Monitor/MonitorStep.ts +163 -0
- package/Types/Monitor/MonitorStepCephMonitor.ts +57 -0
- package/Types/Monitor/MonitorStepDockerSwarmMonitor.ts +74 -0
- package/Types/Monitor/MonitorStepHostMonitor.ts +30 -0
- package/Types/Monitor/MonitorStepPodmanMonitor.ts +38 -0
- package/Types/Monitor/MonitorStepProxmoxMonitor.ts +81 -0
- package/Types/Monitor/MonitorType.ts +71 -1
- package/Types/Monitor/PodmanAlertTemplates.ts +507 -0
- package/Types/Monitor/PodmanMetricCatalog.ts +226 -0
- package/Types/Monitor/ProxmoxAlertTemplates.ts +899 -0
- package/Types/Monitor/ProxmoxMetricCatalog.ts +382 -0
- package/Types/Permission.ts +1029 -104
- package/Types/Podman/PodmanInventoryExtractor.ts +343 -0
- package/Types/Telemetry/EntityType.ts +23 -0
- package/Types/Telemetry/ServiceType.ts +4 -0
- package/UI/Components/Icon/Icon.tsx +141 -0
- package/UI/Components/LogsViewer/LogsViewer.tsx +44 -1
- package/UI/Components/LogsViewer/components/LogsFacetSidebar.tsx +28 -0
- package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +15 -5
- package/UI/Utils/Telemetry/Telemetry.ts +16 -21
- package/UI/Utils/TelemetryService.ts +8 -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/DashboardDockerSwarmNodeListComponent.ts +70 -0
- package/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.ts +61 -0
- package/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.ts +71 -0
- package/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.ts +100 -0
- package/Utils/Dashboard/Components/DashboardPodmanHostListComponent.ts +88 -0
- package/Utils/Dashboard/Components/DashboardPodmanImageListComponent.ts +97 -0
- package/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.ts +87 -0
- package/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.ts +87 -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 +79 -0
- package/Utils/Telemetry/EntityKey.ts +53 -0
- package/Utils/Telemetry/EntityRelationship.ts +6 -0
- package/Utils/Telemetry/HeartbeatAvailability.ts +262 -0
- package/build/dist/Models/DatabaseModels/Alert.js +270 -0
- package/build/dist/Models/DatabaseModels/Alert.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AlertLabelRule.js +39 -0
- package/build/dist/Models/DatabaseModels/AlertLabelRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/AlertOwnerRule.js +39 -0
- package/build/dist/Models/DatabaseModels/AlertOwnerRule.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/DockerSwarmCluster.js +1018 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmCluster.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmClusterOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmResource.js +787 -0
- package/build/dist/Models/DatabaseModels/DockerSwarmResource.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 +270 -0
- package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentLabelRule.js +39 -0
- package/build/dist/Models/DatabaseModels/IncidentLabelRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentOwnerRule.js +39 -0
- package/build/dist/Models/DatabaseModels/IncidentOwnerRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/IncidentTemplate.js +54 -0
- package/build/dist/Models/DatabaseModels/IncidentTemplate.js.map +1 -1
- package/build/dist/Models/DatabaseModels/Index.js +48 -0
- package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
- package/build/dist/Models/DatabaseModels/PodmanHost.js +885 -0
- package/build/dist/Models/DatabaseModels/PodmanHost.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostLabelRule.js +522 -0
- package/build/dist/Models/DatabaseModels/PodmanHostLabelRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerRule.js +603 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerRule.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerTeam.js +503 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerTeam.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerUser.js +502 -0
- package/build/dist/Models/DatabaseModels/PodmanHostOwnerUser.js.map +1 -0
- package/build/dist/Models/DatabaseModels/PodmanResource.js +526 -0
- package/build/dist/Models/DatabaseModels/PodmanResource.js.map +1 -0
- 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 +216 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceLabelRule.js +39 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceLabelRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.js +39 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceOwnerRule.js.map +1 -1
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js +54 -0
- package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js.map +1 -1
- package/build/dist/Models/DatabaseModels/TelemetryException.js +2 -0
- package/build/dist/Models/DatabaseModels/TelemetryException.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 +135 -0
- package/build/dist/Server/API/DashboardAPI.js.map +1 -1
- package/build/dist/Server/API/DockerSwarmResourceAPI.js +100 -0
- package/build/dist/Server/API/DockerSwarmResourceAPI.js.map +1 -0
- 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/API/TelemetryAPI.js +8 -1
- package/build/dist/Server/API/TelemetryAPI.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/1781587937032-MigrationName.js +1100 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1781587937032-MigrationName.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 +10 -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/AlertLabelRuleEngineService.js +30 -4
- package/build/dist/Server/Services/AlertLabelRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/AlertOwnerRuleEngineService.js +62 -5
- package/build/dist/Server/Services/AlertOwnerRuleEngineService.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/DockerSwarmClusterLabelRuleEngineService.js +168 -0
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleService.js +13 -0
- package/build/dist/Server/Services/DockerSwarmClusterLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleEngineService.js +188 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerUserService.js +9 -0
- package/build/dist/Server/Services/DockerSwarmClusterOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmClusterService.js +353 -0
- package/build/dist/Server/Services/DockerSwarmClusterService.js.map +1 -0
- package/build/dist/Server/Services/DockerSwarmResourceService.js +258 -0
- package/build/dist/Server/Services/DockerSwarmResourceService.js.map +1 -0
- package/build/dist/Server/Services/ExceptionAggregationService.js +3 -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/IncidentLabelRuleEngineService.js +28 -4
- package/build/dist/Server/Services/IncidentLabelRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/IncidentOwnerRuleEngineService.js +62 -5
- package/build/dist/Server/Services/IncidentOwnerRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/IncidentService.js +8 -0
- package/build/dist/Server/Services/IncidentService.js.map +1 -1
- package/build/dist/Server/Services/Index.js +38 -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 +3 -0
- package/build/dist/Server/Services/LogAggregationService.js.map +1 -1
- package/build/dist/Server/Services/MetricAggregationService.js +3 -0
- package/build/dist/Server/Services/MetricAggregationService.js.map +1 -1
- package/build/dist/Server/Services/OpenTelemetryIngestService.js +69 -9
- package/build/dist/Server/Services/OpenTelemetryIngestService.js.map +1 -1
- package/build/dist/Server/Services/PodmanHostLabelRuleEngineService.js +166 -0
- package/build/dist/Server/Services/PodmanHostLabelRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostLabelRuleService.js +13 -0
- package/build/dist/Server/Services/PodmanHostLabelRuleService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleEngineService.js +186 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleEngineService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleService.js +13 -0
- package/build/dist/Server/Services/PodmanHostOwnerRuleService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerTeamService.js +9 -0
- package/build/dist/Server/Services/PodmanHostOwnerTeamService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostOwnerUserService.js +9 -0
- package/build/dist/Server/Services/PodmanHostOwnerUserService.js.map +1 -0
- package/build/dist/Server/Services/PodmanHostService.js +319 -0
- package/build/dist/Server/Services/PodmanHostService.js.map +1 -0
- package/build/dist/Server/Services/PodmanResourceService.js +196 -0
- package/build/dist/Server/Services/PodmanResourceService.js.map +1 -0
- 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/ScheduledMaintenanceLabelRuleEngineService.js +30 -4
- package/build/dist/Server/Services/ScheduledMaintenanceLabelRuleEngineService.js.map +1 -1
- package/build/dist/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.js +62 -5
- package/build/dist/Server/Services/ScheduledMaintenanceOwnerRuleEngineService.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 +43 -3
- package/build/dist/Server/Services/TelemetryUsageBillingService.js.map +1 -1
- package/build/dist/Server/Services/TraceAggregationService.js +3 -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/Types/Database/Permissions/OwnerTableRegistry.js +13 -0
- package/build/dist/Server/Types/Database/Permissions/OwnerTableRegistry.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js +44 -0
- package/build/dist/Server/Utils/Monitor/MonitorAlert.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js +118 -0
- package/build/dist/Server/Utils/Monitor/MonitorClusterContext.js.map +1 -0
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js +422 -4
- package/build/dist/Server/Utils/Monitor/MonitorCriteriaEvaluator.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js +137 -8
- package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js +32 -6
- package/build/dist/Server/Utils/Monitor/MonitorMaintenanceSuppression.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +6 -1
- package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
- package/build/dist/Server/Utils/Monitor/SeriesResourceLabels.js +39 -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/ResourceFacetResolver.js +30 -0
- package/build/dist/Server/Utils/Telemetry/ResourceFacetResolver.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/Telemetry.js +6 -0
- package/build/dist/Server/Utils/Telemetry/Telemetry.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/TelemetryEntity.js +80 -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 +11 -0
- package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -1
- package/build/dist/Types/Dashboard/DashboardComponents/ComponentArgument.js +4 -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/DashboardDockerSwarmNodeListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanHostListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanImageListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanNetworkListComponent.js.map +1 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.js +2 -0
- package/build/dist/Types/Dashboard/DashboardComponents/DashboardPodmanVolumeListComponent.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 +562 -0
- package/build/dist/Types/Dashboard/DashboardTemplates.js.map +1 -1
- package/build/dist/Types/DockerSwarm/DockerSwarmInventoryExtractor.js +359 -0
- package/build/dist/Types/DockerSwarm/DockerSwarmInventoryExtractor.js.map +1 -0
- package/build/dist/Types/Icon/IconProp.js +3 -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/DockerSwarmAlertTemplates.js +358 -0
- package/build/dist/Types/Monitor/DockerSwarmAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/DockerSwarmMetricCatalog.js +103 -0
- package/build/dist/Types/Monitor/DockerSwarmMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/HostAlertTemplates.js +365 -0
- package/build/dist/Types/Monitor/HostAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/HostMetricCatalog.js +138 -0
- package/build/dist/Types/Monitor/HostMetricCatalog.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStep.js +115 -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/MonitorStepDockerSwarmMonitor.js +21 -0
- package/build/dist/Types/Monitor/MonitorStepDockerSwarmMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepHostMonitor.js +20 -0
- package/build/dist/Types/Monitor/MonitorStepHostMonitor.js.map +1 -0
- package/build/dist/Types/Monitor/MonitorStepPodmanMonitor.js +21 -0
- package/build/dist/Types/Monitor/MonitorStepPodmanMonitor.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 +66 -1
- package/build/dist/Types/Monitor/MonitorType.js.map +1 -1
- package/build/dist/Types/Monitor/PodmanAlertTemplates.js +410 -0
- package/build/dist/Types/Monitor/PodmanAlertTemplates.js.map +1 -0
- package/build/dist/Types/Monitor/PodmanMetricCatalog.js +192 -0
- package/build/dist/Types/Monitor/PodmanMetricCatalog.js.map +1 -0
- 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 +824 -0
- package/build/dist/Types/Permission.js.map +1 -1
- package/build/dist/Types/Podman/PodmanInventoryExtractor.js +293 -0
- package/build/dist/Types/Podman/PodmanInventoryExtractor.js.map +1 -0
- package/build/dist/Types/Telemetry/EntityType.js +23 -0
- package/build/dist/Types/Telemetry/EntityType.js.map +1 -1
- package/build/dist/Types/Telemetry/ServiceType.js +4 -0
- package/build/dist/Types/Telemetry/ServiceType.js.map +1 -1
- package/build/dist/UI/Components/Icon/Icon.js +49 -0
- package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js +30 -2
- package/build/dist/UI/Components/LogsViewer/LogsViewer.js.map +1 -1
- package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js +22 -0
- package/build/dist/UI/Components/LogsViewer/components/LogsFacetSidebar.js.map +1 -1
- package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +11 -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 +6 -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/DashboardDockerSwarmNodeListComponent.js +55 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmNodeListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.js +46 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmResourceListShared.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.js +55 -0
- package/build/dist/Utils/Dashboard/Components/DashboardDockerSwarmServiceListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.js +77 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanContainerListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanHostListComponent.js +71 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanHostListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanImageListComponent.js +77 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanImageListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.js +68 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanNetworkListComponent.js.map +1 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.js +68 -0
- package/build/dist/Utils/Dashboard/Components/DashboardPodmanVolumeListComponent.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 +44 -0
- package/build/dist/Utils/Dashboard/Components/Index.js.map +1 -1
- package/build/dist/Utils/Telemetry/EntityKey.js +41 -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
|
@@ -9,6 +9,7 @@ import FacetSection from "./FacetSection";
|
|
|
9
9
|
import Service from "../../../../Models/DatabaseModels/Service";
|
|
10
10
|
import Host from "../../../../Models/DatabaseModels/Host";
|
|
11
11
|
import DockerHost from "../../../../Models/DatabaseModels/DockerHost";
|
|
12
|
+
import PodmanHost from "../../../../Models/DatabaseModels/PodmanHost";
|
|
12
13
|
import KubernetesCluster from "../../../../Models/DatabaseModels/KubernetesCluster";
|
|
13
14
|
import Dictionary from "../../../../Types/Dictionary";
|
|
14
15
|
import ComponentLoader from "../../ComponentLoader/ComponentLoader";
|
|
@@ -21,6 +22,7 @@ export interface LogsFacetSidebarProps {
|
|
|
21
22
|
serviceMap: Dictionary<Service>;
|
|
22
23
|
hostMap?: Dictionary<Host>;
|
|
23
24
|
dockerHostMap?: Dictionary<DockerHost>;
|
|
25
|
+
podmanHostMap?: Dictionary<PodmanHost>;
|
|
24
26
|
kubernetesClusterMap?: Dictionary<KubernetesCluster>;
|
|
25
27
|
onIncludeFilter: (facetKey: string, value: string) => void;
|
|
26
28
|
onExcludeFilter: (facetKey: string, value: string) => void;
|
|
@@ -42,6 +44,7 @@ const RESOURCE_FACET_KEYS: ReadonlySet<string> = new Set([
|
|
|
42
44
|
"primaryEntityId",
|
|
43
45
|
"hostId",
|
|
44
46
|
"dockerHostId",
|
|
47
|
+
"podmanHostId",
|
|
45
48
|
"kubernetesClusterId",
|
|
46
49
|
]);
|
|
47
50
|
|
|
@@ -126,6 +129,23 @@ function buildDockerHostDisplayMap(
|
|
|
126
129
|
return map;
|
|
127
130
|
}
|
|
128
131
|
|
|
132
|
+
function buildPodmanHostDisplayMap(
|
|
133
|
+
podmanHostMap: Dictionary<PodmanHost> | undefined,
|
|
134
|
+
): Record<string, string> {
|
|
135
|
+
const map: Record<string, string> = {};
|
|
136
|
+
if (!podmanHostMap) {
|
|
137
|
+
return map;
|
|
138
|
+
}
|
|
139
|
+
for (const [id, podmanHost] of Object.entries(podmanHostMap)) {
|
|
140
|
+
const label: string | undefined =
|
|
141
|
+
podmanHost?.name || podmanHost?.hostIdentifier;
|
|
142
|
+
if (label) {
|
|
143
|
+
map[id] = label;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
return map;
|
|
147
|
+
}
|
|
148
|
+
|
|
129
149
|
function buildClusterDisplayMap(
|
|
130
150
|
clusterMap: Dictionary<KubernetesCluster> | undefined,
|
|
131
151
|
): Record<string, string> {
|
|
@@ -149,6 +169,7 @@ function getFacetTitle(key: string): string {
|
|
|
149
169
|
primaryEntityId: "Service",
|
|
150
170
|
hostId: "Host",
|
|
151
171
|
dockerHostId: "Docker Host",
|
|
172
|
+
podmanHostId: "Podman Host",
|
|
152
173
|
kubernetesClusterId: "Kubernetes Cluster",
|
|
153
174
|
traceId: "Trace ID",
|
|
154
175
|
spanId: "Span ID",
|
|
@@ -180,6 +201,10 @@ const LogsFacetSidebar: FunctionComponent<LogsFacetSidebarProps> = (
|
|
|
180
201
|
return buildDockerHostDisplayMap(props.dockerHostMap);
|
|
181
202
|
}, [props.dockerHostMap]);
|
|
182
203
|
|
|
204
|
+
const podmanHostDisplayMap: Record<string, string> = useMemo(() => {
|
|
205
|
+
return buildPodmanHostDisplayMap(props.podmanHostMap);
|
|
206
|
+
}, [props.podmanHostMap]);
|
|
207
|
+
|
|
183
208
|
const clusterDisplayMap: Record<string, string> = useMemo(() => {
|
|
184
209
|
return buildClusterDisplayMap(props.kubernetesClusterMap);
|
|
185
210
|
}, [props.kubernetesClusterMap]);
|
|
@@ -190,6 +215,7 @@ const LogsFacetSidebar: FunctionComponent<LogsFacetSidebarProps> = (
|
|
|
190
215
|
"primaryEntityId",
|
|
191
216
|
"hostId",
|
|
192
217
|
"dockerHostId",
|
|
218
|
+
"podmanHostId",
|
|
193
219
|
"kubernetesClusterId",
|
|
194
220
|
];
|
|
195
221
|
const otherKeys: Array<string> = Object.keys(props.facetData).filter(
|
|
@@ -287,6 +313,8 @@ const LogsFacetSidebar: FunctionComponent<LogsFacetSidebarProps> = (
|
|
|
287
313
|
valueDisplayMap = hostDisplayMap;
|
|
288
314
|
} else if (key === "dockerHostId") {
|
|
289
315
|
valueDisplayMap = dockerHostDisplayMap;
|
|
316
|
+
} else if (key === "podmanHostId") {
|
|
317
|
+
valueDisplayMap = podmanHostDisplayMap;
|
|
290
318
|
} else if (key === "kubernetesClusterId") {
|
|
291
319
|
valueDisplayMap = clusterDisplayMap;
|
|
292
320
|
} else if (key === "severityText") {
|
|
@@ -32,10 +32,10 @@ export default class TemplateVariablesCatalog {
|
|
|
32
32
|
monitorType: MonitorType;
|
|
33
33
|
/**
|
|
34
34
|
* Attribute keys the user has configured on the metric query
|
|
35
|
-
* (e.g. ["host.name", "region"]). For metric/kubernetes/docker
|
|
36
|
-
* monitors, these become per-series template variables
|
|
37
|
-
* incident fires per unique value combination, and each
|
|
38
|
-
* can reference the label values via `{{host.name}}` etc.
|
|
35
|
+
* (e.g. ["host.name", "region"]). For metric/kubernetes/docker/
|
|
36
|
+
* proxmox/ceph monitors, these become per-series template variables
|
|
37
|
+
* — one incident fires per unique value combination, and each
|
|
38
|
+
* incident can reference the label values via `{{host.name}}` etc.
|
|
39
39
|
*/
|
|
40
40
|
seriesAttributeKeys?: Array<string> | undefined;
|
|
41
41
|
}): Array<TemplateVariableGroup> {
|
|
@@ -52,7 +52,12 @@ export default class TemplateVariablesCatalog {
|
|
|
52
52
|
if (
|
|
53
53
|
input.monitorType === MonitorType.Metrics ||
|
|
54
54
|
input.monitorType === MonitorType.Kubernetes ||
|
|
55
|
-
input.monitorType === MonitorType.Docker
|
|
55
|
+
input.monitorType === MonitorType.Docker ||
|
|
56
|
+
input.monitorType === MonitorType.Host ||
|
|
57
|
+
input.monitorType === MonitorType.Podman ||
|
|
58
|
+
input.monitorType === MonitorType.DockerSwarm ||
|
|
59
|
+
input.monitorType === MonitorType.Proxmox ||
|
|
60
|
+
input.monitorType === MonitorType.Ceph
|
|
56
61
|
) {
|
|
57
62
|
groups.push(
|
|
58
63
|
TemplateVariablesCatalog.seriesLabelsGroup(input.seriesAttributeKeys),
|
|
@@ -485,6 +490,11 @@ export default class TemplateVariablesCatalog {
|
|
|
485
490
|
case MonitorType.Metrics:
|
|
486
491
|
case MonitorType.Kubernetes:
|
|
487
492
|
case MonitorType.Docker:
|
|
493
|
+
case MonitorType.Host:
|
|
494
|
+
case MonitorType.Podman:
|
|
495
|
+
case MonitorType.DockerSwarm:
|
|
496
|
+
case MonitorType.Proxmox:
|
|
497
|
+
case MonitorType.Ceph:
|
|
488
498
|
return {
|
|
489
499
|
title: "Metric",
|
|
490
500
|
variables: [
|
|
@@ -8,14 +8,16 @@ import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";
|
|
|
8
8
|
import { registerInstrumentations } from "@opentelemetry/instrumentation";
|
|
9
9
|
import { FetchInstrumentation } from "@opentelemetry/instrumentation-fetch";
|
|
10
10
|
import { XMLHttpRequestInstrumentation } from "@opentelemetry/instrumentation-xml-http-request";
|
|
11
|
-
import {
|
|
11
|
+
import { resourceFromAttributes } from "@opentelemetry/resources";
|
|
12
12
|
import {
|
|
13
13
|
BatchSpanProcessor,
|
|
14
14
|
TracerConfig,
|
|
15
15
|
WebTracerProvider,
|
|
16
16
|
} from "@opentelemetry/sdk-trace-web";
|
|
17
|
-
import type {
|
|
18
|
-
|
|
17
|
+
import type {
|
|
18
|
+
SpanExporter,
|
|
19
|
+
SpanProcessor,
|
|
20
|
+
} from "@opentelemetry/sdk-trace-base";
|
|
19
21
|
import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions";
|
|
20
22
|
import URL from "../../../Types/API/URL";
|
|
21
23
|
|
|
@@ -87,14 +89,6 @@ export default class Telemetry {
|
|
|
87
89
|
Object.keys(OpenTelemetryExporterOtlpHeaders).length > 0;
|
|
88
90
|
|
|
89
91
|
if (OpenTelemetryExporterOtlpEndpoint && hasHeaders) {
|
|
90
|
-
const providerConfig: TracerConfig = {
|
|
91
|
-
resource: new Resource({
|
|
92
|
-
[ATTR_SERVICE_NAME]: data.serviceName,
|
|
93
|
-
}),
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
const provider: WebTracerProvider = new WebTracerProvider(providerConfig);
|
|
97
|
-
|
|
98
92
|
const traceExporter: SpanExporter = new OTLPTraceExporter({
|
|
99
93
|
url: URL.fromString(
|
|
100
94
|
OpenTelemetryExporterOtlpEndpoint?.toString() + "/v1/traces",
|
|
@@ -102,17 +96,18 @@ export default class Telemetry {
|
|
|
102
96
|
headers: OpenTelemetryExporterOtlpHeaders,
|
|
103
97
|
}) as unknown as SpanExporter;
|
|
104
98
|
|
|
105
|
-
const
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
99
|
+
const providerConfig: TracerConfig = {
|
|
100
|
+
resource: resourceFromAttributes({
|
|
101
|
+
[ATTR_SERVICE_NAME]: data.serviceName,
|
|
102
|
+
}),
|
|
103
|
+
// Stamp global RUM attributes (userId, projectId, ...) onto every span.
|
|
104
|
+
spanProcessors: [
|
|
105
|
+
new BatchSpanProcessor(traceExporter),
|
|
106
|
+
new GlobalAttributeSpanProcessor() as unknown as SpanProcessor,
|
|
107
|
+
],
|
|
108
|
+
};
|
|
109
109
|
|
|
110
|
-
|
|
111
|
-
provider.addSpanProcessor(
|
|
112
|
-
new GlobalAttributeSpanProcessor() as unknown as Parameters<
|
|
113
|
-
WebTracerProvider["addSpanProcessor"]
|
|
114
|
-
>[0],
|
|
115
|
-
);
|
|
110
|
+
const provider: WebTracerProvider = new WebTracerProvider(providerConfig);
|
|
116
111
|
|
|
117
112
|
provider.register({
|
|
118
113
|
contextManager: new ZoneContextManager(),
|
|
@@ -23,7 +23,8 @@ export const UNKNOWN_SERVICE_NAME: string = "Unknown Service";
|
|
|
23
23
|
* primaryEntityType) to something renderable. Either a Service (a real
|
|
24
24
|
* OpenTelemetry service, or the synthetic "Unknown Service" for the
|
|
25
25
|
* unattributed bucket) — or a plain `label` for infrastructure resource
|
|
26
|
-
* types (Host / DockerHost / KubernetesCluster
|
|
26
|
+
* types (Host / DockerHost / KubernetesCluster / ProxmoxCluster /
|
|
27
|
+
* CephCluster) that have no Service row.
|
|
27
28
|
*/
|
|
28
29
|
export interface ResolvedTelemetryResource {
|
|
29
30
|
service?: Service;
|
|
@@ -66,8 +67,9 @@ export default class TelemetryServiceUtil {
|
|
|
66
67
|
* old server-side `service` ORM relation on TelemetryException: a real
|
|
67
68
|
* Service resolves from the loaded list, the unattributed bucket resolves
|
|
68
69
|
* to the synthetic "Unknown Service", and Host / DockerHost /
|
|
69
|
-
* KubernetesCluster resolve to a type
|
|
70
|
-
* them). Mirrors how the ClickHouse
|
|
70
|
+
* KubernetesCluster / ProxmoxCluster / CephCluster resolve to a type
|
|
71
|
+
* label (no Service row exists for them). Mirrors how the ClickHouse
|
|
72
|
+
* analytics rows are resolved.
|
|
71
73
|
*/
|
|
72
74
|
public static resolveTelemetryResource(data: {
|
|
73
75
|
primaryEntityId: ObjectID | string | null | undefined;
|
|
@@ -100,7 +102,10 @@ export default class TelemetryServiceUtil {
|
|
|
100
102
|
const typeLabels: Record<string, string> = {
|
|
101
103
|
[ServiceType.Host]: "Host telemetry",
|
|
102
104
|
[ServiceType.DockerHost]: "Docker host telemetry",
|
|
105
|
+
[ServiceType.PodmanHost]: "Podman host telemetry",
|
|
103
106
|
[ServiceType.KubernetesCluster]: "Kubernetes telemetry",
|
|
107
|
+
[ServiceType.ProxmoxCluster]: "Proxmox Cluster",
|
|
108
|
+
[ServiceType.CephCluster]: "Ceph Cluster",
|
|
104
109
|
};
|
|
105
110
|
const label: string | undefined = data.primaryEntityType
|
|
106
111
|
? typeLabels[data.primaryEntityType.toString()]
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import DashboardCephOsdListComponent from "../../../Types/Dashboard/DashboardComponents/DashboardCephOsdListComponent";
|
|
2
|
+
import { ObjectType } from "../../../Types/JSON";
|
|
3
|
+
import ObjectID from "../../../Types/ObjectID";
|
|
4
|
+
import DashboardBaseComponentUtil from "./DashboardBaseComponent";
|
|
5
|
+
import {
|
|
6
|
+
ComponentArgument,
|
|
7
|
+
ComponentInputType,
|
|
8
|
+
} from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
9
|
+
import DashboardComponentType from "../../../Types/Dashboard/DashboardComponentType";
|
|
10
|
+
import {
|
|
11
|
+
CephFiltersSection,
|
|
12
|
+
getCephCommonArguments,
|
|
13
|
+
} from "./DashboardCephResourceListShared";
|
|
14
|
+
|
|
15
|
+
export default class DashboardCephOsdListComponentUtil extends DashboardBaseComponentUtil {
|
|
16
|
+
public static override getDefaultComponent(): DashboardCephOsdListComponent {
|
|
17
|
+
return {
|
|
18
|
+
_type: ObjectType.DashboardComponent,
|
|
19
|
+
componentType: DashboardComponentType.CephOsdList,
|
|
20
|
+
widthInDashboardUnits: 6,
|
|
21
|
+
heightInDashboardUnits: 4,
|
|
22
|
+
topInDashboardUnits: 0,
|
|
23
|
+
leftInDashboardUnits: 0,
|
|
24
|
+
componentId: ObjectID.generate(),
|
|
25
|
+
minHeightInDashboardUnits: 3,
|
|
26
|
+
minWidthInDashboardUnits: 6,
|
|
27
|
+
arguments: {
|
|
28
|
+
maxRows: 25,
|
|
29
|
+
/*
|
|
30
|
+
* The classic "OSD wall" — a honeycomb where each cell is an
|
|
31
|
+
* OSD colored by up/in state — is the view operators expect
|
|
32
|
+
* for this widget, so honeycomb is the default. The list view
|
|
33
|
+
* stays one dropdown away.
|
|
34
|
+
*/
|
|
35
|
+
viewMode: "honeycomb",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
public static override getComponentConfigArguments(): Array<
|
|
41
|
+
ComponentArgument<DashboardCephOsdListComponent>
|
|
42
|
+
> {
|
|
43
|
+
const args: Array<ComponentArgument<DashboardCephOsdListComponent>> =
|
|
44
|
+
getCephCommonArguments<DashboardCephOsdListComponent>();
|
|
45
|
+
|
|
46
|
+
args.push({
|
|
47
|
+
name: "State",
|
|
48
|
+
description: "Quick filter by OSD up/in state",
|
|
49
|
+
required: false,
|
|
50
|
+
type: ComponentInputType.Dropdown,
|
|
51
|
+
id: "stateFilter",
|
|
52
|
+
section: CephFiltersSection,
|
|
53
|
+
dropdownOptions: [
|
|
54
|
+
{ label: "All", value: "" },
|
|
55
|
+
{ label: "Up only", value: "up" },
|
|
56
|
+
{ label: "Down only", value: "down" },
|
|
57
|
+
{ label: "Out only", value: "out" },
|
|
58
|
+
],
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
return args;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import DashboardCephPoolListComponent from "../../../Types/Dashboard/DashboardComponents/DashboardCephPoolListComponent";
|
|
2
|
+
import { ObjectType } from "../../../Types/JSON";
|
|
3
|
+
import ObjectID from "../../../Types/ObjectID";
|
|
4
|
+
import DashboardBaseComponentUtil from "./DashboardBaseComponent";
|
|
5
|
+
import { ComponentArgument } from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
6
|
+
import DashboardComponentType from "../../../Types/Dashboard/DashboardComponentType";
|
|
7
|
+
import { getCephCommonArguments } from "./DashboardCephResourceListShared";
|
|
8
|
+
|
|
9
|
+
export default class DashboardCephPoolListComponentUtil extends DashboardBaseComponentUtil {
|
|
10
|
+
public static override getDefaultComponent(): DashboardCephPoolListComponent {
|
|
11
|
+
return {
|
|
12
|
+
_type: ObjectType.DashboardComponent,
|
|
13
|
+
componentType: DashboardComponentType.CephPoolList,
|
|
14
|
+
widthInDashboardUnits: 6,
|
|
15
|
+
heightInDashboardUnits: 4,
|
|
16
|
+
topInDashboardUnits: 0,
|
|
17
|
+
leftInDashboardUnits: 0,
|
|
18
|
+
componentId: ObjectID.generate(),
|
|
19
|
+
minHeightInDashboardUnits: 3,
|
|
20
|
+
minWidthInDashboardUnits: 6,
|
|
21
|
+
arguments: {
|
|
22
|
+
maxRows: 25,
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public static override getComponentConfigArguments(): Array<
|
|
28
|
+
ComponentArgument<DashboardCephPoolListComponent>
|
|
29
|
+
> {
|
|
30
|
+
return getCephCommonArguments<DashboardCephPoolListComponent>();
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ComponentArgument,
|
|
3
|
+
ComponentArgumentSection,
|
|
4
|
+
ComponentInputType,
|
|
5
|
+
EntityFilterModelType,
|
|
6
|
+
} from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
7
|
+
import DashboardBaseComponent from "../../../Types/Dashboard/DashboardComponents/DashboardBaseComponent";
|
|
8
|
+
import { getViewModeArgument } from "./DashboardListSharedArgs";
|
|
9
|
+
|
|
10
|
+
export const CephDisplaySection: ComponentArgumentSection = {
|
|
11
|
+
name: "Display Options",
|
|
12
|
+
description: "Configure the widget title and row limit",
|
|
13
|
+
order: 1,
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const CephFiltersSection: ComponentArgumentSection = {
|
|
17
|
+
name: "Filters",
|
|
18
|
+
description: "Narrow down which resources are shown",
|
|
19
|
+
order: 2,
|
|
20
|
+
defaultCollapsed: true,
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export function getCephCommonArguments<
|
|
24
|
+
T extends DashboardBaseComponent,
|
|
25
|
+
>(): Array<ComponentArgument<T>> {
|
|
26
|
+
const args: Array<ComponentArgument<T>> = [];
|
|
27
|
+
|
|
28
|
+
args.push({
|
|
29
|
+
name: "Title",
|
|
30
|
+
description: "Header shown above the list",
|
|
31
|
+
required: false,
|
|
32
|
+
type: ComponentInputType.Text,
|
|
33
|
+
id: "title" as keyof T["arguments"],
|
|
34
|
+
section: CephDisplaySection,
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
args.push({
|
|
38
|
+
name: "Max Rows",
|
|
39
|
+
description: "Maximum number of rows to show",
|
|
40
|
+
required: false,
|
|
41
|
+
type: ComponentInputType.Number,
|
|
42
|
+
id: "maxRows" as keyof T["arguments"],
|
|
43
|
+
placeholder: "25",
|
|
44
|
+
section: CephDisplaySection,
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
args.push(getViewModeArgument<T>(CephDisplaySection));
|
|
48
|
+
|
|
49
|
+
args.push({
|
|
50
|
+
name: "Clusters",
|
|
51
|
+
description: "Show only resources from the selected Ceph clusters",
|
|
52
|
+
required: false,
|
|
53
|
+
type: ComponentInputType.EntityMultiSelectDropdown,
|
|
54
|
+
id: "cephClusterIds" as keyof T["arguments"],
|
|
55
|
+
placeholder: "All clusters",
|
|
56
|
+
section: CephFiltersSection,
|
|
57
|
+
entityFilterModelType: EntityFilterModelType.CephCluster,
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
return args;
|
|
61
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import DashboardDockerSwarmNodeListComponent from "../../../Types/Dashboard/DashboardComponents/DashboardDockerSwarmNodeListComponent";
|
|
2
|
+
import { ObjectType } from "../../../Types/JSON";
|
|
3
|
+
import ObjectID from "../../../Types/ObjectID";
|
|
4
|
+
import DashboardBaseComponentUtil from "./DashboardBaseComponent";
|
|
5
|
+
import {
|
|
6
|
+
ComponentArgument,
|
|
7
|
+
ComponentInputType,
|
|
8
|
+
} from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
9
|
+
import DashboardComponentType from "../../../Types/Dashboard/DashboardComponentType";
|
|
10
|
+
import {
|
|
11
|
+
DockerSwarmFiltersSection,
|
|
12
|
+
getDockerSwarmCommonArguments,
|
|
13
|
+
} from "./DashboardDockerSwarmResourceListShared";
|
|
14
|
+
|
|
15
|
+
export default class DashboardDockerSwarmNodeListComponentUtil extends DashboardBaseComponentUtil {
|
|
16
|
+
public static override getDefaultComponent(): DashboardDockerSwarmNodeListComponent {
|
|
17
|
+
return {
|
|
18
|
+
_type: ObjectType.DashboardComponent,
|
|
19
|
+
componentType: DashboardComponentType.DockerSwarmNodeList,
|
|
20
|
+
widthInDashboardUnits: 6,
|
|
21
|
+
heightInDashboardUnits: 4,
|
|
22
|
+
topInDashboardUnits: 0,
|
|
23
|
+
leftInDashboardUnits: 0,
|
|
24
|
+
componentId: ObjectID.generate(),
|
|
25
|
+
minHeightInDashboardUnits: 3,
|
|
26
|
+
minWidthInDashboardUnits: 6,
|
|
27
|
+
arguments: {
|
|
28
|
+
maxRows: 25,
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
public static override getComponentConfigArguments(): Array<
|
|
34
|
+
ComponentArgument<DashboardDockerSwarmNodeListComponent>
|
|
35
|
+
> {
|
|
36
|
+
const args: Array<
|
|
37
|
+
ComponentArgument<DashboardDockerSwarmNodeListComponent>
|
|
38
|
+
> = getDockerSwarmCommonArguments<DashboardDockerSwarmNodeListComponent>();
|
|
39
|
+
|
|
40
|
+
args.push({
|
|
41
|
+
name: "Role",
|
|
42
|
+
description: "Show only manager nodes or only worker nodes",
|
|
43
|
+
required: false,
|
|
44
|
+
type: ComponentInputType.Dropdown,
|
|
45
|
+
id: "roleFilter",
|
|
46
|
+
section: DockerSwarmFiltersSection,
|
|
47
|
+
dropdownOptions: [
|
|
48
|
+
{ label: "All", value: "" },
|
|
49
|
+
{ label: "Managers only", value: "manager" },
|
|
50
|
+
{ label: "Workers only", value: "worker" },
|
|
51
|
+
],
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
args.push({
|
|
55
|
+
name: "Status",
|
|
56
|
+
description: "Quick filter by node readiness",
|
|
57
|
+
required: false,
|
|
58
|
+
type: ComponentInputType.Dropdown,
|
|
59
|
+
id: "statusFilter",
|
|
60
|
+
section: DockerSwarmFiltersSection,
|
|
61
|
+
dropdownOptions: [
|
|
62
|
+
{ label: "All", value: "" },
|
|
63
|
+
{ label: "Ready only", value: "ready" },
|
|
64
|
+
{ label: "Not ready only", value: "notready" },
|
|
65
|
+
],
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
return args;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ComponentArgument,
|
|
3
|
+
ComponentArgumentSection,
|
|
4
|
+
ComponentInputType,
|
|
5
|
+
EntityFilterModelType,
|
|
6
|
+
} from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
7
|
+
import DashboardBaseComponent from "../../../Types/Dashboard/DashboardComponents/DashboardBaseComponent";
|
|
8
|
+
import { getViewModeArgument } from "./DashboardListSharedArgs";
|
|
9
|
+
|
|
10
|
+
export const DockerSwarmDisplaySection: ComponentArgumentSection = {
|
|
11
|
+
name: "Display Options",
|
|
12
|
+
description: "Configure the widget title and row limit",
|
|
13
|
+
order: 1,
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const DockerSwarmFiltersSection: ComponentArgumentSection = {
|
|
17
|
+
name: "Filters",
|
|
18
|
+
description: "Narrow down which resources are shown",
|
|
19
|
+
order: 2,
|
|
20
|
+
defaultCollapsed: true,
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export function getDockerSwarmCommonArguments<
|
|
24
|
+
T extends DashboardBaseComponent,
|
|
25
|
+
>(): Array<ComponentArgument<T>> {
|
|
26
|
+
const args: Array<ComponentArgument<T>> = [];
|
|
27
|
+
|
|
28
|
+
args.push({
|
|
29
|
+
name: "Title",
|
|
30
|
+
description: "Header shown above the list",
|
|
31
|
+
required: false,
|
|
32
|
+
type: ComponentInputType.Text,
|
|
33
|
+
id: "title" as keyof T["arguments"],
|
|
34
|
+
section: DockerSwarmDisplaySection,
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
args.push({
|
|
38
|
+
name: "Max Rows",
|
|
39
|
+
description: "Maximum number of rows to show",
|
|
40
|
+
required: false,
|
|
41
|
+
type: ComponentInputType.Number,
|
|
42
|
+
id: "maxRows" as keyof T["arguments"],
|
|
43
|
+
placeholder: "25",
|
|
44
|
+
section: DockerSwarmDisplaySection,
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
args.push(getViewModeArgument<T>(DockerSwarmDisplaySection));
|
|
48
|
+
|
|
49
|
+
args.push({
|
|
50
|
+
name: "Clusters",
|
|
51
|
+
description: "Show only resources from the selected Docker Swarm clusters",
|
|
52
|
+
required: false,
|
|
53
|
+
type: ComponentInputType.EntityMultiSelectDropdown,
|
|
54
|
+
id: "dockerSwarmClusterIds" as keyof T["arguments"],
|
|
55
|
+
placeholder: "All clusters",
|
|
56
|
+
section: DockerSwarmFiltersSection,
|
|
57
|
+
entityFilterModelType: EntityFilterModelType.DockerSwarmCluster,
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
return args;
|
|
61
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import DashboardDockerSwarmServiceListComponent from "../../../Types/Dashboard/DashboardComponents/DashboardDockerSwarmServiceListComponent";
|
|
2
|
+
import { ObjectType } from "../../../Types/JSON";
|
|
3
|
+
import ObjectID from "../../../Types/ObjectID";
|
|
4
|
+
import DashboardBaseComponentUtil from "./DashboardBaseComponent";
|
|
5
|
+
import {
|
|
6
|
+
ComponentArgument,
|
|
7
|
+
ComponentInputType,
|
|
8
|
+
} from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
9
|
+
import DashboardComponentType from "../../../Types/Dashboard/DashboardComponentType";
|
|
10
|
+
import {
|
|
11
|
+
DockerSwarmFiltersSection,
|
|
12
|
+
getDockerSwarmCommonArguments,
|
|
13
|
+
} from "./DashboardDockerSwarmResourceListShared";
|
|
14
|
+
|
|
15
|
+
export default class DashboardDockerSwarmServiceListComponentUtil extends DashboardBaseComponentUtil {
|
|
16
|
+
public static override getDefaultComponent(): DashboardDockerSwarmServiceListComponent {
|
|
17
|
+
return {
|
|
18
|
+
_type: ObjectType.DashboardComponent,
|
|
19
|
+
componentType: DashboardComponentType.DockerSwarmServiceList,
|
|
20
|
+
widthInDashboardUnits: 6,
|
|
21
|
+
heightInDashboardUnits: 4,
|
|
22
|
+
topInDashboardUnits: 0,
|
|
23
|
+
leftInDashboardUnits: 0,
|
|
24
|
+
componentId: ObjectID.generate(),
|
|
25
|
+
minHeightInDashboardUnits: 3,
|
|
26
|
+
minWidthInDashboardUnits: 6,
|
|
27
|
+
arguments: {
|
|
28
|
+
maxRows: 25,
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
public static override getComponentConfigArguments(): Array<
|
|
34
|
+
ComponentArgument<DashboardDockerSwarmServiceListComponent>
|
|
35
|
+
> {
|
|
36
|
+
const args: Array<
|
|
37
|
+
ComponentArgument<DashboardDockerSwarmServiceListComponent>
|
|
38
|
+
> =
|
|
39
|
+
getDockerSwarmCommonArguments<DashboardDockerSwarmServiceListComponent>();
|
|
40
|
+
|
|
41
|
+
args.push({
|
|
42
|
+
name: "Service Mode",
|
|
43
|
+
description: "Show only replicated services or only global services",
|
|
44
|
+
required: false,
|
|
45
|
+
type: ComponentInputType.Dropdown,
|
|
46
|
+
id: "serviceModeFilter",
|
|
47
|
+
section: DockerSwarmFiltersSection,
|
|
48
|
+
dropdownOptions: [
|
|
49
|
+
{ label: "All", value: "" },
|
|
50
|
+
{ label: "Replicated only", value: "replicated" },
|
|
51
|
+
{ label: "Global only", value: "global" },
|
|
52
|
+
],
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
args.push({
|
|
56
|
+
name: "Status",
|
|
57
|
+
description: "Quick filter by whether the service is fully converged",
|
|
58
|
+
required: false,
|
|
59
|
+
type: ComponentInputType.Dropdown,
|
|
60
|
+
id: "statusFilter",
|
|
61
|
+
section: DockerSwarmFiltersSection,
|
|
62
|
+
dropdownOptions: [
|
|
63
|
+
{ label: "All", value: "" },
|
|
64
|
+
{ label: "Converged only", value: "converged" },
|
|
65
|
+
{ label: "Not converged only", value: "notconverged" },
|
|
66
|
+
],
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
return args;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import DashboardPodmanContainerListComponent from "../../../Types/Dashboard/DashboardComponents/DashboardPodmanContainerListComponent";
|
|
2
|
+
import { ObjectType } from "../../../Types/JSON";
|
|
3
|
+
import ObjectID from "../../../Types/ObjectID";
|
|
4
|
+
import DashboardBaseComponentUtil from "./DashboardBaseComponent";
|
|
5
|
+
import {
|
|
6
|
+
ComponentArgument,
|
|
7
|
+
ComponentArgumentSection,
|
|
8
|
+
ComponentInputType,
|
|
9
|
+
EntityFilterModelType,
|
|
10
|
+
} from "../../../Types/Dashboard/DashboardComponents/ComponentArgument";
|
|
11
|
+
import DashboardComponentType from "../../../Types/Dashboard/DashboardComponentType";
|
|
12
|
+
import { getViewModeArgument } from "./DashboardListSharedArgs";
|
|
13
|
+
|
|
14
|
+
const DisplaySection: ComponentArgumentSection = {
|
|
15
|
+
name: "Display Options",
|
|
16
|
+
description: "Configure the widget title and row limit",
|
|
17
|
+
order: 1,
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const FiltersSection: ComponentArgumentSection = {
|
|
21
|
+
name: "Filters",
|
|
22
|
+
description: "Narrow down which containers are shown",
|
|
23
|
+
order: 2,
|
|
24
|
+
defaultCollapsed: true,
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export default class DashboardPodmanContainerListComponentUtil extends DashboardBaseComponentUtil {
|
|
28
|
+
public static override getDefaultComponent(): DashboardPodmanContainerListComponent {
|
|
29
|
+
return {
|
|
30
|
+
_type: ObjectType.DashboardComponent,
|
|
31
|
+
componentType: DashboardComponentType.PodmanContainerList,
|
|
32
|
+
widthInDashboardUnits: 6,
|
|
33
|
+
heightInDashboardUnits: 4,
|
|
34
|
+
topInDashboardUnits: 0,
|
|
35
|
+
leftInDashboardUnits: 0,
|
|
36
|
+
componentId: ObjectID.generate(),
|
|
37
|
+
minHeightInDashboardUnits: 3,
|
|
38
|
+
minWidthInDashboardUnits: 6,
|
|
39
|
+
arguments: {
|
|
40
|
+
maxRows: 25,
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
public static override getComponentConfigArguments(): Array<
|
|
46
|
+
ComponentArgument<DashboardPodmanContainerListComponent>
|
|
47
|
+
> {
|
|
48
|
+
const args: Array<
|
|
49
|
+
ComponentArgument<DashboardPodmanContainerListComponent>
|
|
50
|
+
> = [];
|
|
51
|
+
|
|
52
|
+
args.push({
|
|
53
|
+
name: "Title",
|
|
54
|
+
description: "Header shown above the container list",
|
|
55
|
+
required: false,
|
|
56
|
+
type: ComponentInputType.Text,
|
|
57
|
+
id: "title",
|
|
58
|
+
section: DisplaySection,
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
args.push({
|
|
62
|
+
name: "Max Rows",
|
|
63
|
+
description: "Maximum number of containers to show",
|
|
64
|
+
required: false,
|
|
65
|
+
type: ComponentInputType.Number,
|
|
66
|
+
id: "maxRows",
|
|
67
|
+
placeholder: "25",
|
|
68
|
+
section: DisplaySection,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
args.push(
|
|
72
|
+
getViewModeArgument<DashboardPodmanContainerListComponent>(
|
|
73
|
+
DisplaySection,
|
|
74
|
+
),
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
args.push({
|
|
78
|
+
name: "Hosts",
|
|
79
|
+
description: "Show only containers from the selected hosts",
|
|
80
|
+
required: false,
|
|
81
|
+
type: ComponentInputType.EntityMultiSelectDropdown,
|
|
82
|
+
id: "podmanHostIds",
|
|
83
|
+
placeholder: "All hosts",
|
|
84
|
+
section: FiltersSection,
|
|
85
|
+
entityFilterModelType: EntityFilterModelType.PodmanHost,
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
args.push({
|
|
89
|
+
name: "Image Name",
|
|
90
|
+
description: "Substring of the container image to match (e.g. nginx)",
|
|
91
|
+
required: false,
|
|
92
|
+
type: ComponentInputType.Text,
|
|
93
|
+
id: "imageName",
|
|
94
|
+
placeholder: "nginx",
|
|
95
|
+
section: FiltersSection,
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
return args;
|
|
99
|
+
}
|
|
100
|
+
}
|