No commit activity in last 3 years
No release in over 3 years
fluent plugin for sumologic
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

Fluent::Plugin::Sumologic, a plugin for Fluentd

fluent output plugin for Sumologic

Fluentd

http://fluentd.org/

Sumologic

http://www.sumologic.com/

Installation

Add this line to your application's Gemfile:

gem 'fluent-plugin-sumologic-2'

And then execute:

$ bundle

Or install it yourself as:

$ gem install fluent-plugin-sumologic-2

Usage

<match *.apache.*>
  type sumologic
  host collectors.sumologic.com
  port 443
  proxy 10.0.0.1:3128
  format json|text
  path /receiver/v1/http/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==
</match>

type

  • sumologic

host

  • Hostname of HTTP Collectors URL

port

  • Port of HTTP Collectors URL

proxy

  • HTTP proxy address including port

path

  • Path of HTTP Collectors URL

format

  • json: send as json format in fluent way
  • text: send as raw text format (ex: using "parse using public/apache/access")

verify_ssl

  • Verify ssl certificate. Default is true.

debug

  • Output http debug log lines to stderr. Default is false.

Contributing

  1. Fork it
  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