mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +00:00
31 lines
648 B
Plaintext
31 lines
648 B
Plaintext
input {
|
|
file {
|
|
path => "/var/log/temperature.log"
|
|
start_position => "beginning"
|
|
sincedb_path => "/dev/null"
|
|
add_field => {
|
|
"type" => "temperature"
|
|
"host.hostname" => "praguetopbox"
|
|
}
|
|
}
|
|
|
|
file {
|
|
path => "/var/log/power_usage.log"
|
|
start_position => "beginning"
|
|
sincedb_path => "/dev/null"
|
|
add_field => {
|
|
"type" => "power"
|
|
"host.hostname" => "praguetopbox"
|
|
}
|
|
}
|
|
|
|
file {
|
|
path => "/var/log/disk_usage.log"
|
|
start_position => "beginning"
|
|
sincedb_path => "/dev/null"
|
|
add_field => {
|
|
"type" => "disk"
|
|
"host.hostname" => "praguetopbox"
|
|
}
|
|
}
|
|
} |