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