monasca-log-api/devstack/files/monasca-log-agent/agent.conf

48 lines
1.2 KiB
Plaintext

#
# 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"]
}
}
filter {
if "syslog" in [tags] {
multiline {
negate => "true"
pattern => "^%{SYSLOGTIMESTAMP}"
what => "previous"
}
}
}
# TODO(trebskit) should use own user for log-agent
output {
monasca_log_api {
monasca_log_api_url => "%MONASCA_LOG_API_URI_V3%"
keystone_api_url => "%KEYSTONE_AUTH_URI_V3%"
project_name => "mini-mon"
username => "monasca-agent"
password => "password"
user_domain_name => "default"
project_domain_name => "default"
dimensions => [ "hostname:devstack" ]
}
}