Skip to content

monai/gomonit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

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

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages