blob: 8540903193899edc0b1a2a5e61c828c142709b75 [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
econwar378cf192019-01-08 16:19:59 +00002# ============LICENSE_START=======================================================
3# Copyright (C) 2019 The Nordix Foundation. All rights reserved.
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020019*/}}
econwar378cf192019-01-08 16:19:59 +000020
21filebeat.prospectors:
22#it is mandatory, in our case it's log
23- input_type: log
24 #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
25 paths:
26 - /var/log/onap/*/*/*/*.log
27 - /var/log/onap/*/*/*.log
28 - /var/log/onap/*/*.log
29 - /opt/app/datartr/logs/*.log
30 #Files older than this should be ignored.In our case it will be 48 hours i.e. 2 days. It is a helping flag for clean_inactive
31 ignore_older: 48h
32 # Remove the registry entry for a file that is more than the specified time. In our case it will be 96 hours, i.e. 4 days. It will help to keep registry records with in limit
33 clean_inactive: 96h
34
35
36# Name of the registry file. If a relative path is used, it is considered relative to the
37# data path. Else full qualified file name.
38#filebeat.registry_file: ${path.data}/registry
39
40
41output.logstash:
42 #List of logstash server ip addresses with port number.
43 #But, in our case, this will be the loadbalancer IP address.
44 #For the below property to work the loadbalancer or logstash should expose 5044 port to listen the filebeat events or port in the property should be changed appropriately.
efiacor7b9a0872019-08-28 21:20:22 +000045 hosts: ["{{.Values.global.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.global.logstashPort}}"]
econwar378cf192019-01-08 16:19:59 +000046 #If enable will do load balancing among available Logstash, automatically.
47 loadbalance: true
48
49 #The list of root certificates for server verifications.
50 #If certificate_authorities is empty or not set, the trusted
51 #certificate authorities of the host system are used.
52 #ssl.certificate_authorities: $ssl.certificate_authorities
53
54 #The path to the certificate for SSL client authentication. If the certificate is not specified,
55 #client authentication is not available.
56 #ssl.certificate: $ssl.certificate
57
58 #The client certificate key used for client authentication.
59 #ssl.key: $ssl.key
60
61 #The passphrase used to decrypt an encrypted key stored in the configured key file
62 #ssl.key_passphrase: $ssl.key_passphrase