The commit contains upgrade of Elk components, default index pattern creation in new API. Story: 2006376 Task: 38125 Depends-On: https://review.opendev.org/#/c/679781 Change-Id: Ib0b966c0d7db993802b5372156c41b3ebdf1a77f
42 lines
1.1 KiB
Plaintext
42 lines
1.1 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"]
|
|
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" ]
|
|
}
|
|
}
|