Authored by chunhua.zhang

add

filebeat.prospectors:
- input_type: log
paths:
- /Data/logs/nginx/api.yoho.cn_access.log
document_type: nginx_access
fields:
source_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
{% if dc == 'qcloud-az3' %}
region: "az3"
{% elif dc == 'qcloud-az2' %}
region: "az2"
{% elif dc == 'qcloud-az1' %}
region: "az1"
{% else %}
region: "unknown"
{% endif %}
fields_under_root: true
tail_files: true
- input_type: log
paths:
- /Data/logs/nginx/api.yoho.cn_error.log
- /Data/logs/nginx/nginx_error.log
document_type: nginx_access_error
fields:
source_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
{% if dc == 'qcloud-az3' %}
region: "az3"
{% elif dc == 'qcloud-az2' %}
region: "az2"
{% elif dc == 'qcloud-az1' %}
region: "az1"
{% else %}
region: "unknown"
{% endif %}
fields_under_root: true
tail_files: true
multiline.pattern: '^\d{4}'
multiline.negate: true
multiline.match: after
output.kafka:
enabled: true
hosts: ["10.66.105.67:9092"]
topic: '%{[type]}'
compression: snappy
max_message_bytes: 10000000
worker: 2
\ No newline at end of file
filebeat.prospectors:
- input_type: log
paths:
- /Data/logs/nginx/api.yoho.cn_access.log
document_type: nginx_access
fields:
source_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
region: "az1"
fields_under_root: true
tail_files: true
- input_type: log
paths:
- /Data/logs/nginx/api.yoho.cn_error.log
- /Data/logs/nginx/nginx_error.log
document_type: nginx_access_error
fields:
source_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
region: "az1"
fields_under_root: true
tail_files: true
multiline.pattern: '^\d{4}'
multiline.negate: true
multiline.match: after
output.kafka:
enabled: true
hosts: ["10.66.105.67:9092"]
topic: '%{[type]}'
compression: snappy
max_message_bytes: 10000000
worker: 2
... ...
... ... @@ -5,15 +5,7 @@ filebeat.prospectors:
document_type: nginx_access
fields:
source_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
{% if dc == 'qcloud-az3' %}
region: "az3"
{% elif dc == 'qcloud-az2' %}
region: "az2"
{% elif dc == 'qcloud-az1' %}
region: "az1"
{% else %}
region: "unknown"
{% endif %}
service: "ufo"
fields_under_root: true
tail_files: true
... ... @@ -24,15 +16,7 @@ filebeat.prospectors:
document_type: nginx_access_error
fields:
source_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
{% if dc == 'qcloud-az3' %}
region: "az3"
{% elif dc == 'qcloud-az2' %}
region: "az2"
{% elif dc == 'qcloud-az1' %}
region: "az1"
{% else %}
region: "unknown"
{% endif %}
service: "ufo"
fields_under_root: true
tail_files: true
... ...