Skip to content

Latest commit

 

History

33 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

gomonit

Package gomonit consumes and parses Monit status and event notifications. It disguises as M/Monit collector server.

Example

// create channel and pass it to the collector
channel := make(chan *gomonit.Monit)
collector := gomonit.NewCollector(channel)
http.Handle("/collector", collector)

go func() {
	err := http.ListenAndServe(":8080", nil)
	if err != nil {
		log.Fatal("http.ListenAndServe: ", err)
	}
}()

// consume notifications
for monit := range channel {
	fmt.Println(monit.Server.Uptime)
}

License

ISC

About

gomonit consumes and parses Monit status and event notifications

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages