Skip to content

Tempo Datasource Go SDK#

Constructor#

import "github.com/perses/perses-plugins/tempo/sdk/go/v1/datasource"

var options []datasource.Option
datasource.Tempo(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/perses-plugins/tempo/sdk/go/v1/datasource"

datasource.DirectURL("http://tempo.example.com:3200")

Set Tempo plugin for the datasource with a direct URL.

Proxy#

import "github.com/perses/perses-plugins/tempo/sdk/go/v1/datasource"

datasource.HTTPProxy("https://current-domain-name.io", httpProxyOptions...)

Set Tempo plugin for the datasource with a proxy URL. More info at HTTP Proxy.

Example#

package main

import (
    "github.com/perses/perses/go-sdk/dashboard"

    tempoDs "github.com/perses/perses-plugins/tempo/sdk/go/v1/datasource"
)

func main() {
    dashboard.New("Tempo Dashboard",
        dashboard.AddDatasource("tempoMain", tempoDs.Tempo(tempoDs.DirectURL("http://tempo.example.com:3200"))),
    )
}