[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / dmaap / components / dmaap-dr-prov / resources / config / log / filebeat / filebeat.yml
1 # ============LICENSE_START=======================================================
2 #  Copyright (C) 2019 The Nordix Foundation. All rights reserved.
3 # ================================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 # SPDX-License-Identifier: Apache-2.0
17 # ============LICENSE_END=========================================================
18
19 # dmaap-dr-prov filebeat.yml
20 filebeat.prospectors:
21 #it is mandatory, in our case it's log
22 - input_type: log
23   #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
24   paths:
25     - /var/log/onap/*/*/*/*.log
26     - /var/log/onap/*/*/*.log
27     - /var/log/onap/*/*.log
28     - /opt/app/datartr/logs/*.log
29   #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
30   ignore_older: 48h
31   # 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
32   clean_inactive: 96h
33
34
35 # Name of the registry file. If a relative path is used, it is considered relative to the
36 # data path. Else full qualified file name.
37 #filebeat.registry_file: ${path.data}/registry
38
39
40 output.logstash:
41   #List of logstash server ip addresses with port number.
42   #But, in our case, this will be the loadbalancer IP address.
43   #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.
44   hosts: ["{{.Values.global.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.global.logstashPort}}"]
45   #If enable will do load balancing among available Logstash, automatically.
46   loadbalance: true
47
48   #The list of root certificates for server verifications.
49   #If certificate_authorities is empty or not set, the trusted
50   #certificate authorities of the host system are used.
51   #ssl.certificate_authorities: $ssl.certificate_authorities
52
53   #The path to the certificate for SSL client authentication. If the certificate is not specified,
54   #client authentication is not available.
55   #ssl.certificate: $ssl.certificate
56
57   #The client certificate key used for client authentication.
58   #ssl.key: $ssl.key
59
60   #The passphrase used to decrypt an encrypted key stored in the configured key file
61   #ssl.key_passphrase: $ssl.key_passphrase