-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: split elastic_beat into core_filebeat, metricbeat and dashmate
- Loading branch information
Showing
15 changed files
with
269 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
|
||
core_container_name: "dashd" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
|
||
- name: Load common filebeat config | ||
ansible.builtin.include_vars: | ||
file: common.yml | ||
|
||
- name: Get core container host info | ||
community.docker.docker_host_info: | ||
containers: true | ||
containers_filters: | ||
name: '{{ core_container_name }}' | ||
register: core_host_info | ||
|
||
- name: Set container ids for core if core is running | ||
ansible.builtin.set_fact: | ||
core_container_id: '{{ core_host_info.containers[0].Id }}' | ||
when: core_host_info.containers | length > 0 | ||
|
||
- name: Load core input config if core is running | ||
ansible.builtin.include_vars: | ||
file: core.yml | ||
when: core_container_id is defined | ||
|
||
- name: Set up filebeat log monitoring | ||
ansible.builtin.include_role: | ||
name: geerlingguy.filebeat | ||
|
||
- name: Make sure filebeat is restarted | ||
service: | ||
name: filebeat | ||
state: restarted | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
|
||
filebeat_version: 8.x | ||
filebeat_package: "filebeat={{ elastic_version }}" | ||
filebeat_output_logstash_enabled: false | ||
filebeat_output_elasticsearch_enabled: true | ||
filebeat_output_elasticsearch_hosts: "{{ query('inventory_hostnames', 'logs') | map('extract', hostvars, ['private_ip']) | map('~(item) => item + \":9200\"') | list }}" | ||
filebeat_output_elasticsearch_auth: | ||
username: "{{ elastic_username }}" | ||
password: "{{ elastic_password }}" | ||
filebeat_enable_logging: true | ||
filebeat_log_level: info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
|
||
filebeat_inputs: | ||
- type: container | ||
enabled: true | ||
index: "logs-core-{{ dash_network_name }}-%{[agent.version]}" | ||
paths: | ||
- '/var/lib/docker/containers/{{ core_container_id }}/*.log' | ||
processors: | ||
- add_fields: | ||
target: event | ||
fields: | ||
dataset: "core-{{ dash_network_name }}" | ||
- dissect: | ||
tokenizer: "%{?timestamp} %{message}" | ||
overwrite_keys: true | ||
target_prefix: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
|
||
filebeat_version: 8.x | ||
filebeat_package: "filebeat={{ elastic_version }}" | ||
filebeat_output_logstash_enabled: false | ||
filebeat_output_elasticsearch_enabled: true | ||
filebeat_output_elasticsearch_hosts: "{{ query('inventory_hostnames', 'logs') | map('extract', hostvars, ['private_ip']) | map('~(item) => item + \":9200\"') | list }}" | ||
filebeat_output_elasticsearch_auth: | ||
username: "{{ elastic_username }}" | ||
password: "{{ elastic_password }}" | ||
filebeat_enable_logging: true | ||
filebeat_log_level: info | ||
filebeat_inputs: | ||
- type: log | ||
enabled: true | ||
index: "logs-core-{{ dash_network_name }}-%{[agent.version]}" | ||
paths: | ||
- "{{ dashmate_logs_dir }}/core.log*" | ||
processors: | ||
- add_fields: | ||
target: event | ||
fields: | ||
dataset: "core-{{ dash_network_name }}" | ||
- dissect: | ||
tokenizer: "%{?timestamp} %{message}" | ||
overwrite_keys: true | ||
target_prefix: "" | ||
- type: log | ||
enabled: "{{ dashmate_platform_enable }}" | ||
json.message_key: message | ||
exclude_files: ['\.gz$'] | ||
index: "logs-drive.abci-{{ dash_network_name }}-%{[agent.version]}" | ||
paths: | ||
- "{{ dashmate_logs_dir }}/drive-json.log*" | ||
processors: | ||
- timestamp: | ||
field: json.timestamp | ||
layouts: | ||
- UNIX_MS | ||
- add_fields: | ||
target: event | ||
fields: | ||
dataset: "drive.abci-{{ dash_network_name }}" | ||
- rename: | ||
fields: | ||
- from: "json.fields.message" | ||
to: "message" | ||
- from: "json.level" | ||
to: "log.level" | ||
ignore_missing: true | ||
fail_on_error: true | ||
- type: log | ||
enabled: "{{ dashmate_platform_enable }}" | ||
json.message_key: message | ||
index: "logs-drive.tenderdash-{{ dash_network_name }}-%{[agent.version]}" | ||
paths: | ||
- "{{ dashmate_logs_dir }}/tenderdash.log*" | ||
processors: | ||
- add_fields: | ||
target: event | ||
fields: | ||
dataset: "drive.tenderdash-{{ dash_network_name }}" | ||
- rename: | ||
fields: | ||
- from: "json.message" | ||
to: "message" | ||
ignore_missing: true | ||
fail_on_error: true | ||
- rename: | ||
fields: | ||
- from: "json.level" | ||
to: "log.level" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
|
||
- name: Create logs dir | ||
ansible.builtin.file: | ||
path: '{{ dashmate_logs_dir }}' | ||
state: directory | ||
owner: '{{ dashmate_user }}' | ||
group: '{{ dashmate_group }}' | ||
recurse: true | ||
|
||
- name: Configure log rotation | ||
ansible.builtin.include_role: | ||
name: arillso.logrotate | ||
vars: | ||
logrotate_applications: | ||
- name: platform-logs | ||
definitions: | ||
- logs: | ||
- '{{ dashmate_logs_dir }}/*.log' | ||
options: | ||
- rotate 7 | ||
- daily | ||
- maxsize 1G | ||
- missingok | ||
- notifempty | ||
- copytruncate | ||
- compress | ||
- delaycompress | ||
|
||
- name: Ensure logrotate runs hourly under systemd timer | ||
ansible.builtin.lineinfile: | ||
path: /lib/systemd/system/logrotate.timer | ||
regexp: '^OnCalendar=hourly' | ||
insertafter: '^OnCalendar=daily' | ||
line: OnCalendar=hourly | ||
|
||
- name: Load common filebeat config | ||
ansible.builtin.include_vars: | ||
file: filebeat.yml | ||
|
||
- name: Set up filebeat log monitoring | ||
ansible.builtin.include_role: | ||
name: geerlingguy.filebeat | ||
|
||
- name: Make sure filebeat is restarted | ||
service: | ||
name: filebeat | ||
state: restarted | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.