diff --git a/apps/monitor/src/runner.rs b/apps/monitor/src/runner.rs index f22aba4..db4dbfb 100644 --- a/apps/monitor/src/runner.rs +++ b/apps/monitor/src/runner.rs @@ -246,7 +246,7 @@ async fn run_check(client: &reqwest::Client, monitor: &Monitor, scheduled_at: Op let meta = json!({ "headers": headers, - "body_preview": &body[..body.len().min(500)], + "body_preview": &body[..body.len().min(25_000)], }); debug!("{} → {status} {latency_ms}ms up={up}", monitor.url); diff --git a/apps/web/src/views/detail.ejs b/apps/web/src/views/detail.ejs index 4fceb3f..ea3ad39 100644 --- a/apps/web/src/views/detail.ejs +++ b/apps/web/src/views/detail.ejs @@ -226,7 +226,7 @@ // Body preview if (bodyPreview) { html += '
${escapeHtml(bodyPreview)}`;
html += '