mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-12 16:44:05 -08:00
ad58fc4765
* web/ui: handle null case The call might sometimes return /api/v1/label/__name__/values the following: ``` {"status":"success","data":null} ``` Then the `index.js` file assumes that `data` is not `null`. However, that assumption fails and then we get this error in the console: ``` graph.js?v=foo:317 Uncaught TypeError: Cannot read property 'length' of null at Object.success (graph.js?v=foo:317) ... ``` Then it becomes impossible to, for example, send a simple query like `time()` and graph the results. Fix it by using an empty array as the result if it is `null`. Signed-off-by: Giedrius Statkevičius <giedriuswork@gmail.com> * ui: update static assets data Signed-off-by: Giedrius Statkevičius <giedriuswork@gmail.com> |
||
---|---|---|
.. | ||
api | ||
ui | ||
federate.go | ||
federate_test.go | ||
web.go | ||
web_test.go |