#1001590 增加针对业务应用日志的采集 #6

Merged
pengln merged 1 commits from pengln/filebeat:master into master 2021-11-09 11:25:42 +08:00
3 changed files with 13 additions and 3 deletions
Showing only changes of commit fc73dc3ef6 - Show all commits

View File

@ -1,7 +1,7 @@
filebeat.registry.path: {{ work_path }}/data/registry/gw-nginx-{{ instance_name }} filebeat.registry.path: {{ work_path }}/data/registry/gw-nginx-{{ instance_name }}
filebeat.inputs: filebeat.inputs:
{% for log in logs %} {% for log in gwlogs %}
- type: log - type: log
paths: paths:
- "/data/log/nginx/access_{{ log }}.log" - "/data/log/nginx/access_{{ log }}.log"

View File

@ -1,7 +1,7 @@
filebeat.registry.path: {{ work_path }}/data/registry/mgr-cp-{{ instance_name }} filebeat.registry.path: {{ work_path }}/data/registry/mgr-cp-{{ instance_name }}
filebeat.inputs: filebeat.inputs:
{% for log in logs %} {% for log in mgrlogs %}
- type: log - type: log
paths: paths:
- {{ log }} - {{ log }}

View File

@ -2,7 +2,17 @@
# vars file for filebeat # vars file for filebeat
filebeat_download_url: "https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.10.1-linux-x86_64.tar.gz" filebeat_download_url: "https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.10.1-linux-x86_64.tar.gz"
work_path: "/data/opt/filebeat/{{ instance_name }}" work_path: "/data/opt/filebeat/{{ instance_name }}"
logs: gwlogs:
- "api"
- "cl*"
- "doc"
- "download"
- "gw*"
- "cp*"
- "pay"
- "static"
- "81"
mgrlogs:
- "/data/game/htdocs/center/manager/storage/cp/logs/*.log" - "/data/game/htdocs/center/manager/storage/cp/logs/*.log"
config_files: config_files:
- "gateway-nginx" - "gateway-nginx"