From c4d3b623e8dfb14aad1f92d53681335913aefc62 Mon Sep 17 00:00:00 2001 From: Simon Kurowski Date: Mon, 8 Oct 2018 22:45:34 +0200 Subject: [PATCH] Fixed config sample for Nginx --- telegraf/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/telegraf/content.md b/telegraf/content.md index d84432049..fd957c337 100644 --- a/telegraf/content.md +++ b/telegraf/content.md @@ -113,8 +113,8 @@ Create an `nginx_status.conf` configuration file to expose metric data: server { listen 8090; location /nginx_status { - stub_status on; - access_log on; + stub_status; + access_log off; } } ```