ui

package
v0.6.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 14, 2019 License: Apache-2.0 Imports: 27 Imported by: 0

README

The ui package contains static files and templates used in the web UI. For easier distribution they are statically compiled into the Thanos binary using the go-bindata tool (c.f. Makefile).

During development it is more convenient to always use the files on disk to directly see changes without recompiling. Set the environment variable DEBUG=1 and compile Thanos for this to work. This is for development purposes only.

After making changes to any file, run make assets before committing to update the generated inline version of the file.

Documentation

Overview

Package ui Code generated by go-bindata. (@generated) DO NOT EDIT. sources: pkg/ui/templates/_base.html pkg/ui/templates/alerts.html pkg/ui/templates/bucket.html pkg/ui/templates/bucket_menu.html pkg/ui/templates/graph.html pkg/ui/templates/query_menu.html pkg/ui/templates/rule_menu.html pkg/ui/templates/rules.html pkg/ui/templates/status.html pkg/ui/templates/stores.html pkg/ui/static/css/alerts.css pkg/ui/static/css/graph.css pkg/ui/static/css/prometheus.css pkg/ui/static/css/rules.css pkg/ui/static/img/ajax-loader.gif pkg/ui/static/img/favicon.ico pkg/ui/static/js/alerts.js pkg/ui/static/js/bucket.js pkg/ui/static/js/graph.js pkg/ui/static/js/graph_template.handlebar pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2 pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2 pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2 pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2 pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js pkg/ui/static/vendor/fuzzy/fuzzy.js pkg/ui/static/vendor/js/jquery-3.3.1.min.js pkg/ui/static/vendor/js/jquery.hotkeys.js pkg/ui/static/vendor/js/jquery.min.js pkg/ui/static/vendor/js/jquery.selection.js pkg/ui/static/vendor/js/popper.min.js pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js pkg/ui/static/vendor/moment/moment.min.js pkg/ui/static/vendor/mustache/mustache.min.js pkg/ui/static/vendor/rickshaw/rickshaw.min.css pkg/ui/static/vendor/rickshaw/rickshaw.min.js pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Asset

func Asset(name string) ([]byte, error)

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

func AssetDir(name string) ([]string, error)

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

func AssetInfo(name string) (os.FileInfo, error)

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 AssetNames

func AssetNames() []string

AssetNames returns the names of the assets.

func GetWebPrefix added in v0.3.0

func GetWebPrefix(logger log.Logger, flagsMap map[string]string, r *http.Request) string

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

func MustAsset(name string) []byte

MustAsset is like Asset but panics when Asset would return an error. It simplifies safe initialization of global variables.

func RestoreAsset

func RestoreAsset(dir, name string) error

RestoreAsset restores an asset under the given directory

func RestoreAssets

func RestoreAssets(dir, name string) error

RestoreAssets restores an asset under the given directory recursively

func SanitizePrefix added in v0.3.0

func SanitizePrefix(prefix string) (string, error)

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 AlertStatus

type AlertStatus struct {
	AlertingRules        []thanosrule.AlertingRule
	AlertStateToRowClass map[rules.AlertState]string
}

AlertStatus bundles alerting rules and the mapping of alert states to row classes.

type BaseUI

type BaseUI struct {
	// contains filtered or unexported fields
}

func NewBaseUI

func NewBaseUI(logger log.Logger, menuTmpl string, funcMap template.FuncMap) *BaseUI

type Bucket added in v0.6.0

type Bucket struct {
	*BaseUI
	// Unique Prometheus label that identifies each shard, used as the title. If
	// not present, all labels are displayed externally as a legend.
	Label       string
	Blocks      template.JS
	RefreshedAt time.Time
	Err         error
}

Bucket is a web UI representing state of buckets as a timeline.

func NewBucketUI added in v0.6.0

func NewBucketUI(logger log.Logger, label string) *Bucket

func (*Bucket) Register added in v0.6.0

Register registers http routes for bucket UI.

func (*Bucket) Set added in v0.6.0

func (b *Bucket) Set(data string, err error)

type Query

type Query struct {
	*BaseUI
	// contains filtered or unexported fields
}

func NewQueryUI

func NewQueryUI(logger log.Logger, storeSet *query.StoreSet, flagsMap map[string]string) *Query

func (*Query) Register

Register registers new GET routes for subpages and retirects from / to /graph.

type Rule

type Rule struct {
	*BaseUI
	// contains filtered or unexported fields
}

func NewRuleUI

func NewRuleUI(logger log.Logger, ruleManagers map[storepb.PartialResponseStrategy]*rules.Manager, queryURL string, flagsMap map[string]string) *Rule

func (*Rule) Register

func (ru *Rule) Register(r *route.Router, ins extpromhttp.InstrumentationMiddleware)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL