From 52f7f8102b80c262e3abeba6bf63942837768de3 Mon Sep 17 00:00:00 2001 From: M1 Date: Wed, 18 Mar 2026 14:43:33 +0400 Subject: [PATCH] feat: update user-agent to Mozilla-compatible string --- apps/monitor/src/runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/monitor/src/runner.rs b/apps/monitor/src/runner.rs index d7ef573..a810066 100644 --- a/apps/monitor/src/runner.rs +++ b/apps/monitor/src/runner.rs @@ -218,7 +218,7 @@ fn run_check_blocking( .timeout_global(Some(timeout)) .timeout_connect(Some(timeout)) .http_status_as_error(false) - .user_agent("PingQL-Monitor/0.1") + .user_agent("Mozilla/5.0 (compatible; PingQL/1.0; +https://pingql.com)") .tls_config(tls) .build() .new_agent();