https://github.com/liut/keeper
Web monitor for golang application
https://github.com/liut/keeper
golang keeper monitor web
Last synced: about 1 year 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-03-10T03:56:03.000Z (about 3 years ago)
- Last Synced: 2025-01-28T21:47:40.865Z (over 1 year 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 main
import (
"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)
}
````