blob: 8d0f36f0367461da56cf16e46807c7d671884d6f [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, Bell Canada, AT&T
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.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010015*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010016
17filebeat.prospectors:
18#it is mandatory, in our case it's log
19- input_type: log
20 #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
21 paths:
22 - /var/log/onap/*/*/*/*.log
23 - /var/log/onap/*/*/*.log
24 - /var/log/onap/*/*.log
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
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010030{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +010031# Name of the registry file. If a relative path is used, it is considered relative to the
32# data path. Else full qualified file name.
33#filebeat.registry_file: ${path.data}/registry
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010034*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010035
36output.logstash:
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010037{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +010038 #List of logstash server ip addresses with port number.
39 #But, in our case, this will be the loadbalancer IP address.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010040 # For the below property to work the loadbalancer or logstash should expose
41 # 5044 port to listen the filebeat events or port in the property should be
42 # changed appropriately.
43*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010044 hosts: ["{{.Values.config.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.config.logstashPort}}"]
45 #If enable will do load balancing among availabe Logstash, automatically.
46 loadbalance: true
47
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010048{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +010049 #The list of root certificates for server verifications.
50 #If certificate_authorities is empty or not set, the trusted
51 #certificate authorities of the host system are used.
52 #ssl.certificate_authorities: $ssl.certificate_authorities
53
54 #The path to the certificate for SSL client authentication. If the certificate is not specified,
55 #client authentication is not available.
56 #ssl.certificate: $ssl.certificate
57
58 #The client certificate key used for client authentication.
59 #ssl.key: $ssl.key
60
61 #The passphrase used to decrypt an encrypted key stored in the configured key file
62 #ssl.key_passphrase: $ssl.key_passphrase
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010063*/}}