Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkg/worker/handler/build/detail.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions pkg/worker/handler/build/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
},
Expand All @@ -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"},
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/worker/handler/container/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion pkg/worker/handler/stack/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ var (
"FargateStack": "fargate",
"KayronStack": "kayron",
"LiteStack": "splits-lite",
"PulsarStack": "pulsar",
"RdsStack": "database",
"ServerStack": "server",
"SpectaStack": "specta",
Expand Down Expand Up @@ -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,
Expand Down