prometheus/web/api/api.go

25 lines
782 B
Go
Raw Normal View History

package api
import (
"code.google.com/p/gorest"
"github.com/prometheus/prometheus/storage/metric"
"github.com/prometheus/prometheus/utility"
)
type MetricsService struct {
gorest.RestService `root:"/api/" consumes:"application/json" produces:"application/json"`
2013-01-17 15:07:00 -08:00
query gorest.EndPoint `method:"GET" path:"/query?{expr:string}&{json:string}" output:"string"`
2013-01-15 02:30:55 -08:00
queryRange gorest.EndPoint `method:"GET" path:"/query_range?{expr:string}&{end:int64}&{range:int64}&{step:int64}" output:"string"`
metrics gorest.EndPoint `method:"GET" path:"/metrics" output:"string"`
persistence metric.MetricPersistence
time utility.Time
}
func NewMetricsService(persistence metric.MetricPersistence) *MetricsService {
return &MetricsService{
persistence: persistence,
}
}