Browse Source

Fixed config sample for Nginx

Simon Kurowski 7 years ago
parent
commit
c4d3b623e8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      telegraf/content.md

+ 2 - 2
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;
     }
 }
 ```