Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WPI] Fix system module dashboards and ingestion with journald #41354

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion filebeat/module/system/syslog/ingest/journald.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ processors:
copy_from: _ingest.timestamp
- set:
field: "process.pid"
value: '{{ journald.pid }}'
value: "{{ journald.pid }}"
- set:
field: "process.name"
value: "{{ journald.process.name }}"
ignore_failure: true
- set:
field: event.kind
value: event
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
],
"process.args_count": 1,
"process.command_line": "/sbin/init",
"process.name": "systemd",
"process.pid": "1",
"related.hosts": [
"vagrant-debian-12"
Expand All @@ -36,6 +37,7 @@
"log.syslog.facility.code": 0,
"log.syslog.priority": 6,
"message": "Console: switching to colour frame buffer device 160x50",
"process.name": "",
"process.pid": "",
"related.hosts": [
"vagrant-debian-12"
Expand All @@ -54,6 +56,7 @@
"log.syslog.facility.code": 0,
"log.syslog.priority": 6,
"message": "thermal_sys: Registered thermal governor 'power_allocator'",
"process.name": "",
"process.pid": "",
"related.hosts": [
"bookworm"
Expand Down
Loading