Sha256: b3c800d7c0adc9b380214c0014bc5060e3eb4bd351ab5ca858578d60ec0fa4a7

Contents?: true

Size: 1.27 KB

Versions: 2

Compression:

Stored size: 1.27 KB

Contents

# fluent-plugin-heroku-syslog

[fluent](http://fluentd.org) plugin to drain heroku syslog.

[![Build Status](https://travis-ci.org/hakobera/fluent-plugin-heroku-syslog.png?branch=master)](https://travis-ci.org/hakobera/fluent-plugin-heroku-syslog)

## Installation

Install with gem or fluent-gem command as:

```
# for fluentd
$ gem install fluent-plugin-heroku-syslog

# for td-agent
$ sudo /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-heroku-syslog
```

## Component

### HerokuSyslogInput

Plugin to accept syslog input from [heroku syslog drains](https://devcenter.heroku.com/articles/log-drains#syslog-drains).

#### Configuration

```
<source>
  type heroku_syslog
  port 5140
  bind 0.0.0.0
  tag  heroku
</source>
```

### HerokuSyslogHttpInput

Plugin to accept syslog input from [heroku http(s) drains](https://devcenter.heroku.com/articles/log-drains#http-s-drains).

#### Configuration

##### Basic

```
<source>
  type heroku_syslog_http
  port 9880
  bind 0.0.0.0
  tag  heroku
</source>
```

##### Filter by drain_ids

```
<source>
  type heroku_syslog_http
  port 9880
  bind 0.0.0.0
  tag  heroku
  drain_ids ["YOUR-HEROKU-DRAIN-ID"]
</source>
```

## Copyright

- Copyright
  - Copyright(C) 2014- Kazuyuki Honda (hakobera)
- License
  - Apache License, Version 2.0

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-heroku-syslog-0.1.1 README.md
fluent-plugin-heroku-syslog-0.1.0 README.md