summaryrefslogtreecommitdiffstats
path: root/dashboard/dashboard/elastic2kibana/templates/tests_failures.json
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-12-19 07:34:20 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-12-19 07:34:20 +0000
commitc2907beb200142f57568371205092a700a49541d (patch)
tree882f32c2fe71c0e4bac091ae17d5cc258aea9e22 /dashboard/dashboard/elastic2kibana/templates/tests_failures.json
parent691d69df901b68ea5e85ca254bd7f2c270393182 (diff)
parent3f672f0e918c5c461008a7fc0e53e63b79083d34 (diff)
Merge "remove deprecated dashboard code"
Diffstat (limited to 'dashboard/dashboard/elastic2kibana/templates/tests_failures.json')
-rw-r--r--dashboard/dashboard/elastic2kibana/templates/tests_failures.json45
1 files changed, 0 insertions, 45 deletions
diff --git a/dashboard/dashboard/elastic2kibana/templates/tests_failures.json b/dashboard/dashboard/elastic2kibana/templates/tests_failures.json
deleted file mode 100644
index 01f9ba8..0000000
--- a/dashboard/dashboard/elastic2kibana/templates/tests_failures.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{% set aggs = aggs|default([]) -%}
-
-{
- "title": "tests_failures",
- "type": "histogram",
- "listeners": {},
- "params": {
- "addLegend": true,
- "shareYAxis": true,
- "addTooltip": true,
- "smoothLines": false,
- "scale": "linear",
- "interpolate": "linear",
- "times": [],
- "addTimeMarker": false,
- "defaultYExtents": false,
- "setYExtents": false,
- "yAxis": {},
- "mode": "grouped"
- },
- "aggs": [
- {% for agg in aggs %}
- {
- "id": {{agg.id }},
- "type": "sum",
- "schema": "metric",
- "params": {
- "field": "{{agg.field}}"
- }
- },
- {% endfor %}
- {
- "id": {{ aggs|length + 1 }},
- "type": "date_histogram",
- "schema": "segment",
- "params": {
- "field": "start_date",
- "interval": "auto",
- "customInterval": "2h",
- "min_doc_count": 1,
- "extended_bounds": {}
- }
- }
- ]
-}