From 37f0374827dbdb458f37c73bc2e83efc61e30d36 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Thu, 5 Sep 2024 15:41:32 -0500 Subject: [PATCH] fix(logging): update syslog name --- infra/cdn/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/cdn/main.tf b/infra/cdn/main.tf index 6b7eaec9d..12d1fbba4 100644 --- a/infra/cdn/main.tf +++ b/infra/cdn/main.tf @@ -269,7 +269,7 @@ resource "fastly_service_vcl" "python_org" { } logging_syslog { - name = "syslog" + name = "pythonorg" address = "cdn-logs.nyc1.psf.io" port = 514 format = "%h \"%%{now}V\" %l \"%%{req.request}V %%{req.url}V\" %%{req.proto}V %>s %%{resp.http.Content-Length}V %%{resp.http.age}V \"%%{resp.http.x-cache}V\" \"%%{resp.http.x-cache-hits}V\" \"%%{req.http.content-type}V\" \"%%{req.http.accept-language}V\" \"%%{cstr_escape(req.http.user-agent)}V\""