blob: d4fb35bc619da6e0e3054a3e119a1a05efb5f47b [file] [log] [blame]
Prateekinlinux445a18e2018-08-01 06:48:33 +00001# Copyright © 2018 Amdocs, Bell Canada , ZTE
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
LiZi4dd8e112018-04-09 07:34:04 -040014filebeat.prospectors:
15#it is mandatory, in our case it's log
16- input_type: log
17 #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
18 paths:
19 - /var/log/onap/*/*/*/*.log
20 - /var/log/onap/*/*/*.log
21 - /var/log/onap/*/*.log
22 #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
23 ignore_older: 48h
24 # 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
25 clean_inactive: 96h
26
27
28# Name of the registry file. If a relative path is used, it is considered relative to the
29# data path. Else full qualified file name.
30#filebeat.registry_file: ${path.data}/registry
31
32
33output.logstash:
34 #List of logstash server ip addresses with port number.
35 #But, in our case, this will be the loadbalancer IP address.
36 #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.
Li Zic5290dc2018-08-06 09:26:27 +000037 hosts: ["{{.Values.config.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.config.logstashPort}}"]
LiZi4dd8e112018-04-09 07:34:04 -040038 #If enable will do load balancing among availabe Logstash, automatically.
39 loadbalance: true
40
41 #The list of root certificates for server verifications.
42 #If certificate_authorities is empty or not set, the trusted
43 #certificate authorities of the host system are used.
44 #ssl.certificate_authorities: $ssl.certificate_authorities
45
46 #The path to the certificate for SSL client authentication. If the certificate is not specified,
47 #client authentication is not available.
48 #ssl.certificate: $ssl.certificate
49
50 #The client certificate key used for client authentication.
51 #ssl.key: $ssl.key
52
53 #The passphrase used to decrypt an encrypted key stored in the configured key file
54 #ssl.key_passphrase: $ssl.key_passphrase