-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ability to fetch
SystemHealth
, which is a full actor system hea…
…lth check + the ability to register custom actor implementations to be part of the health check If any of the system actors take longer than 1 second to respond to a `GetStatus`, the health check will report the health status as degraded. If an error is returned from any of the actors, the health check will report it as unhealthy. Health check also provides useful information such as currently active cluster peers and version information.
- Loading branch information
1 parent
86b453d
commit f451999
Showing
28 changed files
with
562 additions
and
153 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "coerce" | ||
description = "Async actor runtime and distributed systems framework" | ||
license = "Apache-2.0" | ||
version = "0.8.2" | ||
version = "0.8.3" | ||
authors = ["Leon Hartley <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -64,7 +64,7 @@ api = ["remote", "dep:axum", "dep:utoipa", "dep:utoipa-swagger-ui"] | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
tokio = { version = "1.22.0", features = ["full"] } | ||
tokio = { version = "1.23.0", features = ["full"] } | ||
tokio-util = { version = "0.7.4", features = ["full"] } | ||
tokio-stream = { version = "0.1", optional = true } | ||
tracing = { version = "0.1", features = ["valuable"] } | ||
|
@@ -75,20 +75,20 @@ serde_json = "1.0" | |
futures = "0.3" | ||
async-trait = { version = "0.1" } | ||
hashring = { version = "0.3.0", optional = true } | ||
bytes = { version = "1.2.1", optional = true } | ||
bytes = { version = "1.3.0", optional = true } | ||
byteorder = { version = "1.4", optional = true } | ||
chrono = { version = "0.4", optional = true } | ||
chrono = { version = "0.4", features = ["serde"], optional = true } | ||
protobuf = { version = "3.2.0", optional = true } | ||
anyhow = { version = "1.0", optional = true } | ||
rand = "0.8.5" | ||
parking_lot = { version = "0.12.1", optional = true } | ||
metrics = { version = "0.20.1", optional = true } | ||
valuable = { version = "0.1", features = ["derive"] } | ||
metrics-exporter-prometheus = { version = "0.11", optional = true } | ||
metrics-util = { version = "0.14", optional = true } | ||
metrics-util = { version = "0.14.0", optional = true } | ||
|
||
# API dependencies | ||
axum = { version = "0.6.0", features = ["query"], optional = true } | ||
axum = { version = "0.6.1", features = ["query"], optional = true } | ||
utoipa = { version = "2.4.2", features = ["axum_extras"], optional = true } | ||
utoipa-swagger-ui = { version = "3.0.1", features = ["axum"], optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.