Sha256: 1ca9061fd3e9d19aabbb99877f0f7f040514f903774250a754d8cfc4e6ca7856

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

# fluent-plugin-sendgrid-event

Fluentd input plugin to receive sendgrid event.

SendGrid is a delivering email platform.  Please visit below link for the specification of event webhook.
https://sendgrid.com/docs/API_Reference/Webhooks/event.html

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'fluent-plugin-sendgrid-event'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install fluent-plugin-sendgrid-event

## Usage

The following is an example of configuration.

```
<source>
  type sendgrid_event
  host 127.0.0.1
  port 9191
  tag sendgrid
</source>
```

You can use basic authentication.

```
<source>
  type sendgrid_event
  host 127.0.0.1
  port 9191
  tag sendgrid

  username auth_username
  password auth_password
</source>

```
If you would like to use ssl, you can enable as below.

```
<source>
  type sendgrid_event
  host 127.0.0.1
  port 9191
  tag sendgrid

  ssl true
  certificate /path/to/certificate.pem
  private_key /path/to/private_key.key
</source>
```

## Contributing

1. Fork it ( http://github.com/hiroakis/fluent-plugin-sendgrid-event/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create new Pull Request

## License

MIT

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fluent-plugin-sendgrid-event-0.0.7 README.md
fluent-plugin-sendgrid-event-0.0.6 README.md
fluent-plugin-sendgrid-event-0.0.5 README.md
fluent-plugin-sendgrid-event-0.0.4 README.md
fluent-plugin-sendgrid-event-0.0.3 README.md