diff --git a/pkg/worker/handler/build/detail.go b/pkg/worker/handler/build/detail.go index 99f749f..85f075c 100644 --- a/pkg/worker/handler/build/detail.go +++ b/pkg/worker/handler/build/detail.go @@ -26,6 +26,12 @@ func (h *Handler) detail() ([]detail, error) { check: "go-build", image: "docker-push", }, + { + repo: "pulsar", + label: "pulsar", + check: "go-build", + image: "docker-push", + }, { repo: "specta", label: "specta", diff --git a/pkg/worker/handler/build/handler.go b/pkg/worker/handler/build/handler.go index 9470a51..bac6a20 100644 --- a/pkg/worker/handler/build/handler.go +++ b/pkg/worker/handler/build/handler.go @@ -59,7 +59,7 @@ func New(c Config) *Handler { Des: "the total amount of build container executions", Lab: map[string][]string{ "platform": {"github"}, - "repository": {"kayron", "server", "specta", "splits-lite"}, + "repository": {"kayron", "pulsar", "server", "specta", "splits-lite"}, "success": {"true", "false"}, "workflow": {"check", "image"}, }, @@ -77,7 +77,7 @@ func New(c Config) *Handler { Des: "the time it takes for build container executions to complete", Lab: map[string][]string{ "platform": {"github"}, - "repository": {"kayron", "server", "specta", "splits-lite"}, + "repository": {"kayron", "pulsar", "server", "specta", "splits-lite"}, "success": {"true", "false"}, "workflow": {"check", "image"}, }, diff --git a/pkg/worker/handler/container/handler.go b/pkg/worker/handler/container/handler.go index 2fbc4f6..b0f7670 100644 --- a/pkg/worker/handler/container/handler.go +++ b/pkg/worker/handler/container/handler.go @@ -52,7 +52,7 @@ func New(c Config) *Handler { gau[Metric] = recorder.NewGauge(recorder.GaugeConfig{ Des: "the health status of ecs service containers", Lab: map[string][]string{ - "service": {"alloy", "graphql", "kayron", "otel-collector", "server", "specta", "splits-lite", "worker"}, + "service": {"alloy", "graphql", "kayron", "otel-collector", "pulsar", "server", "specta", "splits-lite", "worker"}, }, Met: c.Met, Nam: Metric, diff --git a/pkg/worker/handler/stack/handler.go b/pkg/worker/handler/stack/handler.go index fb9d856..0a65b55 100644 --- a/pkg/worker/handler/stack/handler.go +++ b/pkg/worker/handler/stack/handler.go @@ -26,6 +26,7 @@ var ( "FargateStack": "fargate", "KayronStack": "kayron", "LiteStack": "splits-lite", + "PulsarStack": "pulsar", "RdsStack": "database", "ServerStack": "server", "SpectaStack": "specta", @@ -68,7 +69,7 @@ func New(c Config) *Handler { gau[Metric] = recorder.NewGauge(recorder.GaugeConfig{ Des: "the health status of cloudformation stacks", Lab: map[string][]string{ - "stack": {"root", "alloy", "cache", "database", "deployment", "discovery", "fargate", "kayron", "network", "server", "specta", "splits-lite"}, + "stack": {"root", "alloy", "cache", "database", "deployment", "discovery", "fargate", "kayron", "network", "pulsar", "server", "specta", "splits-lite"}, }, Met: c.Met, Nam: Metric,