Enable nginx metric collection with metricbeat

Change-Id: I4c3ccbd0fd8b71c3dd4589ec629b054ba49e0095
This commit is contained in:
Jonathan Rosser 2018-06-05 11:19:21 +00:00 committed by Jonathan Rosser
parent b91b9e4852
commit 59082ee81d
3 changed files with 31 additions and 1 deletions

View File

@ -89,6 +89,7 @@
rabbitmq_enabled: "{{ rabbitmq.stat.exists | bool }}"
uwsgi_enabled: "{{ uwsgi.stat.exists | bool }}"
# Apache 2 stats enablement
- name: Drop apache2 stats site config
template:
src: apache-status.conf.j2
@ -114,6 +115,26 @@
state: reloaded
when: apache_enabled
# NGINX stats enablement
- name: Drop nginx stats site config
template:
src: nginx-status.conf.j2
dest: /etc/nginx/sites-available/nginx-status.conf
when: nginx_enabled
- name: Enable nginx stats site
file:
src: /etc/nginx/sites-available/nginx-status.conf
dest: /etc/nginx/sites-enabled/nginx-status.conf
state: link
when: nginx_enabled
- name: Reload nginx
service:
name: nginx
state: reloaded
when: nginx_enabled
post_tasks:
- name: Drop metricbeat conf file
template:

View File

@ -372,7 +372,7 @@ metricbeat.modules:
period: 30s
# Nginx hosts
hosts: ["http://127.0.0.1"]
hosts: ["http://{{ ansible_hostname }}"]
# Path to server status. Default server-status
server_status_path: "server-status"

View File

@ -0,0 +1,9 @@
server {
listen 127.0.1.1:80;
location /server-status {
stub_status on;
access_log off;
allow 127.0.0.0/8;
deny all;
}
}