grafana/pkg/services/anonymous/service.go

22 lines
478 B
Go
Raw Normal View History

package anonymous
import (
"context"
"net/http"
"time"
"github.com/grafana/grafana/pkg/services/anonymous/anonimpl/anonstore"
)
type DeviceKind string
const (
AnonDeviceUI DeviceKind = "ui-anon-session"
)
type Service interface {
TagDevice(context.Context, *http.Request, DeviceKind) error
CountDevices(ctx context.Context, from time.Time, to time.Time) (int64, error)
ListDevices(ctx context.Context, from *time.Time, to *time.Time) ([]*anonstore.Device, error)
}