An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/ClearcodeHQ/SimpleBusElkBundle.svg?branch=master)](https://travis-ci.org/ClearcodeHQ/SimpleBusElkBundle)
[![Coverage Status](https://coveralls.io/repos/ClearcodeHQ/SimpleBusElkBundle/badge.svg?branch=master&service=github)](https://coveralls.io/github/ClearcodeHQ/SimpleBusElkBundle?branch=master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/ClearcodeHQ/SimpleBusElkBundle/badges/quality-score.png?b=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