Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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

````