From 6efd571748cb8c4d5e83032e54026a452add827e Mon Sep 17 00:00:00 2001 From: alkac Date: Tue, 8 Aug 2017 22:59:10 +0530 Subject: [LOG-34]Config of Logstash Indexing for ONAP Logs Change-Id: I115893b01fee180896607285023090a65c0b4946 Signed-off-by: alkac --- .../logstash/conf/onap-pipeline.properties | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 elasticstack/logstash/conf/onap-pipeline.properties (limited to 'elasticstack/logstash/conf/onap-pipeline.properties') diff --git a/elasticstack/logstash/conf/onap-pipeline.properties b/elasticstack/logstash/conf/onap-pipeline.properties new file mode 100644 index 0000000..c411122 --- /dev/null +++ b/elasticstack/logstash/conf/onap-pipeline.properties @@ -0,0 +1,57 @@ +######### Filebeat input plugin configurations ######### + +## The port to listen on for filebeat events. +filebeat_port = 5044 + +## Enable encryption. Default false. +#filebeat_ssl = true + +## ssl certificate path. +#filebeat_ssl_certificate = "/etc/ssl/private/server.crt" + +## SSL key to use. +#filebeat_ssl_key = "/etc/ssl/private/server.key" + +##SSL key passphrase to use. +#filebeat_ssl_key_passphrase = "abcd" + +## Value can be any of: none, peer, force_peer. +#filebeat_ssl_verify_mode = force_peer + +######### Elasticsearch output plugin configurations ######### + +### ES Security configurations ### + +es_user = "elastic" +es_password = "changeme" + +## Enable SSL/TLS secured communication to Elasticsearch cluster. +## Default is not set which in that case depends on the protocol specified in hosts list +#es_ssl = true + +## The .cer or .pem file to validate the server’s certificate +#es_cacert = "/etc/pki/client/cert.pem" + +## The keystore used to present a certificate to the server. It can be either .jks or .p12 +#es_keystore = "/etc/pki/client/key.p12" +#es_keystore_password = "abcd" + +## Option to validate the server’s certificate. Default is true +#es_ssl_certificate_verification = true + +## The JKS truststore to validate the server’s certificate. +#es_truststore = "/etc/pki/client/cacerts.jks" +#es_truststore_password = "abcd" + + +### Elasticsearchcluster and host configurations ### + +#can specify one or a list of hosts. If sniffing is set, one is enough and others will be auto-discovered +##Also protocol can be specified like ["http://10.247.186.12:9200"] +es_hosts = ["10.247.186.12:9200"] + +## Set the address of a forward HTTP proxy. +#es_proxy = "https://genproxy.amdocs.com:8080" + +##Use this if you must run Elasticsearch behind a proxy that remaps the root path for the Elasticsearch HTTP API lives +#es_path = ?? \ No newline at end of file -- cgit 1.2.3-korg