is it possible to check events format against certain template in Logstash?
For example I want to make sure that event contains certain mandatory fields, i.e. "environment", "application" etc.
For example I want to make sure that event contains certain mandatory fields with certain values, i.e. "environment": "production", "application": "application_name"
You can use IFs with or without regex. Also is possible to drop field or all event. It depends what do you want.
input {
generator {
message => ['Test' ]
count => 1
}
}
output {
stdout {codec => rubydebug{ metadata => true}}
}
filter {
mutate {
add_field => {
"environment" => "test"
"application" => "SAP"
}
}
# does field exist or not null
if [environment] {
mutate { add_field => { "info-exist" => "Check does the field environment exist" } }
}
# if environment is not OK, drop all event
if [environment] == "prod" {
drop { }
}
# strictly exact value
if [environment]== "test" {
mutate { add_field => { "info-test" => "This is %{environment} env" } }
}
# multiple case-insensitive values check
if [environment] =~ /(?i)(prod|test|staging|dev)/ {
mutate { add_field => { "info-env" => "The environment: %{environment}" } }
}
# drop field if is not in approved list of values
prune {
whitelist_values => [ "application","(SAP|ORACLE)" ,
"environment", "(?i)TEST"]
}
}
Output:
{
"environment" => "test",
"@timestamp" => 2025-03-27T13:08:56.311959Z,
"application" => "SAP",
"info-env" => "The environment: test",
"info-test" => "This is test env",
"info-exist" => "Check does the field environment exist"
}
Yes, if is the first obvious solution that comes to mind.
I would be interested in if it is possible to save this template in a separate file and somehow compare them.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.