mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-26 22:19:40 -08:00
12 lines
321 B
Go
12 lines
321 B
Go
package api
|
|
|
|
import (
|
|
"code.google.com/p/gorest"
|
|
)
|
|
|
|
type MetricsService struct {
|
|
gorest.RestService `root:"/api/" consumes:"application/json" produces:"application/json"`
|
|
|
|
query gorest.EndPoint `method:"GET" path:"/query?{expr:string}&{json:string}&{start:string}&{end:string}" output:"string"`
|
|
}
|