prometheus/api/api.go
2013-01-27 19:59:20 +01:00

15 lines
478 B
Go

package api
import (
"code.google.com/p/gorest"
"github.com/prometheus/prometheus/utility"
)
type MetricsService struct {
gorest.RestService `root:"/api/" consumes:"application/json" produces:"application/json"`
query gorest.EndPoint `method:"GET" path:"/query?{expr:string}&{json:string}" output:"string"`
queryRange gorest.EndPoint `method:"GET" path:"/query_range?{expr:string}&{end:int64}&{range:int64}&{step:int64}" output:"string"`
time utility.Time
}