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

Development

>= 0.9.2

Runtime

~> 0.10.7
 Project Readme

Weather output plugin for Fluent¶ ↑

fluent-plugin-weather is a fluent plugin to copy output with adding weather field. Without ‘latitude’ and ‘longitude’ fields, this add null for weather fields.

Installation¶ ↑

What you have to do is only installing like this:

gem install fluent-plugin-weather

Then fluent automatically loads the plugin installed.

Configuratin¶ ↑

<match weather.**>
  type weather
  api_key #YOUR_WUNDERGROUND_API_KEY
  <weather_types> # write regexp by type(ignore case)
    1 sunny|clear
    2 cloud|overcast|haze|fog
    3 rain|sleet|snow|storms
  </weather_types>

  <store>
    # ...
  </store>
  <store>
    # ...
  </store>
</match>