nginx.conf 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # netdata python.d.plugin configuration for nginx
  2. #
  3. # You must have ngx_http_stub_status_module configured on your nginx server for this
  4. # plugin to work. The following is an example config.
  5. # It must be located inside a server { } block.
  6. #
  7. # location /stub_status {
  8. # stub_status;
  9. # # Security: Only allow access from the IP below.
  10. # allow 192.168.1.200;
  11. # # Deny anyone else
  12. # deny all;
  13. # }
  14. #
  15. # This file is in YaML format. Generally the format is:
  16. #
  17. # name: value
  18. #
  19. # There are 2 sections:
  20. # - global variables
  21. # - one or more JOBS
  22. #
  23. # JOBS allow you to collect values from multiple sources.
  24. # Each source will have its own set of charts.
  25. #
  26. # JOB parameters have to be indented (using spaces only, example below).
  27. # ----------------------------------------------------------------------
  28. # Global Variables
  29. # These variables set the defaults for all JOBs, however each JOB
  30. # may define its own, overriding the defaults.
  31. # update_every sets the default data collection frequency.
  32. # If unset, the python.d.plugin default is used.
  33. # update_every: 1
  34. # priority controls the order of charts at the netdata dashboard.
  35. # Lower numbers move the charts towards the top of the page.
  36. # If unset, the default for python.d.plugin is used.
  37. # priority: 60000
  38. # retries sets the number of retries to be made in case of failures.
  39. # If unset, the default for python.d.plugin is used.
  40. # Attempts to restore the service are made once every update_every
  41. # and only if the module has collected values in the past.
  42. # retries: 5
  43. # ----------------------------------------------------------------------
  44. # JOBS (data collection sources)
  45. #
  46. # The default JOBS share the same *name*. JOBS with the same name
  47. # are mutually exclusive. Only one of them will be allowed running at
  48. # any time. This allows autodetection to try several alternatives and
  49. # pick the one that works.
  50. #
  51. # Any number of jobs is supported.
  52. #
  53. # All python.d.plugin JOBS (for all its modules) support a set of
  54. # predefined parameters. These are:
  55. #
  56. # job_name:
  57. # name: my_name # the JOB's name as it will appear at the
  58. # # dashboard. If name: is not supplied the
  59. # # job_name: will be used (use _ for spaces)
  60. # # JOBs sharing a name are mutually exclusive
  61. # update_every: 1 # the JOB's data collection frequency
  62. # priority: 60000 # the JOB's order on the dashboard
  63. # retries: 5 # the JOB's number of restoration attempts
  64. #
  65. # Additionally to the above, this plugin also supports the following:
  66. #
  67. # url: 'URL' # the URL to fetch nginx's status stats
  68. #
  69. # if the URL is password protected, the following are supported:
  70. #
  71. # user: 'username'
  72. # pass: 'password'
  73. #
  74. # Example
  75. #
  76. # RemoteNginx:
  77. # name : 'Reverse_Proxy'
  78. # url : 'http://yourdomain.com/stub_status'
  79. #
  80. # "RemoteNginx" will show up in Netdata logs. "Reverse Proxy" will show up in the menu
  81. # in the nginx section.
  82. # ----------------------------------------------------------------------
  83. # AUTO-DETECTION JOBS
  84. # only one of them will run (they have the same name)
  85. localhost:
  86. name : 'local'
  87. url : 'http://localhost/stub_status'
  88. localipv4:
  89. name : 'local'
  90. url : 'http://127.0.0.1/stub_status'
  91. localipv6:
  92. name : 'local'
  93. url : 'http://[::1]/stub_status'