diff --git a/CHANGELOG.md b/CHANGELOG.md index 20b1ac5c5d..2b5bd7bf00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping - [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate +- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty ### Added diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 9ca8d3cb0d..9eaf8d2ce5 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -486,7 +486,7 @@ func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, durati }) } -func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) (blocks []metadata.Meta, err error) { +func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) ([]metadata.Meta, error) { level.Info(logger).Log("msg", "synchronizing block metadata") metas, _, err := fetcher.Fetch(ctx) @@ -494,6 +494,8 @@ func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetch return nil, err } + blocks := []metadata.Meta{} + for _, meta := range metas { blocks = append(blocks, *meta) } diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index 8401b76622..ae7caaa700 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -160,7 +160,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -180,7 +180,7 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -200,7 +200,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1582880322, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -260,7 +260,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -280,7 +280,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -300,7 +300,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -320,7 +320,7 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -340,7 +340,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -360,7 +360,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -380,7 +380,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -400,7 +400,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -420,7 +420,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -440,7 +440,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -460,7 +460,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -480,12 +480,12 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xdb\xba\x15\x7f\xf7\xa7\x38\xd5\x8a\x6b\x09\xb1\x15\x17\x18\xf6\x90\xd8\x06\xee\xd2\x02\xbb\x43\x76\x3b\x34\x79\x5a\x50\x20\xb4\x78\x6c\x71\xa1\x48\x8d\xa4\xe2\xba\x81\xbf\xfb\x40\x4a\x94\x68\x59\xf6\x75\x7b\x89\xa2\x88\xc8\x73\x7e\xe7\xff\x1f\x6f\xa4\xdc\x70\x4c\xb3\x9c\x28\xa3\x53\x2e\x09\x8d\xc7\x59\xa5\x14\x0a\x33\x9e\xc0\xdb\x08\x00\x60\x5c\x92\xec\x85\x6c\x50\x8f\x6f\xe0\x69\x6c\x58\x81\x9c\x09\x1c\x7f\x1d\xed\x93\xdb\xd1\x21\x80\x46\xf3\x59\xdc\x4b\x42\xef\x08\xe7\x2b\x92\xbd\xc4\x54\x91\x6d\x72\x3b\x1a\xad\x2b\x91\x19\x26\x05\xd8\x8b\x38\x69\xa0\xd9\x1a\x62\x93\x13\x21\x75\xaa\x70\xad\x50\xe7\x48\x7f\x35\xb0\x58\x40\x34\x9b\xcd\x3e\x4c\xdd\xbf\xc7\xd9\xec\xc6\xfd\xfb\x4f\xe4\xf9\xec\x69\xf8\x50\x29\x58\x40\xf4\xb0\x13\x59\xae\xa4\x60\xdf\x99\xd8\xc0\x8a\xcb\xec\x45\xc3\x5a\xc9\x02\x14\x16\xd2\x20\x68\x23\x15\xd9\x60\x74\xeb\x00\xf6\xa3\xbe\x7c\x8b\xf3\x6e\x01\xa2\xe2\x3c\x94\xf2\x3e\x8e\xfe\x82\x4a\x45\x49\xaa\x73\xb9\x8d\x93\x74\xcd\x04\x8d\xc7\x29\xe1\xa8\xcc\x38\x49\x0d\x7e\x33\xf1\x3f\x1f\x3e\xff\x9e\x6a\xa3\x98\xd8\xb0\xf5\x2e\x40\x9c\x38\xbc\x09\xfc\x35\x49\x6e\x5b\x48\x8d\xe6\x91\x15\x28\x2b\x13\x7b\xaf\xc4\xa1\x48\x7b\xb8\xcc\x88\x7d\x48\x15\xba\xa0\x04\xec\xfb\x09\x7c\x98\xcd\x66\x33\xeb\x55\xf7\x0d\xc8\x35\x0e\xaa\x9c\x33\x8a\xb1\xa7\xb3\xe7\x95\x28\xc8\xa4\x30\x84\x09\xb4\x6e\xa3\x32\xab\x0a\x14\x26\xdd\xa0\xf9\xc4\xd1\xfe\xf9\xf7\xdd\x6f\x34\x1e\xdf\xc9\xa2\x24\x4e\x35\x3d\x0e\x64\x3b\x7e\x1b\x6a\x58\x80\xc0\x2d\x34\xd1\x7f\x65\xba\x22\x9c\x7d\xaf\x55\x7e\x6c\x32\x24\x6e\x25\xf5\x10\x28\x31\xe4\x91\xac\x38\x9e\x43\xf9\xe8\x89\xe2\x1e\xb7\x61\x86\xa3\x86\x05\xbc\xed\x03\xcb\x5a\xcc\x94\x50\x7a\x27\x79\x55\x88\xf8\xcd\xec\x4a\xbc\x81\x71\x1d\x99\xf1\x04\x18\xbd\x81\xf1\x17\x2c\x39\xcb\xc8\x78\x1f\xe0\x5e\xce\x7d\x4f\x56\xc8\x7f\x9c\x57\x49\x6e\xbf\x8d\x94\xdc\xb0\xf2\x62\x7e\x4a\x0c\x7a\xc9\x0f\x86\x28\xf3\x53\x9c\x9f\x04\x75\x7c\xc3\x8c\x5f\xe4\x56\xfb\x94\xad\xeb\xe6\x20\x13\x53\x2d\x95\x89\x63\x32\x81\x55\x02\x8b\x25\x90\xb4\xa1\xa5\x72\x2b\x34\x29\x4a\x8e\xa9\x42\x2d\x79\xe5\xca\x7b\x0a\xab\xb3\x04\xc9\x21\x78\x41\xca\xae\x08\x68\xbf\x0a\xec\xb9\xbe\x86\x47\x1b\x71\x60\x1a\x4c\x8e\xb0\x66\x4a\x1b\xc8\x9c\xb5\x20\xd7\xee\xce\xf7\xa4\x74\x80\x7b\x08\xf0\x57\xa8\x04\xfb\x5f\x85\xf0\x6f\x25\x0b\x34\x39\x56\x1a\xb8\x0d\xac\x6d\x2a\x06\x18\x45\x61\xd8\x9a\xa1\x06\x24\x59\x0e\x3a\x27\x8a\x5a\xf9\x95\x46\x3a\x84\x47\x74\xa3\x86\xd3\x73\x0d\xa5\x42\x8d\xc2\x4c\x40\x9a\x1c\xd5\x96\x69\xac\xe1\x35\x10\x85\x40\x99\x2e\x39\xd9\x0d\x43\xe1\x37\x83\x4a\x10\xce\x77\x16\x95\x00\xc7\x0d\x0a\x7a\x6c\x58\x2d\x6b\x01\x27\x3b\x88\x3f\xb6\x64\x5e\x70\x07\x0b\xdf\x30\x6b\x43\xdf\x2d\x20\x8a\xe0\x97\x5f\x80\xa6\xe1\xbd\x7e\x0a\xbf\xbe\x06\x39\x13\x1e\xdb\x36\x2d\xe6\xbb\x05\x54\x82\xe2\x9a\x09\x1c\x8c\x9d\x3f\x0a\x4d\xa5\x84\x55\xe3\x76\x90\xe6\xa8\x85\x9d\xb2\xb6\xae\xfd\xa7\xae\xd5\xf6\xb4\x4f\xbe\x0e\x0b\xf0\x4a\x37\x38\x17\xaa\x1d\x4a\x7e\x70\x22\xe3\xcf\xab\xff\x62\x66\xd2\x17\xdc\xe9\x1a\x4c\x27\x29\x47\xb1\x31\x39\x5c\xc1\x87\xe4\xb4\xf4\x16\xeb\xac\xf6\xde\xc4\xd3\x38\xfb\x3f\x72\xf2\x19\xfe\x63\xde\xfd\xc1\x74\xf0\xa7\xce\x90\x05\x3c\x73\x7c\x45\x7e\x03\xef\xdf\x68\x9a\xb5\x03\x21\x75\xb7\xfb\x09\x74\x45\x5d\x93\x9c\x2b\xfb\xfd\xf3\xb1\x4a\x8d\xc2\x4f\x4e\xe3\x49\x2d\x75\x02\x1b\x14\xa8\x88\xc1\xc7\xba\x55\xc6\x34\x99\xb8\x21\xf1\x91\x18\x8c\x69\x5a\x30\x61\xe7\x4b\xef\x92\x7c\x73\x97\xbd\xe8\xef\x93\xd0\x3a\x37\xb7\x52\xb7\x7e\xb4\xfd\x2f\x7c\xbf\xbe\x86\x87\x5c\x6e\xdb\x0a\x6c\x4a\xcf\xe6\x8d\x90\xc1\x6d\x5d\xc8\x5b\x54\x68\x27\x79\x57\x99\xc1\x2e\xd1\x38\xd0\x96\x58\x3f\xbf\xec\x70\xae\x81\xdb\x95\xe2\x50\xe9\xb5\x54\x10\x73\x34\xf0\xf4\x82\xbb\x09\xbc\x12\x5e\xe1\x57\xdb\xe8\x9a\xd4\x43\x61\x14\xc3\x36\xfb\x86\xf2\x57\xc9\xad\x8d\xde\xdc\xa8\x25\xcc\x4d\x0e\x3a\x93\x25\x2e\x22\x25\xb7\xd1\xf2\xfd\x9b\x43\xdc\xcf\xaf\x4d\x6e\x5f\xe9\xf2\xfd\xdb\x0b\xee\xec\x37\x5d\xc2\xfc\xda\xa8\xe5\x40\xa8\x3a\xad\xc1\xb8\xc1\x6d\x56\x92\xee\xa2\x24\x25\x65\x89\x82\xc6\x4a\x6e\x7b\x66\x74\xb9\xb6\x6f\x16\xae\x7d\xb0\x04\x76\x25\x50\x90\xd2\x9b\xe0\x86\xbb\xdd\xe5\x9a\x1d\xed\x52\x4f\x58\x88\x83\xc5\x10\xae\x16\xf0\x5c\x9b\x65\x33\xb3\x36\x18\x9e\xfd\xe6\x17\xe4\x9e\xb9\x3d\x50\xab\x9f\x7b\x6e\x1c\x1e\xa8\x57\x3f\x84\x9b\x53\xa6\x90\x18\x6c\x96\xa7\x38\xa2\xec\x35\x6a\x5c\xd1\x10\xa7\x19\x27\x5a\xff\x4e\x0a\xdb\x46\xa2\x8c\x28\x1a\xdd\x8e\x46\x1d\x64\xd3\x60\x4e\x01\xe6\x7f\x6b\xf1\x2c\xe5\x31\xda\x34\x47\x42\x51\x81\xdd\x44\xa7\x42\x6e\x15\x29\xa3\x90\x81\x09\x81\xea\x1f\x8f\xff\xba\x87\x45\xbd\x17\xa7\x15\x67\xf4\xb6\xd3\x80\x89\xb5\x3c\xa3\x40\xc5\xbd\x02\x96\xf0\x50\x3e\x67\xda\x4c\x37\x4a\x56\x25\x74\x7f\x4e\xd7\xbc\xd2\x79\x14\x48\x28\xd0\x90\xdf\xce\x4b\xe1\xcc\x4b\xf1\xc4\xa7\x24\x4d\x99\xc1\x22\xea\xd1\x86\x46\x46\xf3\x72\x39\x5f\x2d\xdd\xa6\xa6\xe7\xd7\xab\xe5\xfc\xba\x5c\x36\x0c\x56\x1b\x57\x9d\x7e\xff\x3c\xa5\x8f\x4b\x73\xaf\x52\xc7\x71\xa8\x54\x53\x0b\xf6\xff\xa9\x2e\xa0\x58\x4d\x67\x3f\x98\xbb\x75\x40\x0e\xa7\x40\x98\xcb\x81\xe4\xce\xc4\xab\xa6\xb8\x7b\xd5\x5b\x7f\xb6\xe5\x4d\x97\x61\x35\xef\x0f\xfd\x55\xd7\xed\x5d\xce\x38\x8d\x3b\x19\x49\x10\x33\xbb\x40\x5e\x1c\x33\x17\xe4\xba\x33\x37\x3b\xbd\xeb\xcc\xb5\x75\xbe\x65\x07\xa4\x75\xbf\x1e\x20\x6d\x1a\x79\xa3\x87\xd7\xe1\x92\x54\x68\x69\xc3\x54\xf0\x05\x7d\x6f\x7f\x8e\x44\x6e\x83\x76\xe2\x6e\x20\x9a\x78\x85\x53\x23\xef\x65\x46\x38\xda\x87\x66\xcc\x27\x70\x05\x11\x44\x70\x75\x44\x64\x3f\x3c\x51\x72\x52\xf2\x55\x5f\xf4\x27\x41\x03\xc1\xb5\x95\x7f\x20\xb8\x47\xf4\x93\x82\x3f\x56\x8a\xd4\x23\xda\x0a\x96\x2e\x8c\xb4\xb9\x8b\x1b\x19\x53\x1f\xa1\x34\xaf\x0a\x22\xd8\x77\x8c\x93\x30\x15\xb4\x21\x46\x5f\x9c\x0b\x2d\xf5\x25\x51\xeb\x88\xcf\x84\x0d\x6d\xa9\x38\x03\xea\x2c\x71\x4c\xa9\xa8\x8a\xfa\xa5\x75\x51\xcf\x3d\x43\xd8\x47\xfe\x79\x70\x9b\xca\x30\x7a\xfd\xf4\xa7\xe0\xef\xf2\x4a\xbc\x0c\xa2\xd7\x2f\x03\xe0\x00\x9d\xe7\x9b\xad\xeb\x62\xdf\x07\xf4\x97\x78\x3f\x24\x3f\xed\xff\x2f\xc1\x9e\xd7\xda\x71\xf6\x37\xde\x39\xf4\x23\x17\xdd\xd7\x4b\x66\x8b\xdc\xdf\x34\x7f\x0c\xed\x41\x56\x2a\xc3\x63\x45\xb5\xbb\xf7\x59\xcd\xfa\x3d\xd0\x37\xc6\x70\xd2\x85\xef\xbe\xd4\x4e\xbd\xb7\xc9\x70\x8a\x20\x50\xdf\x2b\xe1\xf7\x83\x90\xcc\x8d\xec\xde\xfe\x10\xbe\xb3\x80\xdf\xef\x30\x0d\x99\xac\x4c\xed\x94\xe1\x9d\xc6\xb9\xa7\x1b\x46\x7e\xc8\x34\x20\xd1\x7c\xb5\xb4\x5d\xc7\xfe\xaa\xbb\x82\xc8\x4e\x4d\xfb\xe9\x48\x9b\x0b\xb5\x8c\x46\xfb\xd1\xff\x03\x00\x00\xff\xff\x96\x06\x7b\xc3\x31\x14\x00\x00") +var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xe2\x3a\x16\x7f\xef\xa7\x38\x93\x1d\x5d\x12\x15\x52\x46\x5a\xed\x43\x0b\x48\x77\x3b\x23\xed\x5d\x75\x67\x56\xd3\x3e\x6d\x35\x52\x4d\x7c\x20\x5e\x1c\x9b\xb5\x9d\x32\x4c\xc5\x77\x5f\xd9\x8e\x83\x09\x81\xcb\xdc\x1b\x21\x44\xec\x73\x7e\xe7\xff\x1f\x96\x52\x2e\x39\xe6\x45\x49\x94\xd1\x39\x97\x84\xa6\x83\xa2\x56\x0a\x85\x19\x0c\xe1\xed\x0a\x00\x60\xb0\x26\xc5\x8a\x2c\x51\x0f\x6e\xe1\x79\x60\x58\x85\x9c\x09\x1c\x7c\xbb\xda\x65\x77\x57\x87\x00\x1a\xcd\x17\xf1\x20\x09\xbd\x27\x9c\xcf\x49\xb1\x4a\xa9\x22\x9b\xec\xee\xea\x6a\x51\x8b\xc2\x30\x29\xc0\x1e\xa4\x59\x03\xcd\x16\x90\x9a\x92\x08\xa9\x73\x85\x0b\x85\xba\x44\xfa\xab\x81\xe9\x14\x92\xf1\x78\xfc\x61\xe4\x3e\x4f\xe3\xf1\xad\xfb\xfc\x27\x09\x7c\xf6\x69\xf8\x50\x29\x98\x42\xf2\xb8\x15\x45\xa9\xa4\x60\x3f\x98\x58\xc2\x9c\xcb\x62\xa5\x61\xa1\x64\x05\x0a\x2b\x69\x10\xb4\x91\x8a\x2c\x31\xb9\x73\x00\x3b\xf7\x8d\x5c\xa3\xd3\xe1\x5d\x04\xf6\xcb\x2f\x01\xda\xa3\xe4\x1c\xc5\xd2\x94\x56\xa9\xf1\x69\xf9\x9f\x65\x10\x4a\x14\x42\xe3\x42\xbe\x05\xeb\x52\xa4\xad\xd4\xae\xd5\x96\xfb\xdd\x14\x44\xcd\x79\x8c\xfd\x3e\x4d\xfe\x82\x4a\x25\x59\xae\x4b\xb9\x49\xb3\x7c\xc1\x04\x4d\x07\x39\xe1\xa8\xcc\x20\xcb\x0d\x7e\x37\xe9\x3f\x1f\xbf\x7c\xce\xb5\x51\x4c\x2c\xd9\x62\x1b\x21\x0e\x1d\xde\x10\xfe\x9a\x65\x77\x2d\xa4\x46\xf3\xc4\x2a\x94\xb5\x49\x43\x2c\xd2\x58\xa4\x7d\xb8\x2c\x88\xbd\xc8\x15\xba\x54\x88\xd8\x77\x43\xf8\x30\x1e\x8f\xc7\x36\x96\xee\xdd\x3b\xaf\x4f\xe5\x92\x51\x4c\x03\x9d\x7d\x5e\x89\x82\x42\x0a\x43\x98\x40\xeb\x2c\x2a\x8b\xba\x42\x61\xf2\x25\x9a\x4f\x1c\xed\xcf\xbf\x6f\x7f\xa3\xe9\xe0\x5e\x56\x6b\xe2\x54\xd3\x83\x48\xb6\xe3\xb7\x09\x06\x53\x10\xb8\x81\x26\xe7\x5e\x99\xae\x09\x67\x3f\xbc\xca\x4f\x4d\x5e\xa6\xad\xa4\x0e\x02\x25\x86\x3c\x91\x39\xc7\x73\x28\x1f\x03\x51\xda\xe1\x36\xcc\x70\xd4\x30\x85\xb7\x5d\x64\x59\x8b\x99\x13\x4a\xef\x25\xaf\x2b\x91\xbe\x99\xed\x1a\x6f\x61\xe0\x23\x33\x18\x02\xa3\xb7\x30\xf8\x8a\x6b\xce\x0a\x32\xd8\x45\xb8\x97\x73\x3f\x90\x39\xf2\x9f\xe7\x55\x92\xdb\x77\x23\x25\x37\x6c\x7d\x31\x3f\x25\x06\x83\xe4\x47\x43\x94\xf9\x43\x9c\x9f\x04\x75\x7c\xfd\x8c\x5f\xe5\x46\xa7\x07\x75\x76\x90\x89\xb9\x96\xca\xa4\x29\x19\xc2\x3c\x83\xe9\x0c\x48\xde\xd0\x52\xb9\x11\x9a\x54\x6b\x8e\xb9\x42\x2d\x79\xed\x9a\xca\x08\xe6\x67\x09\xb2\x43\xf0\x8a\xac\xf7\x45\x40\xbb\x55\x60\x9f\x9b\x1b\x78\xb2\x11\x07\xa6\xc1\x94\x08\x0b\xa6\xb4\x81\xc2\x59\x0b\x72\xe1\xce\x42\x27\xcc\x7b\xb8\xfb\x00\x7f\x85\x5a\xb0\xff\xd5\x08\xff\x56\xb2\x42\x53\x62\xad\x81\xdb\xc0\xda\x56\x62\x80\x51\x14\x86\x2d\x18\x6a\x40\x52\x94\xa0\x4b\xa2\xa8\x95\x5f\x6b\xa4\x7d\x78\x44\x37\x6a\x38\x3d\x17\xb0\x56\xa8\x51\x98\x21\x48\x53\xa2\xda\x30\x8d\x1e\xde\xb7\x24\xca\xf4\x9a\x93\x6d\x3f\x14\x7e\x37\xa8\x04\xe1\x7c\x6b\x51\x09\x70\x5c\xa2\xa0\xc7\x86\x79\x59\x53\x38\xd9\x41\xc2\x63\x4b\x66\x85\x5b\x98\x86\x36\xe9\x0d\x7d\x37\x85\x24\xb1\x1d\x96\xe6\xf1\xb9\x7e\x8e\xdf\xbe\x45\x39\x13\x3f\xb6\x6d\xae\x70\x7b\x4a\xa4\x7d\x14\x9a\x5a\x09\x2b\xf9\xae\x97\xe6\xa8\x6b\x9d\x32\xd0\x97\xfb\xf3\xbe\xbb\x76\x14\xce\xbe\xf5\x0b\x08\x7a\x36\x38\x53\xa8\x05\xc5\x05\x13\xd8\x9b\x65\x7d\x92\x1f\x9d\xc8\xf4\xcb\xfc\xbf\x58\x98\x7c\x85\x5b\xed\xc1\x74\x16\x06\xd1\x35\x7c\xc8\x4e\x4b\x6f\xb1\xce\x6a\x1f\x4c\x3c\x8d\xb3\xfb\x3d\x27\x9f\xe1\x3f\xe6\xdd\x1d\x0c\x84\xf0\xf8\xa4\x98\xc2\x0b\xc7\x57\xe4\xb7\xf0\xfe\x8d\xe6\x45\x3b\x03\x72\x77\xba\x1b\xc2\xbe\x8e\x3d\xc9\xb9\x4a\xdf\xbd\x1c\xab\xd4\x28\xfc\xec\x34\x1e\x7a\xa9\x43\x58\xa2\x40\x45\x0c\x3e\xf9\xee\x98\xd2\x6c\xe8\xe6\xc2\x47\x62\x30\xa5\x79\xc5\x84\x1d\x29\x9d\x43\xf2\xdd\x1d\x76\xa2\xbf\xcb\x62\xeb\xdc\xa8\xca\xdd\x9e\xd3\xb6\xbc\xf8\xfe\xe6\x06\x1e\x4b\xb9\x69\x8b\xae\xa9\x36\x9b\x37\x42\x46\xa7\xbe\x76\x37\xa8\xd0\x0e\xef\x7d\x31\x46\xeb\x43\xe3\x40\x5b\x55\xdd\xfc\xb2\xf3\xd8\x03\xb7\x5b\xc4\xa1\xd2\x0b\xa9\x20\xe5\x68\xe0\x79\x85\xdb\x21\xbc\x12\x5e\xe3\x37\xdb\xdb\x9a\xd4\x43\x61\x14\xc3\x36\xfb\xfa\xf2\x57\xc9\x8d\x8d\xde\xc4\xa8\x19\x4c\x4c\x09\xba\x90\x6b\x9c\x26\x4a\x6e\x92\xd9\xfb\x37\x87\xb8\x9b\xdc\x98\xd2\xde\xd2\xd9\xfb\xb7\x15\x6e\xed\x3b\x9d\xc1\xe4\xc6\xa8\x59\x4f\xa8\xf6\x5a\x83\x71\xb3\xda\xcc\x25\xdd\x26\x59\x4e\xd6\x6b\x14\x34\x55\x72\xd3\x31\x63\x9f\x6b\xbb\x66\xc7\xda\x45\xdb\xe6\xbe\x04\x2a\xb2\x0e\x26\xb8\x79\x6e\x97\xb6\x66\x2d\xbb\xd4\x13\x16\xe2\x60\x03\x84\xeb\x29\xbc\x78\xb3\x6c\x66\x7a\x83\xe1\x25\x5e\x31\x43\xb1\xdc\x1d\xa8\xd5\xcd\x3d\x37\x01\x0f\xd4\xf3\x17\xf1\xb2\x54\x28\x24\x06\x9b\x7d\x29\x4d\x28\x7b\x4d\x1a\x57\x34\xc4\x79\xc1\x89\xd6\x9f\x49\x65\xdb\x48\x52\x10\x65\xd7\xce\xab\x3d\x64\xd3\x60\x4e\x01\x96\x7f\x6b\xf1\x2c\xe5\x31\xda\xa8\x44\x42\x51\x81\x5d\x3e\x47\x42\x6e\x14\x59\x27\x31\x03\x13\x02\xd5\x3f\x9e\xfe\xf5\x00\x53\xbf\x0b\xe7\x35\x67\xf4\x6e\xaf\x01\x13\x0b\x79\x46\x81\x9a\x07\x05\x2c\xe1\xa1\x7c\xce\xb4\x19\x2d\x95\xac\xd7\xb0\xff\x39\x5a\xf0\x5a\x97\x49\x24\xa1\x42\x43\x7e\x3b\x2f\x85\xb3\x20\x25\x10\x9f\x92\x34\x62\x06\xab\xa4\x43\x1b\x1b\x99\x4c\xd6\xb3\xc9\x7c\xe6\x96\x33\x3d\xb9\x99\xcf\x26\x37\xeb\x59\xc3\x60\xb5\x71\xd5\x19\x56\xce\x53\xfa\xb8\x34\x0f\x2a\xed\x39\x0e\x95\x6a\x6a\xc1\x7e\x8f\x74\x05\xd5\x7c\x34\xfe\xc9\xdc\xf5\x01\x39\x9c\x02\x71\x2e\x47\x92\xf7\x26\x5e\x37\xc5\xdd\xa9\x5e\xff\xda\x96\x37\x9d\xc5\xd5\xbc\x3b\xf4\x97\xaf\xdb\xfb\x92\x71\x9a\xee\x65\x64\x51\xcc\xec\xce\x78\x71\xcc\x5c\x90\x7d\x67\x6e\xd6\x78\xd7\x99\xbd\x75\xa1\x65\x47\xa4\xbe\x5f\xf7\x90\x36\x8d\xbc\xd1\x23\xe8\x70\x49\x2a\xb4\xb4\x71\x2a\x84\x82\x7e\xb0\xff\x40\x12\xb7\x34\x3b\x71\xb7\x90\x0c\x83\xc2\xb9\x91\x0f\xb2\x20\x1c\xed\x45\x33\xe6\x33\xb8\x86\x04\x12\xb8\x3e\x22\xb2\x2f\x81\x28\x3b\x29\xf9\xba\x2b\xfa\x93\xa0\x91\x60\x6f\xe5\xef\x08\xee\x10\xfd\x41\xc1\x1f\x6b\x45\xfc\x88\xb6\x82\xa5\x0b\x23\x6d\xce\xd2\x46\xc6\x28\x44\x28\x2f\xeb\x8a\x08\xf6\x03\xd3\x2c\x4e\x05\x6d\x88\xd1\x17\xe7\x42\x4b\x7d\x49\xd4\xf6\xc4\x67\xc2\x86\xb6\x54\x9c\x01\x3e\x4b\x1c\x53\x2e\xea\xca\xdf\xb4\x2e\xea\xb8\xa7\x0f\xfb\xc8\x3f\x8f\x6e\x53\xe9\x47\xf7\x57\x7f\x0a\xfe\xbe\xac\xc5\xaa\x17\xdd\xdf\xf4\x80\x03\xec\x3d\xdf\x6c\x5d\x17\xfb\x3e\xa2\xbf\xc4\xfb\x31\xf9\x69\xff\x7f\x8d\xf6\xbc\xd6\x8e\xb3\x7f\xeb\xce\xa1\x1f\xb9\xe8\xc1\x2f\x99\x2d\x72\x77\xd3\xfc\x39\xb4\x47\x59\xab\x02\x8f\x15\xd5\xee\x3c\x64\x35\xeb\xf6\xc0\xd0\x18\xe3\x49\x17\xdf\x87\x52\x3b\x75\xdf\x26\xc3\x29\x82\x48\xfd\xa0\x44\xd8\x0f\x62\x32\x37\xb2\x3b\xfb\x43\x7c\xcf\x22\xfe\xb0\xc3\x34\x64\xb2\x36\xde\x29\xfd\x3b\x8d\x73\xcf\x7e\x18\x85\x21\xd3\x80\x24\x93\xf9\xcc\x76\x1d\xfb\xe7\xf0\x1a\x12\x3b\x35\xed\xab\x23\x6d\x0e\xd4\x2c\xb9\xda\x5d\xfd\x3f\x00\x00\xff\xff\xe7\x65\x3f\x08\x9a\x14\x00\x00") func pkgUiStaticJsBucketJsBytes() ([]byte, error) { return bindataRead( @@ -500,7 +500,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5169, mode: os.FileMode(420), modTime: time.Unix(1583883963, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(420), modTime: time.Unix(1584478576, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -520,7 +520,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -540,7 +540,7 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -560,7 +560,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -580,7 +580,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -600,7 +600,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -620,7 +620,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -640,7 +640,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -660,7 +660,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -680,7 +680,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -700,7 +700,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -720,7 +720,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -740,7 +740,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -760,7 +760,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -780,7 +780,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -800,7 +800,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -820,7 +820,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -840,7 +840,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -860,7 +860,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -880,7 +880,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -900,7 +900,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -920,7 +920,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -940,7 +940,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -960,7 +960,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -980,7 +980,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1000,7 +1000,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1020,7 +1020,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1040,7 +1040,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1060,7 +1060,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1080,7 +1080,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1100,7 +1100,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1120,7 +1120,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1140,7 +1140,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1160,7 +1160,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1180,7 +1180,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1200,7 +1200,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1220,7 +1220,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1240,7 +1240,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1260,7 +1260,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1280,7 +1280,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1300,7 +1300,7 @@ func pkgUiStaticVendorJsJquery331MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1320,7 +1320,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1340,7 +1340,7 @@ func pkgUiStaticVendorJsJqueryMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1360,7 +1360,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1380,7 +1380,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1400,7 +1400,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1420,7 +1420,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1440,7 +1440,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1460,7 +1460,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1480,7 +1480,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1500,7 +1500,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1520,7 +1520,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/ui/static/js/bucket.js b/pkg/ui/static/js/bucket.js index 8ad6a40e51..15fd9bc217 100644 --- a/pkg/ui/static/js/bucket.js +++ b/pkg/ui/static/js/bucket.js @@ -7,6 +7,9 @@ function draw() { if (thanos.refreshedAt == "0001-01-01T00:00:00Z") { thanos.err = "Synchronizing blocks from remote storage"; } + else if (!thanos.err && thanos.blocks.length == 0) { + thanos.err = "No blocks are currently loaded"; + } if (thanos.err != null) { $("#err").show().find('.alert').text(JSON.stringify(thanos.err, null, 4)); @@ -39,7 +42,7 @@ function draw() { title = function() { var key = thanos.label != "" && d.thanos.labels[thanos.label]; - if (key != undefined) { + if (key) { return key; } else { title = titles[stringify(d.thanos.labels)];