Jakub Latusek | be89684 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame] | 2 | # Copyright © 2018 Amdocs, Bell Canada , ZTE |
| 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. |
Jakub Latusek | be89684 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 15 | */}} |
LiZi | 4dd8e11 | 2018-04-09 07:34:04 -0400 | [diff] [blame] | 16 | filebeat.prospectors: |
| 17 | #it is mandatory, in our case it's log |
| 18 | - input_type: log |
| 19 | #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory. |
| 20 | paths: |
| 21 | - /var/log/onap/*/*/*/*.log |
| 22 | - /var/log/onap/*/*/*.log |
| 23 | - /var/log/onap/*/*.log |
| 24 | #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 |
| 25 | ignore_older: 48h |
| 26 | # 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 |
| 27 | clean_inactive: 96h |
| 28 | |
| 29 | |
| 30 | # Name of the registry file. If a relative path is used, it is considered relative to the |
| 31 | # data path. Else full qualified file name. |
| 32 | #filebeat.registry_file: ${path.data}/registry |
| 33 | |
| 34 | |
| 35 | output.logstash: |
| 36 | #List of logstash server ip addresses with port number. |
| 37 | #But, in our case, this will be the loadbalancer IP address. |
| 38 | #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. |
Li Zi | c5290dc | 2018-08-06 09:26:27 +0000 | [diff] [blame] | 39 | hosts: ["{{.Values.config.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.config.logstashPort}}"] |
LiZi | 4dd8e11 | 2018-04-09 07:34:04 -0400 | [diff] [blame] | 40 | #If enable will do load balancing among availabe Logstash, automatically. |
| 41 | loadbalance: true |
| 42 | |
| 43 | #The list of root certificates for server verifications. |
| 44 | #If certificate_authorities is empty or not set, the trusted |
| 45 | #certificate authorities of the host system are used. |
| 46 | #ssl.certificate_authorities: $ssl.certificate_authorities |
| 47 | |
| 48 | #The path to the certificate for SSL client authentication. If the certificate is not specified, |
| 49 | #client authentication is not available. |
| 50 | #ssl.certificate: $ssl.certificate |
| 51 | |
| 52 | #The client certificate key used for client authentication. |
| 53 | #ssl.key: $ssl.key |
| 54 | |
| 55 | #The passphrase used to decrypt an encrypted key stored in the configured key file |
| 56 | #ssl.key_passphrase: $ssl.key_passphrase |