Documentation ¶
Overview ¶
Package ui Code generated by go-bindata. (@generated) DO NOT EDIT. sources: pkg/ui/static/react/asset-manifest.json pkg/ui/static/react/favicon.ico pkg/ui/static/react/index.html pkg/ui/static/react/manifest.json pkg/ui/static/react/static/css/main.a2b2a6e2.css pkg/ui/static/react/static/css/main.a2b2a6e2.css.map pkg/ui/static/react/static/js/main.51b3c648.js pkg/ui/static/react/static/js/main.51b3c648.js.LICENSE.txt pkg/ui/static/react/static/js/main.51b3c648.js.map pkg/ui/static/react/static/media/codicon.b3726f0165bf67ac6849.ttf pkg/ui/static/react/static/media/index.cd351d7c31d0d3fccf96.cjs
Index ¶
- func Asset(name string) ([]byte, error)
- func AssetDir(name string) ([]string, error)
- func AssetInfo(name string) (os.FileInfo, error)
- func AssetNames() []string
- func GetWebPrefix(logger log.Logger, externalPrefix, prefixHeader string, r *http.Request) string
- func MustAsset(name string) []byte
- func RestoreAsset(dir, name string) error
- func RestoreAssets(dir, name string) error
- func SanitizePrefix(prefix string) (string, error)
- type BaseUI
- type Bucket
- type Query
- type Rule
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Asset ¶
Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.
func AssetDir ¶
AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:
data/ foo.txt img/ a.png b.png
then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.
func AssetInfo ¶
AssetInfo loads and returns the asset info for the given name. It returns an error if the asset could not be found or could not be loaded.
func GetWebPrefix ¶ added in v0.3.0
GetWebPrefix sanitizes an external URL path prefix value. A value provided by web.external-prefix flag is preferred over the one supplied through an HTTP header.
func MustAsset ¶
MustAsset is like Asset but panics when Asset would return an error. It simplifies safe initialization of global variables.
func RestoreAsset ¶
RestoreAsset restores an asset under the given directory
func RestoreAssets ¶
RestoreAssets restores an asset under the given directory recursively
func SanitizePrefix ¶ added in v0.3.0
SanitizePrefix makes sure that path prefix value is valid. A prefix is returned without a trailing slash. Hence empty string is returned for the root path.
Types ¶
type Bucket ¶ added in v0.7.0
Bucket is a web UI representing state of buckets as a timeline.
func NewBucketUI ¶ added in v0.7.0
func (*Bucket) Register ¶ added in v0.7.0
func (b *Bucket) Register(r *route.Router, ins extpromhttp.InstrumentationMiddleware)
Register registers http routes for bucket UI.
type Query ¶
type Query struct { *BaseUI // contains filtered or unexported fields }
func NewQueryUI ¶
func (*Query) Register ¶
func (q *Query) Register(r *route.Router, ins extpromhttp.InstrumentationMiddleware)
Register registers new GET routes for subpages and redirects from / to /graph.
type Rule ¶
type Rule struct { *BaseUI // contains filtered or unexported fields }
func NewRuleUI ¶
func NewRuleUI(logger log.Logger, reg prometheus.Registerer, ruleManager *thanosrules.Manager, queryURL, externalPrefix, prefixHeader string) *Rule
func (*Rule) Register ¶
func (ru *Rule) Register(r *route.Router, ins extpromhttp.InstrumentationMiddleware)