Prometheus Datasource Go SDK#
Constructor#
import "github.com/perses/plugins/prometheus/sdk/go/datasource"
var options []datasource.Option
datasource.Prometheus(options...)
Need a list of options. At least direct URL or proxy URL, in order to work.
Default options#
- None
Available options#
Direct URL#
import "github.com/perses/plugins/prometheus/sdk/go/datasource"
datasource.DirectURL("https://prometheus.demo.do.prometheus.io")
Configure the access to the Prometheus datasource with a direct URL.
Proxy#
import "github.com/perses/plugins/prometheus/sdk/go/datasource"
datasource.HTTPProxy("https://current-domain-name.io", httpProxyOptions...)
Configure the access to the Prometheus datasource with a proxy URL. More info at HTTP Proxy.
Example#
package main
import (
"github.com/perses/perses/go-sdk/dashboard"
promDs "github.com/perses/plugins/prometheus/sdk/go/datasource"
)
func main() {
dashboard.New("Example Dashboard",
dashboard.AddDatasource("prometheusDemo", promDs.Prometheus(promDs.DirectURL("https://prometheus.demo.do.prometheus.io/"))),
)
}