Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liut/keeper
Web monitor for golang application
https://github.com/liut/keeper
golang keeper monitor web
Last synced: 9 days ago
JSON representation
Web monitor for golang application
- Host: GitHub
- URL: https://github.com/liut/keeper
- Owner: liut
- Created: 2015-08-05T14:18:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-10T03:56:03.000Z (almost 2 years ago)
- Last Synced: 2024-04-26T00:16:14.326Z (10 months ago)
- Topics: golang, keeper, monitor, web
- Language: Go
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
keeper
======> Web monitor for golang application
````go
package mainimport (
"github.com/liut/keeper"
"net/http"
)func main() {
http.HandleFunc("/_server/monitor/", keeper.HandleMonitor)
http.HandleFunc("/_server/stacks/", keeper.HandleStack)// other handles
http.ListenAndServe(":8080", nil)
}````