Health monitoring: - gitserver: /health endpoint on port 8021 (DB + Redis ping) - git-hook: hyper health server on port 8083 with /health - email-worker: hyper health server on port 8084 with /health - K8s probes updated to httpGet for all three services Metrics (via /metrics endpoint): - git-hook: hook_tasks_total/success/failed/locked/retried/exhausted, hook_sync_branches/tags_changed_total - email: email_queued/consumed/sent/failed_total, email_validation_skipped/build_errors/send_attempts_total
36 lines
994 B
TOML
36 lines
994 B
TOML
[package]
|
|
name = "queue"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
name = "queue"
|
|
|
|
[dependencies]
|
|
redis = { workspace = true }
|
|
deadpool-redis = { workspace = true, features = ["rt_tokio_1", "cluster-async", "cluster"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "sync", "time"] }
|
|
tokio-stream = { workspace = true }
|
|
futures = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true, features = ["v7", "v4", "serde"] }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
tracing = { workspace = true }
|
|
metrics = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|