[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / appc / resources / config / log / filebeat / filebeat.yml
1 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
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.
14
15 filebeat.prospectors:
16 #it is mandatory, in our case it's log
17 - input_type: log
18   #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
19   paths:
20     - /var/log/onap/*/*/*/*.log
21     - /var/log/onap/*/*/*.log
22     - /var/log/onap/*/*.log
23
24   # The below commented properties are for time-based rolling policy. But as the log4j 1.2x does not support time-based rolling these properties are not set
25   #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
26   #ignore_older: 48h
27   # 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
28   #clean_inactive: 96h
29
30   #Multiline properties for log4j xml log events
31   multiline.pattern: '</log4j:event>'
32   multiline.negate: true
33   multiline.match: before
34   #multiline.max_lines: 500
35   #multiline.timeout: 5s
36
37 # Name of the registry file. If a relative path is used, it is considered relative to the
38 # data path. Else full qualified file name.
39 #filebeat.registry_file: ${path.data}/registry
40
41
42 output.logstash:
43   #List of logstash server ip addresses with port number.
44   #But, in our case, this will be the loadbalancer IP address.
45   #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.
46   hosts: ["{{.Values.config.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.config.logstashPort}}"]
47   #If enable will do load balancing among availabe Logstash, automatically.
48   loadbalance: true
49
50   #The list of root certificates for server verifications.
51   #If certificate_authorities is empty or not set, the trusted
52   #certificate authorities of the host system are used.
53   #ssl.certificate_authorities: $ssl.certificate_authorities
54
55   #The path to the certificate for SSL client authentication. If the certificate is not specified,
56   #client authentication is not available.
57   #ssl.certificate: $ssl.certificate
58
59   #The client certificate key used for client authentication.
60   #ssl.key: $ssl.key
61
62   #The passphrase used to decrypt an encrypted key stored in the configured key file
63   #ssl.key_passphrase: $ssl.key_passphrase