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

Runtime

~> 0.10.0
 Project Readme
Growl Notification Output Plugin

First, you must set up growl can "Listen for incoming notifications" at "Growl" in "System Preferences".

fluent.conf example:
	<match growl.**>
	  type growl
	
	  server localhost
	  #password fluent
	  appname Fluent Growl Notify
	
	  <notify>
	    name Notify
	    priority 0
	    sticky false
	  </notify>
	
	  <notify>
	    name StickyNotify
	    priority 0
	    sticky true
	  </notify>
	</match>

and some command line example
	$ echo '{"title": "Title", "message": "Hello World!!"}' | fluent-cat growl.test
	$ echo '{"title": "Sticky", "message": "It's sticky message!!", notify:"StickyNotify"}' | fluent-cat growl.test
	$ echo '{}' | fluent-cat growl.test