-
Notifications
You must be signed in to change notification settings - Fork 53
/
streams.go
26 lines (24 loc) · 1.24 KB
/
streams.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package shared
// Jetstream streams
const (
// global streams
AgentClusterHealthStatusStream = "agent-cluster-health-status"
AgentClusterHealthStatusSubjects = "agent-cluster-health-status.*"
AgentClusterHealthStatusDurableReplay = "agent-cluster-health-status-consumer"
//streams
AgentDisconnectStream = "opni_alerting_agent"
AgentDisconnectStreamSubjects = "opni_alerting_agent.*"
AgentHealthStream = "opni_alerting_health"
AgentHealthStreamSubjects = "opni_alerting_health.*"
CortexStatusStream = "opni_alerting_cortex_status"
CortexStatusStreamSubjects = "opni_alerting_cortex_status.*"
// buckets
AlertingConditionBucket = "opni-alerting-condition-bucket"
AlertingEndpointBucket = "opni-alerting-endpoint-bucket"
AgentDisconnectBucket = "opni-alerting-agent-bucket"
AgentStatusBucket = "opni-alerting-agent-status-bucket"
StatusBucketPerCondition = "opni-alerting-condition-status-bucket"
StatusBucketPerClusterInternalType = "opni-alerting-cluster-condition-type-status-bucket"
GeneralIncidentStorage = "opni-alerting-general-incident-bucket"
RouterStorage = "opni-alerting-router-bucket"
)