blob: 80059dd81369edee40202fb1e5aed0597ece26f1 [file] [log] [blame]
#
# Copyright 2016 The Charles Stark Draper Laboratory
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
input {
# Accept logs from file
file {
codec => "json"
path => [
"/var/log/xdata/xdata-old.log",
"/var/log/xdata/xdata-v2.log",
"/var/log/xdata/xdata-v3.log"
]
start_position => beginning
#sincedb_path => "/dev/null"
}
}
filter {
grok {
match => [ "apiVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ]
}
grok {
match => [ "useraleVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ]
}
mutate {
convert => { "major_ver" => "integer" }
convert => { "minor_ver" => "integer" }
convert => { "patch_ver" => "integer" }
}
}
output {
# Output to Elasticsearch instance
elasticsearch {
hosts => ["localhost"]
action => "index"
index => "xdata_v3"
document_type => "testing"
#template_overwrite => true
#template => "/vagrant/files/templates/testing_v3.json"
#template_name => "testing"
}
# Debug
stdout { codec => rubydebug }
}