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: about 1 year ago
JSON representation

Web monitor for golang application

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)
}

````