Skip to content

panizzag/ELK-CloudHub-log4j2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logstash example config

input {
	tcp {
		port => 5000
	}
}

## Add your filters / logstash plugins configuration here
filter {
	json {
			# Parses the incoming JSON message into fields.
			source => "message"
		}
}

output {
	elasticsearch {
		hosts => "elasticsearch:9200"
		user => "elastic"
		password => "changeme"
		codec => "json"
		index => "mule"
	}
}

Kibana example dashboard based on metrics

file: export.ndjson

About

A Mule example using log4j2 configuration using sockets to forward logs to logstash

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors