Continue organization
This commit is contained in:
parent
4898382f78
commit
b012f8295b
152 changed files with 21348 additions and 18 deletions
38
apps/leafcutter/config/visualizations/dataTable.json
Normal file
38
apps/leafcutter/config/visualizations/dataTable.json
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"title": "DataTable",
|
||||
"type": "table",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "incident.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 10,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "bucket"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"perPage": 10,
|
||||
"showPartialRows": false,
|
||||
"showMetricsAtAllLevels": false,
|
||||
"sort": { "columnIndex": null, "direction": null },
|
||||
"showTotal": false,
|
||||
"totalFunc": "sum",
|
||||
"percentageCol": ""
|
||||
}
|
||||
}
|
||||
93
apps/leafcutter/config/visualizations/horizontalBar.json
Normal file
93
apps/leafcutter/config/visualizations/horizontalBar.json
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
{
|
||||
"title": "",
|
||||
"type": "horizontal_bar",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "incident.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": true,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "histogram",
|
||||
"grid": { "categoryLines": false },
|
||||
"categoryAxes": [
|
||||
{
|
||||
"id": "CategoryAxis-1",
|
||||
"type": "category",
|
||||
"position": "left",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 200
|
||||
},
|
||||
"title": {}
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
{
|
||||
"id": "ValueAxis-1",
|
||||
"name": "LeftAxis-1",
|
||||
"type": "value",
|
||||
"position": "bottom",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 75,
|
||||
"filter": true,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
}
|
||||
],
|
||||
"seriesParams": [
|
||||
{
|
||||
"show": true,
|
||||
"type": "histogram",
|
||||
"mode": "normal",
|
||||
"data": { "label": "Count", "id": "1" },
|
||||
"valueAxis": "ValueAxis-1",
|
||||
"drawLinesBetweenPoints": true,
|
||||
"lineWidth": 2,
|
||||
"showCircles": true
|
||||
}
|
||||
],
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"times": [],
|
||||
"addTimeMarker": false,
|
||||
"labels": {},
|
||||
"thresholdLine": {
|
||||
"show": false,
|
||||
"value": 10,
|
||||
"width": 1,
|
||||
"style": "full",
|
||||
"color": "#E7664C"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"title": "BarStacked",
|
||||
"type": "horizontal_bar",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "actor.keyword",
|
||||
"orderBy": "_key",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "split"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "histogram",
|
||||
"grid": { "categoryLines": false },
|
||||
"categoryAxes": [
|
||||
{
|
||||
"id": "CategoryAxis-1",
|
||||
"type": "category",
|
||||
"position": "left",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 200
|
||||
},
|
||||
"title": {}
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
{
|
||||
"id": "ValueAxis-1",
|
||||
"name": "LeftAxis-1",
|
||||
"type": "value",
|
||||
"position": "bottom",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 75,
|
||||
"filter": true,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
}
|
||||
],
|
||||
"seriesParams": [
|
||||
{
|
||||
"show": true,
|
||||
"type": "histogram",
|
||||
"mode": "stacked",
|
||||
"data": { "label": "Count", "id": "1" },
|
||||
"valueAxis": "ValueAxis-1",
|
||||
"drawLinesBetweenPoints": true,
|
||||
"lineWidth": 2,
|
||||
"showCircles": true
|
||||
}
|
||||
],
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"times": [],
|
||||
"addTimeMarker": false,
|
||||
"labels": {},
|
||||
"thresholdLine": {
|
||||
"show": false,
|
||||
"value": 10,
|
||||
"width": 1,
|
||||
"style": "full",
|
||||
"color": "#E7664C"
|
||||
},
|
||||
"row": true
|
||||
}
|
||||
}
|
||||
89
apps/leafcutter/config/visualizations/line.json
Normal file
89
apps/leafcutter/config/visualizations/line.json
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
{
|
||||
"title": "Line",
|
||||
"type": "line",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "technology.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "line",
|
||||
"grid": { "categoryLines": false },
|
||||
"categoryAxes": [
|
||||
{
|
||||
"id": "CategoryAxis-1",
|
||||
"type": "category",
|
||||
"position": "bottom",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear" },
|
||||
"labels": { "show": true, "filter": true, "truncate": 100 },
|
||||
"title": {}
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
{
|
||||
"id": "ValueAxis-1",
|
||||
"name": "LeftAxis-1",
|
||||
"type": "value",
|
||||
"position": "left",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
}
|
||||
],
|
||||
"seriesParams": [
|
||||
{
|
||||
"show": true,
|
||||
"type": "line",
|
||||
"mode": "normal",
|
||||
"data": { "label": "Count", "id": "1" },
|
||||
"valueAxis": "ValueAxis-1",
|
||||
"drawLinesBetweenPoints": true,
|
||||
"lineWidth": 2,
|
||||
"interpolate": "linear",
|
||||
"showCircles": true
|
||||
}
|
||||
],
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"times": [],
|
||||
"addTimeMarker": false,
|
||||
"labels": {},
|
||||
"thresholdLine": {
|
||||
"show": false,
|
||||
"value": 10,
|
||||
"width": 1,
|
||||
"style": "full",
|
||||
"color": "#E7664C"
|
||||
}
|
||||
}
|
||||
}
|
||||
105
apps/leafcutter/config/visualizations/lineStacked.json
Normal file
105
apps/leafcutter/config/visualizations/lineStacked.json
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
{
|
||||
"title": "LineStacked",
|
||||
"type": "line",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "technology.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "line",
|
||||
"grid": { "categoryLines": false },
|
||||
"categoryAxes": [
|
||||
{
|
||||
"id": "CategoryAxis-1",
|
||||
"type": "category",
|
||||
"position": "bottom",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear" },
|
||||
"labels": { "show": true, "filter": true, "truncate": 100 },
|
||||
"title": {}
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
{
|
||||
"id": "ValueAxis-1",
|
||||
"name": "LeftAxis-1",
|
||||
"type": "value",
|
||||
"position": "left",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
},
|
||||
{
|
||||
"id": "ValueAxis-2",
|
||||
"name": "RightAxis-1",
|
||||
"type": "value",
|
||||
"position": "right",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
}
|
||||
],
|
||||
"seriesParams": [
|
||||
{
|
||||
"show": true,
|
||||
"type": "line",
|
||||
"mode": "stacked",
|
||||
"data": { "label": "Count", "id": "1" },
|
||||
"valueAxis": "ValueAxis-2",
|
||||
"drawLinesBetweenPoints": true,
|
||||
"lineWidth": 2,
|
||||
"interpolate": "step-after",
|
||||
"showCircles": true
|
||||
}
|
||||
],
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"times": [],
|
||||
"addTimeMarker": false,
|
||||
"labels": {},
|
||||
"thresholdLine": {
|
||||
"show": false,
|
||||
"value": 10,
|
||||
"width": 1,
|
||||
"style": "full",
|
||||
"color": "#E7664C"
|
||||
}
|
||||
}
|
||||
}
|
||||
50
apps/leafcutter/config/visualizations/metric.json
Normal file
50
apps/leafcutter/config/visualizations/metric.json
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"title": "Metric",
|
||||
"type": "metric",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": { "customLabel": "#" },
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "technology.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "group"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"addTooltip": true,
|
||||
"addLegend": false,
|
||||
"type": "metric",
|
||||
"metric": {
|
||||
"percentageMode": false,
|
||||
"useRanges": false,
|
||||
"colorSchema": "Green to Red",
|
||||
"metricColorMode": "None",
|
||||
"colorsRange": [{ "from": 0, "to": 10000 }],
|
||||
"labels": { "show": true },
|
||||
"invertColors": false,
|
||||
"style": {
|
||||
"bgFill": "#000",
|
||||
"bgColor": false,
|
||||
"labelColor": false,
|
||||
"subText": "",
|
||||
"fontSize": 60
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
42
apps/leafcutter/config/visualizations/pieDonut.json
Normal file
42
apps/leafcutter/config/visualizations/pieDonut.json
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"title": "Pie",
|
||||
"type": "pie",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "technology.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": true,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "pie",
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"isDonut": true,
|
||||
"labels": {
|
||||
"show": false,
|
||||
"values": true,
|
||||
"last_level": true,
|
||||
"truncate": 100
|
||||
}
|
||||
}
|
||||
}
|
||||
36
apps/leafcutter/config/visualizations/tagCloud.json
Normal file
36
apps/leafcutter/config/visualizations/tagCloud.json
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"title": "Cloud",
|
||||
"type": "tagcloud",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "incident.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"scale": "linear",
|
||||
"orientation": "single",
|
||||
"minFontSize": 18,
|
||||
"maxFontSize": 72,
|
||||
"showLabel": true
|
||||
}
|
||||
}
|
||||
88
apps/leafcutter/config/visualizations/verticalBar.json
Normal file
88
apps/leafcutter/config/visualizations/verticalBar.json
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"title": "VerticalBar",
|
||||
"type": "histogram",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "actor.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 10,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "histogram",
|
||||
"grid": { "categoryLines": false },
|
||||
"categoryAxes": [
|
||||
{
|
||||
"id": "CategoryAxis-1",
|
||||
"type": "category",
|
||||
"position": "bottom",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear" },
|
||||
"labels": { "show": true, "filter": true, "truncate": 100 },
|
||||
"title": {}
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
{
|
||||
"id": "ValueAxis-1",
|
||||
"name": "LeftAxis-1",
|
||||
"type": "value",
|
||||
"position": "left",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
}
|
||||
],
|
||||
"seriesParams": [
|
||||
{
|
||||
"show": true,
|
||||
"type": "histogram",
|
||||
"mode": "normal",
|
||||
"data": { "label": "Count", "id": "1" },
|
||||
"valueAxis": "ValueAxis-1",
|
||||
"drawLinesBetweenPoints": true,
|
||||
"lineWidth": 2,
|
||||
"showCircles": true
|
||||
}
|
||||
],
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"times": [],
|
||||
"addTimeMarker": false,
|
||||
"labels": { "show": false },
|
||||
"thresholdLine": {
|
||||
"show": false,
|
||||
"value": 10,
|
||||
"width": 1,
|
||||
"style": "full",
|
||||
"color": "#E7664C"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"title": "VerticalBarStacked",
|
||||
"type": "histogram",
|
||||
"aggs": [
|
||||
{
|
||||
"id": "1",
|
||||
"enabled": true,
|
||||
"type": "count",
|
||||
"params": {},
|
||||
"schema": "metric"
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"enabled": true,
|
||||
"type": "terms",
|
||||
"params": {
|
||||
"field": "incident.keyword",
|
||||
"orderBy": "1",
|
||||
"order": "desc",
|
||||
"size": 5,
|
||||
"otherBucket": false,
|
||||
"otherBucketLabel": "Other",
|
||||
"missingBucket": false,
|
||||
"missingBucketLabel": "Missing"
|
||||
},
|
||||
"schema": "segment"
|
||||
}
|
||||
],
|
||||
"params": {
|
||||
"type": "histogram",
|
||||
"grid": { "categoryLines": false },
|
||||
"categoryAxes": [
|
||||
{
|
||||
"id": "CategoryAxis-1",
|
||||
"type": "category",
|
||||
"position": "bottom",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear" },
|
||||
"labels": { "show": true, "filter": true, "truncate": 100 },
|
||||
"title": {}
|
||||
}
|
||||
],
|
||||
"valueAxes": [
|
||||
{
|
||||
"id": "ValueAxis-1",
|
||||
"name": "LeftAxis-1",
|
||||
"type": "value",
|
||||
"position": "left",
|
||||
"show": true,
|
||||
"style": {},
|
||||
"scale": { "type": "linear", "mode": "normal" },
|
||||
"labels": {
|
||||
"show": true,
|
||||
"rotate": 0,
|
||||
"filter": false,
|
||||
"truncate": 100
|
||||
},
|
||||
"title": { "text": "Count" }
|
||||
}
|
||||
],
|
||||
"seriesParams": [
|
||||
{
|
||||
"show": true,
|
||||
"type": "histogram",
|
||||
"mode": "stacked",
|
||||
"data": { "label": "Count", "id": "1" },
|
||||
"valueAxis": "ValueAxis-1",
|
||||
"drawLinesBetweenPoints": true,
|
||||
"lineWidth": 2,
|
||||
"showCircles": true
|
||||
}
|
||||
],
|
||||
"addTooltip": true,
|
||||
"addLegend": true,
|
||||
"legendPosition": "right",
|
||||
"times": [],
|
||||
"addTimeMarker": false,
|
||||
"labels": { "show": false },
|
||||
"thresholdLine": {
|
||||
"show": false,
|
||||
"value": 10,
|
||||
"width": 1,
|
||||
"style": "full",
|
||||
"color": "#E7664C"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue