Expunge sensitive hostnames and IPs
[logging-analytics.git] / elasticstack / logstash / conf / onap-pipeline.properties
1 ######### Filebeat input plugin configurations #########
2
3 ## The port to listen on for filebeat events.
4 filebeat_port = 5044
5
6 ## Enable encryption. Default false.
7 #filebeat_ssl = true
8
9 ## ssl certificate path.
10 #filebeat_ssl_certificate = "/etc/ssl/private/server.crt"
11
12 ## SSL key to use.
13 #filebeat_ssl_key = "/etc/ssl/private/server.key"
14
15 ##SSL key passphrase to use.
16 #filebeat_ssl_key_passphrase = "abcd"
17
18 ## Value can be any of: none, peer, force_peer.
19 #filebeat_ssl_verify_mode = force_peer
20
21 ######### Elasticsearch output plugin configurations #########
22
23 ### ES Security configurations ###
24
25 es_user = "elastic"
26 es_password = "changeme"
27
28 ## Enable SSL/TLS secured communication to Elasticsearch cluster.
29 ## Default is not set which in that case depends on the protocol specified in hosts list
30 #es_ssl = true
31
32 ## The .cer or .pem file to validate the server’s certificate
33 #es_cacert = "/etc/pki/client/cert.pem"
34
35 ## The keystore used to present a certificate to the server. It can be either .jks or .p12
36 #es_keystore = "/etc/pki/client/key.p12"
37 #es_keystore_password = "abcd"
38
39 ## Option to validate the server’s certificate. Default is true
40 #es_ssl_certificate_verification = true
41
42 ## The JKS truststore to validate the server’s certificate.
43 #es_truststore = "/etc/pki/client/cacerts.jks"
44 #es_truststore_password = "abcd"
45
46
47 ### Elasticsearchcluster and host configurations ###
48
49 #can specify one or a list of hosts. If sniffing is set, one is enough and others will be auto-discovered
50 ##Also protocol can be specified like ["http://<YOUR_ELASTICSEARCH_SERVER>:9200"]
51 es_hosts = ["<YOUR_ELASTICSEARCH_SERVER>:9200"]
52
53 ## Set the address of a forward HTTP proxy.
54 #es_proxy = "https://<YOUR_PROXY_SERVER>:8080"
55
56 ##Use this if you must run Elasticsearch behind a proxy that remaps the root path for the Elasticsearch HTTP API lives
57 #es_path = ??