https://github.com/clearcodehq/simplebuselkbundle
Logs SimpleBus messages in ELK
https://github.com/clearcodehq/simplebuselkbundle
Last synced: about 1 year ago
JSON representation
Logs SimpleBus messages in ELK
- Host: GitHub
- URL: https://github.com/clearcodehq/simplebuselkbundle
- Owner: ClearcodeHQ
- License: mit
- Created: 2015-12-14T08:57:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-27T09:15:15.000Z (over 10 years ago)
- Last Synced: 2025-03-30T13:37:09.630Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 43 KB
- Stars: 3
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/ClearcodeHQ/SimpleBusElkBundle)
[](https://coveralls.io/github/ClearcodeHQ/SimpleBusElkBundle?branch=master)
[](https://scrutinizer-ci.com/g/ClearcodeHQ/SimpleBusElkBundle/?branch=master)
# ELK Bridge for Symfony2
## How to use:
### Requirements:
ELK installed, Logstash config:
```
input {
tcp {
port => 5000
codec => "json"
}
}
output {
elasticsearch { }
}
```
Tested on ELK docker: https://github.com/deviantony/docker-elk
### Installation & configuration:
##### I. Register a bundle
```php