Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

editoast: add tracing for ping operations #10129

Merged
merged 1 commit into from
Dec 19, 2024
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
1 change: 1 addition & 0 deletions editoast/src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ impl CoreClient {
error
}

#[tracing::instrument(name = "ping_core", skip_all)]
pub async fn ping(&self) -> Result<bool, CoreError> {
match self {
CoreClient::MessageQueue(mq_client) => {
Expand Down
1 change: 1 addition & 0 deletions editoast/src/core/mq_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ impl RabbitMQClient {
})
}

#[tracing::instrument(name = "ping_mq", skip_all)]
pub async fn ping(&self) -> Result<bool, MqClientError> {
let channel_worker = self
.pool
Expand Down
1 change: 1 addition & 0 deletions editoast/src/valkey_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ impl ValkeyClient {
}
}

#[tracing::instrument(skip_all)]
pub async fn ping_valkey(&self) -> RedisResult<()> {
let mut conn = self.get_connection().await?;
cmd("PING").query_async::<()>(&mut conn).await?;
Expand Down
Loading