# # Copyright 2016 FUJITSU LIMITED # # 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 { file { add_field => { "dimensions" => { "service" => "system" }} path => "/var/log/syslog" tags => ["syslog"] codec => multiline { negate => "true" pattern => "^%{SYSLOGTIMESTAMP}" what => "previous" } } } output { monasca_log_api { monasca_log_api_url => "%MONASCA_API_URI_V2%" keystone_api_url => "%KEYSTONE_AUTH_URI%" project_name => "mini-mon" username => "monasca-agent" password => "password" user_domain_name => "default" project_domain_name => "default" dimensions => [ "hostname:devstack" ] } }