blob: 1a3f693a126013e0b2c5151ce7ecb2578cf2c2f9 [file] [log] [blame]
Jack Lucas332b5e72019-02-06 16:03:13 -05001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4# Modifications Copyright © 2018 Amdocs, Bell Canada
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18filebeat.prospectors:
19#it is mandatory, in our case it's log
20- input_type: log
21 #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
22 paths:
23 - /var/log/onap/*/*/*/*.log
24 - /var/log/onap/*/*/*.log
25 - /var/log/onap/*/*.log
26 #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
27 ignore_older: 48h
28 # 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
29 clean_inactive: 96h
30
31
32# Name of the registry file. If a relative path is used, it is considered relative to the
33# data path. Else full qualified file name.
34#filebeat.registry_file: ${path.data}/registry
35
36
37output.logstash:
38 #List of logstash server ip addresses with port number.
39 #But, in our case, this will be the loadbalancer IP address.
40 #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.
41 hosts: ["{{.Values.config.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.config.logstashPort}}"]
42 #If enable will do load balancing among availabe Logstash, automatically.
43 loadbalance: true
44
45 #The list of root certificates for server verifications.
46 #If certificate_authorities is empty or not set, the trusted
47 #certificate authorities of the host system are used.
48 #ssl.certificate_authorities: $ssl.certificate_authorities
49
50 #The path to the certificate for SSL client authentication. If the certificate is not specified,
51 #client authentication is not available.
52 #ssl.certificate: $ssl.certificate
53
54 #The client certificate key used for client authentication.
55 #ssl.key: $ssl.key
56
57 #The passphrase used to decrypt an encrypted key stored in the configured key file
58 #ssl.key_passphrase: $ssl.key_passphrase
59
60logging:
61 level: debug
62
63 # enable file rotation with default configuration
64 to_files: true
65
66 # do not log to syslog
67 to_syslog: false
68
69 files:
70 path: /usr/share/filebeat/logs
71 name: mybeat.log
72 keepfiles: 7