0.02
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Output plugin for Datadog
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 3.0.0
>= 3.1.0

Runtime

>= 1.15.0
 Project Readme

fluent-plugin-dd

Output plugin for Datadog

Gem Version Build Status

Installation

$ gem install fluent-plugin-dd

Configuration

<match datadog.**>
  @type dd
  dd_api_key ...
  #dd_app_key_key ...
  #host my_host.example.com
  #device my_device
  #silent true
  #timeout 5
  #use_fluentd_tag_for_datadog_tag false
  #emit_in_background false
</match>

Usage

echo '{"metric":"some.metric.name", "value":50.0}' | fluent-cat datadog.metric
echo '{"metric":"some.metric.name", "value":100.0, "tag":"any.tag", "host":"any.host", "type":"gauge", "device":"my_device"}' | fluent-cat datadog.metric

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