wavefront-client 3.5.4 → 3.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README-cli.md +162 -9
- data/bin/wavefront +41 -1
- data/lib/wavefront/alerting.rb +111 -24
- data/lib/wavefront/cli/alerts.rb +61 -7
- data/lib/wavefront/cli/dashboards.rb +138 -0
- data/lib/wavefront/client/version.rb +1 -1
- data/lib/wavefront/constants.rb +5 -2
- data/lib/wavefront/dashboards.rb +106 -0
- data/lib/wavefront/metadata.rb +0 -34
- data/lib/wavefront/mixins.rb +57 -8
- data/spec/cli_spec.rb +335 -9
- data/spec/spec_helper.rb +7 -0
- data/spec/wavefront/alerting_spec.rb +62 -15
- data/spec/wavefront/cli/alerts_spec.rb +2 -2
- data/spec/wavefront/cli/resources/alert.human.erb +2 -2
- data/spec/wavefront/cli/resources/alert.human2 +2 -2
- data/spec/wavefront/{resources → cli/resources}/conf.yaml +0 -0
- data/spec/wavefront/cli/resources/input_alert.json +34 -0
- data/spec/wavefront/cli/resources/input_alert.yaml +22 -0
- data/spec/wavefront/cli/resources/sample_alert.json +63 -0
- data/spec/wavefront/cli/resources/sample_alert.txt +2 -0
- data/spec/wavefront/cli/resources/sample_alert.yaml +47 -0
- data/spec/wavefront/cli/resources/sample_dash.json +1 -0
- data/spec/wavefront/cli/resources/sample_dash.txt +2 -0
- data/spec/wavefront/cli/resources/sample_dash.yaml +1114 -0
- data/spec/wavefront/opt_handler_spec.rb +3 -5
- metadata +22 -4
@@ -6,7 +6,7 @@ require 'erb'
|
|
6
6
|
# Valid alert states as defined in alerting.rb
|
7
7
|
#
|
8
8
|
states = %w(active affected_by_maintenance all invalid snoozed)
|
9
|
-
formats = %w(ruby json human)
|
9
|
+
formats = %w(ruby json human yaml)
|
10
10
|
|
11
11
|
opts = {
|
12
12
|
token: TEST_TOKEN,
|
@@ -110,7 +110,7 @@ describe Wavefront::Cli::Alerts do
|
|
110
110
|
k = Wavefront::Cli::Alerts.new(opts, ['all'])
|
111
111
|
it 'prints in the correct format' do
|
112
112
|
expect(k.human_line_created('time', 1469804504000)).to eq(
|
113
|
-
"time #{Time.at(1469804504)}")
|
113
|
+
"time #{Time.at(1469804504)} (1469804504000)")
|
114
114
|
end
|
115
115
|
end
|
116
116
|
|
@@ -1,11 +1,11 @@
|
|
1
1
|
name Test Alert
|
2
|
-
created <%= Time.at(1469807662271 / 1000) %>
|
2
|
+
created <%= Time.at(1469807662271 / 1000) %> (1469807662271)
|
3
3
|
severity WARN
|
4
4
|
condition ts("dev.cli.test_metric") > 0
|
5
5
|
displayExpression ts("dev.cli.test_metric")
|
6
6
|
minutes 5
|
7
7
|
resolveAfterMinutes
|
8
|
-
updated <%= Time.at(1469807735018 / 1000) %>
|
8
|
+
updated <%= Time.at(1469807735018 / 1000) %> (1469807735018)
|
9
9
|
alertStates CHECKING
|
10
10
|
metricsUsed
|
11
11
|
hostsUsed
|
@@ -1,11 +1,11 @@
|
|
1
1
|
name Test Alert
|
2
|
-
created 2016-07-29 16:54:22 +0100
|
2
|
+
created 2016-07-29 16:54:22 +0100 (1469807662271)
|
3
3
|
severity WARN
|
4
4
|
condition ts("dev.cli.test_metric") > 0
|
5
5
|
displayExpression ts("dev.cli.test_metric")
|
6
6
|
minutes 5
|
7
7
|
resolveAfterMinutes
|
8
|
-
updated 2016-07-29 16:55:35 +0100
|
8
|
+
updated 2016-07-29 16:55:35 +0100 (1469807662271)
|
9
9
|
alertStates CHECKING
|
10
10
|
metricsUsed
|
11
11
|
hostsUsed
|
File without changes
|
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"customerTagsWithCounts": {
|
3
|
+
},
|
4
|
+
"userTagsWithCounts": {
|
5
|
+
},
|
6
|
+
"created": 1488995981076,
|
7
|
+
"name": "test1",
|
8
|
+
"condition": "ts(\"cpu\") > 0",
|
9
|
+
"minutes": 3,
|
10
|
+
"resolveAfterMinutes": 2,
|
11
|
+
"target": "slackboy@gmail.com,rob@sysdef.xyz",
|
12
|
+
"failingHostLabelPairs": [
|
13
|
+
|
14
|
+
],
|
15
|
+
"updated": 1488995981076,
|
16
|
+
"severity": "INFO",
|
17
|
+
"additionalInformation": "some information",
|
18
|
+
"activeMaintenanceWindows": [
|
19
|
+
|
20
|
+
],
|
21
|
+
"inMaintenanceHostLabelPairs": [
|
22
|
+
|
23
|
+
],
|
24
|
+
"prefiringHostLabelPairs": [
|
25
|
+
|
26
|
+
],
|
27
|
+
"alertStates": [
|
28
|
+
"CHECKING"
|
29
|
+
],
|
30
|
+
"inTrash": false,
|
31
|
+
"numMetricsUsed": 0,
|
32
|
+
"numHostsUsed": 0,
|
33
|
+
"lastProcessedMillis": 1489011919425
|
34
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
customerTagsWithCounts: {}
|
3
|
+
userTagsWithCounts: {}
|
4
|
+
created: 1488995981076
|
5
|
+
name: test1
|
6
|
+
condition: ts("cpu") > 0
|
7
|
+
minutes: 3
|
8
|
+
resolveAfterMinutes: 2
|
9
|
+
target: slackboy@gmail.com,rob@sysdef.xyz
|
10
|
+
failingHostLabelPairs: []
|
11
|
+
updated: 1488995981076
|
12
|
+
severity: INFO
|
13
|
+
additionalInformation: some information
|
14
|
+
activeMaintenanceWindows: []
|
15
|
+
inMaintenanceHostLabelPairs: []
|
16
|
+
prefiringHostLabelPairs: []
|
17
|
+
alertStates:
|
18
|
+
- CHECKING
|
19
|
+
inTrash: false
|
20
|
+
numMetricsUsed: 0
|
21
|
+
numHostsUsed: 0
|
22
|
+
lastProcessedMillis: 1489011919425
|
@@ -0,0 +1,63 @@
|
|
1
|
+
{
|
2
|
+
"customerTagsWithCounts": {
|
3
|
+
"performance": 1,
|
4
|
+
"storage": 1
|
5
|
+
},
|
6
|
+
"userTagsWithCounts": {
|
7
|
+
},
|
8
|
+
"created": 1481216683640,
|
9
|
+
"name": "Zpool usage",
|
10
|
+
"conditionQBEnabled": false,
|
11
|
+
"displayExpressionQBEnabled": false,
|
12
|
+
"condition": "ts(\"*.host.zpool.*.cap\") > 79",
|
13
|
+
"displayExpression": "highpass(79, ts(\"*.host.zpool.*cap\"))",
|
14
|
+
"minutes": 5,
|
15
|
+
"resolveAfterMinutes": 5,
|
16
|
+
"target": "slackboy@gmail.com,",
|
17
|
+
"event": {
|
18
|
+
"name": "Zpool usage",
|
19
|
+
"startTime": 1489137278631,
|
20
|
+
"annotations": {
|
21
|
+
"severity": "warn",
|
22
|
+
"details": "<a class='ds-alert-link' href='https://metrics.wavefront.com/u/rlqlMZHyzj'>View Alert</a><br><strong>First Affected: </strong>shark (lab.dev.host.zpool.crypto.cap)",
|
23
|
+
"type": "alert",
|
24
|
+
"created": "1481216683640",
|
25
|
+
"target": "slackboy@gmail.com,"
|
26
|
+
},
|
27
|
+
"hosts": [
|
28
|
+
"shark"
|
29
|
+
],
|
30
|
+
"table": "sysdef"
|
31
|
+
},
|
32
|
+
"failingHostLabelPairs": [
|
33
|
+
{
|
34
|
+
"host": "shark",
|
35
|
+
"label": "lab.dev.host.zpool.crypto.cap",
|
36
|
+
"tags": {
|
37
|
+
},
|
38
|
+
"observed": 5,
|
39
|
+
"firing": 5
|
40
|
+
}
|
41
|
+
],
|
42
|
+
"updated": 1488992153277,
|
43
|
+
"severity": "WARN",
|
44
|
+
"additionalInformation": "ZFS performance drops dramatically when capacity exceeds 80%",
|
45
|
+
"activeMaintenanceWindows": [
|
46
|
+
|
47
|
+
],
|
48
|
+
"inMaintenanceHostLabelPairs": [
|
49
|
+
|
50
|
+
],
|
51
|
+
"prefiringHostLabelPairs": [
|
52
|
+
|
53
|
+
],
|
54
|
+
"alertStates": [
|
55
|
+
"ACTIVE"
|
56
|
+
],
|
57
|
+
"inTrash": false,
|
58
|
+
"numMetricsUsed": 5,
|
59
|
+
"numHostsUsed": 1,
|
60
|
+
"lastProcessedMillis": 1489161699315,
|
61
|
+
"processRateMinutes": 1,
|
62
|
+
"pointsScannedAtLastQuery": 157
|
63
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---
|
2
|
+
customerTagsWithCounts:
|
3
|
+
performance: 1
|
4
|
+
storage: 1
|
5
|
+
userTagsWithCounts: {}
|
6
|
+
created: 1481216683640
|
7
|
+
name: Zpool usage
|
8
|
+
conditionQBEnabled: false
|
9
|
+
displayExpressionQBEnabled: false
|
10
|
+
condition: ts("*.host.zpool.*.cap") > 79
|
11
|
+
displayExpression: highpass(79, ts("*.host.zpool.*cap"))
|
12
|
+
minutes: 5
|
13
|
+
resolveAfterMinutes: 5
|
14
|
+
target: slackboy@gmail.com,
|
15
|
+
event:
|
16
|
+
name: Zpool usage
|
17
|
+
startTime: 1489137278631
|
18
|
+
annotations:
|
19
|
+
severity: warn
|
20
|
+
details: "<a class='ds-alert-link' href='https://metrics.wavefront.com/u/rlqlMZHyzj'>View
|
21
|
+
Alert</a><br><strong>First Affected: </strong>shark (lab.dev.host.zpool.crypto.cap)"
|
22
|
+
type: alert
|
23
|
+
created: '1481216683640'
|
24
|
+
target: slackboy@gmail.com,
|
25
|
+
hosts:
|
26
|
+
- shark
|
27
|
+
table: sysdef
|
28
|
+
failingHostLabelPairs:
|
29
|
+
- host: shark
|
30
|
+
label: lab.dev.host.zpool.crypto.cap
|
31
|
+
tags: {}
|
32
|
+
observed: 5
|
33
|
+
firing: 5
|
34
|
+
updated: 1488992153277
|
35
|
+
severity: WARN
|
36
|
+
additionalInformation: ZFS performance drops dramatically when capacity exceeds 80%
|
37
|
+
activeMaintenanceWindows: []
|
38
|
+
inMaintenanceHostLabelPairs: []
|
39
|
+
prefiringHostLabelPairs: []
|
40
|
+
alertStates:
|
41
|
+
- ACTIVE
|
42
|
+
inTrash: false
|
43
|
+
numMetricsUsed: 5
|
44
|
+
numHostsUsed: 1
|
45
|
+
lastProcessedMillis: 1489161699315
|
46
|
+
processRateMinutes: 1
|
47
|
+
pointsScannedAtLastQuery: 157
|
@@ -0,0 +1 @@
|
|
1
|
+
{"customer":"sysdef","url":"internal_metrics","name":"Internal Metrics","eventFilterType":"BYCHART","sections":[{"name":"About","rows":[{"charts":[{"name":"description","sources":[{"name":"New Query","query":"","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":null}],"units":null,"base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"markdown-widget","max":null,"min":null,"lineType":null,"stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":"IVt3Zl0oaHR0cHM6Ly93YXZlZnJvbnQtY3VzdG9tZXIuczMuYW1hem9uYXdzLmNvbS93YXZlZnJvbnRfbG9nb19zbWFsbC5wbmcpCgpUaGlzIGRhc2hib2FyZCBzaG93cyB0aGUgc3RhdGUgeW91ciBXYXZlZnJvbnQgSW5zdGFuY2UsIEFnZW50cyBhbmQgQVdTIEV4dGVybmFsIEludGVncmF0aW9ucyB0aGF0IGFyZSBzZW5kaW5nIGRhdGEgdG8gV2F2ZWZyb250LiBJdCBkaXNwbGF5cyB0aGUgb3ZlcmFsbCBkYXRhIHJhdGUsIHRoZSBkZXRhaWxzIGFyb3VuZCBxdWV1ZWQsIGJsb2NrZWQgcG9pbnRzKGlmIGFueSkgYXMgd2VsbCBhcyBhIGJyZWFrZG93biBvZiB0aGUgZGF0YSBieSBzb3VyY2VzIGFuZCBnaXZlcyBmdXJ0aGVyIGluc2lnaHRzIGxpa2UgdG90YWwgdW5pcXVlIG1ldHJpY3MgYW5kIHNvdXJjZXMu","sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"},{"name":"latest agent version","sources":[{"name":"raw","query":"max(ts(~agent.build.version))/1000000","disabled":true,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":""},{"name":"New Query","query":"floor(${raw}) + ((${raw} - floor(${raw}))*100)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":""}],"units":" ","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":"the version of the most up-to-date agent registered with this account","chartSettings":{"type":"sparkline","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":true,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":"VALUE","sparklineDisplayColor":"","sparklineDisplayVerticalPosition":"MIDDLE","sparklineDisplayHorizontalPosition":"MIDDLE","sparklineDisplayFontSize":"125","sparklineDisplayPrefix":"v","sparklineDisplayPostfix":null,"sparklineSize":"BACKGROUND","sparklineLineColor":"rgba(255,211,211,1)","sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":"TEXT","sparklineDecimalPrecision":2,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"LAST"},{"name":"agent(s)","sources":[{"name":"raw","query":"count(ts(~agent.build.version))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""},{"name":"New Query","query":"floor(${raw}) + ((${raw} - floor(${raw}))*10)","disabled":true,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":""}],"units":" ","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":"the version of the most up-to-date agent registered with this account","chartSettings":{"type":"sparkline","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":true,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":"VALUE","sparklineDisplayColor":"","sparklineDisplayVerticalPosition":"MIDDLE","sparklineDisplayHorizontalPosition":"MIDDLE","sparklineDisplayFontSize":"125","sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":"BACKGROUND","sparklineLineColor":"rgba(255,211,211,1)","sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":"TEXT","sparklineDecimalPrecision":0,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MAX"}],"heightFactor":100}]},{"name":"Point Statistics","rows":[{"charts":[{"name":"Point Rate","sources":[{"name":"New Query","query":"sum(deriv(ts(~collector.points.valid)))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""}],"units":"points/s","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"linear","stackType":"zero","expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":false,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":null,"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":null,"y0ScaleSIBy1024":null,"y1ScaleSIBy1024":null,"y0UnitAutoscaling":null,"y1UnitAutoscaling":null,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":null,"fixedLegendUseRawStats":null,"fixedLegendPosition":null,"fixedLegendDisplayStats":null,"fixedLegendFilterSort":null,"fixedLegendFilterLimit":null,"fixedLegendFilterField":null,"fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"},{"name":"smoothed point rate (6hr avg)","sources":[{"name":"smoothed rate","query":"mavg(6h,sum(align(1200s, mean, rate(ts(~collector.points.valid)))))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""}],"units":"points/s","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"}],"heightFactor":100},{"charts":[{"name":"overall blocked points","sources":[{"name":"blocked points","query":"deriv(ts(~agent.points.*.blocked))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""}],"units":"","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"step-before","stackType":"zero","expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MAX"},{"name":"overall queued points","sources":[{"name":"queued points","query":"sum(rate(ts(~agent.points.*.queued)))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":null}],"units":"","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"}],"heightFactor":100},{"charts":[{"name":"count of unique sources","sources":[{"name":"sources","query":"sum(ts(~metric.source_count))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""}],"units":"sources","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"},{"name":"count of unique metrics","sources":[{"name":"Source","query":"avg(ts(~metric.metric_count))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""}],"units":"metrics","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"}],"heightFactor":100},{"charts":[{"name":"busiest sources","sources":[{"name":"source rate","query":"sum(rate(ts(~metric.counter)), sources)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":null}],"units":"","base":0,"noDefaultEvents":false,"interpolatePoints":true,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"table","max":null,"min":null,"lineType":null,"stackType":null,"expectedDataSpacing":null,"windowing":"last","windowSize":5,"showHosts":true,"showLabels":true,"showRawValues":false,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":false,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"LAST"}],"heightFactor":100}]},{"name":"Agent Statistics","rows":[{"charts":[{"name":"agent statistics","sources":[{"name":"raw_ver","query":"aliasMetric(ts(~agent.build.version)/1000000 ,\"Version\")","disabled":true,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":null},{"name":"version","query":"floor(${raw_ver}) + ((${raw_ver} - floor(${raw_ver}))*10)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":null},{"name":"predicted space (days)","query":"floor(aliasMetric(ts(~agent.buffer.bytes-left)/ts(~agent.buffer.fill-rate),\"Predicated Space Available(in Days)\") /(60*24))","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":null},{"name":"used buffer space (Gb)","query":"round(aliasMetric(ts(~agent.buffer.bytes-left),\"Usable Buffer Space(in GB)\")*100 /(1024*1024*1024))/100","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":null},{"name":"fill rate (kb/m)","query":"round(aliasMetric(ts(~agent.buffer.fill-rate),\"Fill Rate(in kbytes/min)\") * 100/1024)/100","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":null},{"name":"point rate","query":"aliasMetric(round(sum(rate(ts(~agent.points.*.received)), sources)),\"Point Rate(k)\")","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":null}],"units":"","base":1,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":"","chartSettings":{"type":"table","max":null,"min":null,"lineType":null,"stackType":null,"expectedDataSpacing":null,"windowing":"last","windowSize":5,"showHosts":true,"showLabels":true,"showRawValues":false,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":true,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":false,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"LAST"}],"heightFactor":100},{"charts":[{"name":"JVM memory","sources":[{"name":"total used","query":"ts(~agent.jvm.memory.totalUsed)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""},{"name":"heap used","query":"ts(~agent.jvm.memory.heapUsed)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":""},{"name":"allocated","query":"ts(~agent.jvm.memory.totalInit)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":"{\"_v\":1,\"metric\":\"\",\"filters\":[[],\"and\"],\"functions\":[]}","querybuilderEnabled":true,"secondaryAxis":null,"sourceDescription":""}],"units":"B","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":0.0,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":true,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":true,"fixedLegendUseRawStats":false,"fixedLegendPosition":"BOTTOM","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":"VALUE","sparklineDisplayColor":"","sparklineDisplayVerticalPosition":"MIDDLE","sparklineDisplayHorizontalPosition":"MIDDLE","sparklineDisplayFontSize":"100","sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":"BACKGROUND","sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":"TEXT","sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"},{"name":"network latency","sources":[{"name":"latency","query":"ts(~agent.push.*.duration.duration.median)","disabled":null,"scatterPlotSource":"Y","querybuilderSerialization":null,"querybuilderEnabled":false,"secondaryAxis":null,"sourceDescription":null}],"units":"ms","base":0,"noDefaultEvents":false,"interpolatePoints":false,"includeObsoleteMetrics":false,"description":null,"chartSettings":{"type":"line","max":null,"min":null,"lineType":"linear","stackType":null,"expectedDataSpacing":null,"windowing":"full","windowSize":null,"showHosts":null,"showLabels":null,"showRawValues":null,"autoColumnTags":false,"columnTags":null,"tagMode":"all","numTags":4,"customTags":[],"groupBySource":null,"sortValuesDescending":null,"y1Max":null,"y1Min":null,"y1Units":"","y0ScaleSIBy1024":false,"y1ScaleSIBy1024":false,"y0UnitAutoscaling":true,"y1UnitAutoscaling":false,"invertDynamicLegendHoverControl":null,"fixedLegendEnabled":false,"fixedLegendUseRawStats":false,"fixedLegendPosition":"RIGHT","fixedLegendDisplayStats":["CURRENT"],"fixedLegendFilterSort":"TOP","fixedLegendFilterLimit":5,"fixedLegendFilterField":"CURRENT","fixedLegendHideLabel":null,"xMax":null,"xMin":null,"yMax":null,"yMin":null,"timeBasedColoring":null,"markdownContent":null,"sparklineDisplayValueType":null,"sparklineDisplayColor":null,"sparklineDisplayVerticalPosition":null,"sparklineDisplayHorizontalPosition":null,"sparklineDisplayFontSize":null,"sparklineDisplayPrefix":null,"sparklineDisplayPostfix":null,"sparklineSize":null,"sparklineLineColor":null,"sparklineFillColor":null,"sparklineValueColorMapColors":null,"sparklineValueColorMapValuesV2":null,"sparklineValueColorMapValues":null,"sparklineValueColorMapApplyTo":null,"sparklineDecimalPrecision":null,"sparklineValueTextMapText":null,"sparklineValueTextMapThresholds":null},"summarization":"MEAN"}],"heightFactor":100}]}],"description":null,"parameters":null,"parameterDetails":{},"tags":{"customerTags":["wavefront"],"userTags":{"slackboy@gmail.com":["favorite"]}},"updateUser":"slackboy@gmail.com","updateTime":1489081763772,"displayDescription":false,"displaySectionTableOfContents":true,"displayQueryParameters":false,"chartTitleScalar":null,"eventQuery":null,"chartTitleColor":null,"chartTitleBgColor":null,"viewsLastDay":0,"viewsLastWeek":0,"viewsLastMonth":0,"creatorUser":null,"createdTime":null,"owner":null,"systemDashboardVersion":null}
|
@@ -0,0 +1,1114 @@
|
|
1
|
+
---
|
2
|
+
customer: sysdef
|
3
|
+
url: internal_metrics
|
4
|
+
name: Internal Metrics
|
5
|
+
eventFilterType: BYCHART
|
6
|
+
sections:
|
7
|
+
- name: About
|
8
|
+
rows:
|
9
|
+
- charts:
|
10
|
+
- name: description
|
11
|
+
sources:
|
12
|
+
- name: New Query
|
13
|
+
query: ''
|
14
|
+
disabled:
|
15
|
+
scatterPlotSource: Y
|
16
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
17
|
+
querybuilderEnabled: true
|
18
|
+
secondaryAxis:
|
19
|
+
sourceDescription:
|
20
|
+
units:
|
21
|
+
base: 0
|
22
|
+
noDefaultEvents: false
|
23
|
+
interpolatePoints: false
|
24
|
+
includeObsoleteMetrics: false
|
25
|
+
description:
|
26
|
+
chartSettings:
|
27
|
+
type: markdown-widget
|
28
|
+
max:
|
29
|
+
min:
|
30
|
+
lineType:
|
31
|
+
stackType:
|
32
|
+
expectedDataSpacing:
|
33
|
+
windowing: full
|
34
|
+
windowSize:
|
35
|
+
showHosts:
|
36
|
+
showLabels:
|
37
|
+
showRawValues:
|
38
|
+
autoColumnTags: false
|
39
|
+
columnTags:
|
40
|
+
tagMode: all
|
41
|
+
numTags: 4
|
42
|
+
customTags: []
|
43
|
+
groupBySource:
|
44
|
+
sortValuesDescending:
|
45
|
+
y1Max:
|
46
|
+
y1Min:
|
47
|
+
y1Units: ''
|
48
|
+
y0ScaleSIBy1024: false
|
49
|
+
y1ScaleSIBy1024: false
|
50
|
+
y0UnitAutoscaling: false
|
51
|
+
y1UnitAutoscaling: false
|
52
|
+
invertDynamicLegendHoverControl:
|
53
|
+
fixedLegendEnabled: false
|
54
|
+
fixedLegendUseRawStats: false
|
55
|
+
fixedLegendPosition: RIGHT
|
56
|
+
fixedLegendDisplayStats:
|
57
|
+
- CURRENT
|
58
|
+
fixedLegendFilterSort: TOP
|
59
|
+
fixedLegendFilterLimit: 5
|
60
|
+
fixedLegendFilterField: CURRENT
|
61
|
+
fixedLegendHideLabel:
|
62
|
+
xMax:
|
63
|
+
xMin:
|
64
|
+
yMax:
|
65
|
+
yMin:
|
66
|
+
timeBasedColoring:
|
67
|
+
markdownContent: IVt3Zl0oaHR0cHM6Ly93YXZlZnJvbnQtY3VzdG9tZXIuczMuYW1hem9uYXdzLmNvbS93YXZlZnJvbnRfbG9nb19zbWFsbC5wbmcpCgpUaGlzIGRhc2hib2FyZCBzaG93cyB0aGUgc3RhdGUgeW91ciBXYXZlZnJvbnQgSW5zdGFuY2UsIEFnZW50cyBhbmQgQVdTIEV4dGVybmFsIEludGVncmF0aW9ucyB0aGF0IGFyZSBzZW5kaW5nIGRhdGEgdG8gV2F2ZWZyb250LiBJdCBkaXNwbGF5cyB0aGUgb3ZlcmFsbCBkYXRhIHJhdGUsIHRoZSBkZXRhaWxzIGFyb3VuZCBxdWV1ZWQsIGJsb2NrZWQgcG9pbnRzKGlmIGFueSkgYXMgd2VsbCBhcyBhIGJyZWFrZG93biBvZiB0aGUgZGF0YSBieSBzb3VyY2VzIGFuZCBnaXZlcyBmdXJ0aGVyIGluc2lnaHRzIGxpa2UgdG90YWwgdW5pcXVlIG1ldHJpY3MgYW5kIHNvdXJjZXMu
|
68
|
+
sparklineDisplayValueType:
|
69
|
+
sparklineDisplayColor:
|
70
|
+
sparklineDisplayVerticalPosition:
|
71
|
+
sparklineDisplayHorizontalPosition:
|
72
|
+
sparklineDisplayFontSize:
|
73
|
+
sparklineDisplayPrefix:
|
74
|
+
sparklineDisplayPostfix:
|
75
|
+
sparklineSize:
|
76
|
+
sparklineLineColor:
|
77
|
+
sparklineFillColor:
|
78
|
+
sparklineValueColorMapColors:
|
79
|
+
sparklineValueColorMapValuesV2:
|
80
|
+
sparklineValueColorMapValues:
|
81
|
+
sparklineValueColorMapApplyTo:
|
82
|
+
sparklineDecimalPrecision:
|
83
|
+
sparklineValueTextMapText:
|
84
|
+
sparklineValueTextMapThresholds:
|
85
|
+
summarization: MEAN
|
86
|
+
- name: latest agent version
|
87
|
+
sources:
|
88
|
+
- name: raw
|
89
|
+
query: max(ts(~agent.build.version))/1000000
|
90
|
+
disabled: true
|
91
|
+
scatterPlotSource: Y
|
92
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
93
|
+
querybuilderEnabled: true
|
94
|
+
secondaryAxis:
|
95
|
+
sourceDescription: ''
|
96
|
+
- name: New Query
|
97
|
+
query: floor(${raw}) + ((${raw} - floor(${raw}))*100)
|
98
|
+
disabled:
|
99
|
+
scatterPlotSource: Y
|
100
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
101
|
+
querybuilderEnabled: true
|
102
|
+
secondaryAxis:
|
103
|
+
sourceDescription: ''
|
104
|
+
units: " "
|
105
|
+
base: 0
|
106
|
+
noDefaultEvents: false
|
107
|
+
interpolatePoints: false
|
108
|
+
includeObsoleteMetrics: false
|
109
|
+
description: the version of the most up-to-date agent registered with this account
|
110
|
+
chartSettings:
|
111
|
+
type: sparkline
|
112
|
+
max:
|
113
|
+
min:
|
114
|
+
lineType: linear
|
115
|
+
stackType:
|
116
|
+
expectedDataSpacing:
|
117
|
+
windowing: full
|
118
|
+
windowSize:
|
119
|
+
showHosts:
|
120
|
+
showLabels:
|
121
|
+
showRawValues:
|
122
|
+
autoColumnTags: false
|
123
|
+
columnTags:
|
124
|
+
tagMode: all
|
125
|
+
numTags: 4
|
126
|
+
customTags: []
|
127
|
+
groupBySource:
|
128
|
+
sortValuesDescending:
|
129
|
+
y1Max:
|
130
|
+
y1Min:
|
131
|
+
y1Units: ''
|
132
|
+
y0ScaleSIBy1024: false
|
133
|
+
y1ScaleSIBy1024: false
|
134
|
+
y0UnitAutoscaling: true
|
135
|
+
y1UnitAutoscaling: false
|
136
|
+
invertDynamicLegendHoverControl:
|
137
|
+
fixedLegendEnabled: false
|
138
|
+
fixedLegendUseRawStats: false
|
139
|
+
fixedLegendPosition: RIGHT
|
140
|
+
fixedLegendDisplayStats:
|
141
|
+
- CURRENT
|
142
|
+
fixedLegendFilterSort: TOP
|
143
|
+
fixedLegendFilterLimit: 5
|
144
|
+
fixedLegendFilterField: CURRENT
|
145
|
+
fixedLegendHideLabel:
|
146
|
+
xMax:
|
147
|
+
xMin:
|
148
|
+
yMax:
|
149
|
+
yMin:
|
150
|
+
timeBasedColoring:
|
151
|
+
markdownContent:
|
152
|
+
sparklineDisplayValueType: VALUE
|
153
|
+
sparklineDisplayColor: ''
|
154
|
+
sparklineDisplayVerticalPosition: MIDDLE
|
155
|
+
sparklineDisplayHorizontalPosition: MIDDLE
|
156
|
+
sparklineDisplayFontSize: '125'
|
157
|
+
sparklineDisplayPrefix: v
|
158
|
+
sparklineDisplayPostfix:
|
159
|
+
sparklineSize: BACKGROUND
|
160
|
+
sparklineLineColor: rgba(255,211,211,1)
|
161
|
+
sparklineFillColor:
|
162
|
+
sparklineValueColorMapColors:
|
163
|
+
sparklineValueColorMapValuesV2:
|
164
|
+
sparklineValueColorMapValues:
|
165
|
+
sparklineValueColorMapApplyTo: TEXT
|
166
|
+
sparklineDecimalPrecision: 2
|
167
|
+
sparklineValueTextMapText:
|
168
|
+
sparklineValueTextMapThresholds:
|
169
|
+
summarization: LAST
|
170
|
+
- name: agent(s)
|
171
|
+
sources:
|
172
|
+
- name: raw
|
173
|
+
query: count(ts(~agent.build.version))
|
174
|
+
disabled:
|
175
|
+
scatterPlotSource: Y
|
176
|
+
querybuilderSerialization:
|
177
|
+
querybuilderEnabled: false
|
178
|
+
secondaryAxis:
|
179
|
+
sourceDescription: ''
|
180
|
+
- name: New Query
|
181
|
+
query: floor(${raw}) + ((${raw} - floor(${raw}))*10)
|
182
|
+
disabled: true
|
183
|
+
scatterPlotSource: Y
|
184
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
185
|
+
querybuilderEnabled: true
|
186
|
+
secondaryAxis:
|
187
|
+
sourceDescription: ''
|
188
|
+
units: " "
|
189
|
+
base: 0
|
190
|
+
noDefaultEvents: false
|
191
|
+
interpolatePoints: false
|
192
|
+
includeObsoleteMetrics: false
|
193
|
+
description: the version of the most up-to-date agent registered with this account
|
194
|
+
chartSettings:
|
195
|
+
type: sparkline
|
196
|
+
max:
|
197
|
+
min:
|
198
|
+
lineType: linear
|
199
|
+
stackType:
|
200
|
+
expectedDataSpacing:
|
201
|
+
windowing: full
|
202
|
+
windowSize:
|
203
|
+
showHosts:
|
204
|
+
showLabels:
|
205
|
+
showRawValues:
|
206
|
+
autoColumnTags: false
|
207
|
+
columnTags:
|
208
|
+
tagMode: all
|
209
|
+
numTags: 4
|
210
|
+
customTags: []
|
211
|
+
groupBySource:
|
212
|
+
sortValuesDescending:
|
213
|
+
y1Max:
|
214
|
+
y1Min:
|
215
|
+
y1Units: ''
|
216
|
+
y0ScaleSIBy1024: false
|
217
|
+
y1ScaleSIBy1024: false
|
218
|
+
y0UnitAutoscaling: true
|
219
|
+
y1UnitAutoscaling: false
|
220
|
+
invertDynamicLegendHoverControl:
|
221
|
+
fixedLegendEnabled: false
|
222
|
+
fixedLegendUseRawStats: false
|
223
|
+
fixedLegendPosition: RIGHT
|
224
|
+
fixedLegendDisplayStats:
|
225
|
+
- CURRENT
|
226
|
+
fixedLegendFilterSort: TOP
|
227
|
+
fixedLegendFilterLimit: 5
|
228
|
+
fixedLegendFilterField: CURRENT
|
229
|
+
fixedLegendHideLabel:
|
230
|
+
xMax:
|
231
|
+
xMin:
|
232
|
+
yMax:
|
233
|
+
yMin:
|
234
|
+
timeBasedColoring:
|
235
|
+
markdownContent:
|
236
|
+
sparklineDisplayValueType: VALUE
|
237
|
+
sparklineDisplayColor: ''
|
238
|
+
sparklineDisplayVerticalPosition: MIDDLE
|
239
|
+
sparklineDisplayHorizontalPosition: MIDDLE
|
240
|
+
sparklineDisplayFontSize: '125'
|
241
|
+
sparklineDisplayPrefix:
|
242
|
+
sparklineDisplayPostfix:
|
243
|
+
sparklineSize: BACKGROUND
|
244
|
+
sparklineLineColor: rgba(255,211,211,1)
|
245
|
+
sparklineFillColor:
|
246
|
+
sparklineValueColorMapColors:
|
247
|
+
sparklineValueColorMapValuesV2:
|
248
|
+
sparklineValueColorMapValues:
|
249
|
+
sparklineValueColorMapApplyTo: TEXT
|
250
|
+
sparklineDecimalPrecision: 0
|
251
|
+
sparklineValueTextMapText:
|
252
|
+
sparklineValueTextMapThresholds:
|
253
|
+
summarization: MAX
|
254
|
+
heightFactor: 100
|
255
|
+
- name: Point Statistics
|
256
|
+
rows:
|
257
|
+
- charts:
|
258
|
+
- name: Point Rate
|
259
|
+
sources:
|
260
|
+
- name: New Query
|
261
|
+
query: sum(deriv(ts(~collector.points.valid)))
|
262
|
+
disabled:
|
263
|
+
scatterPlotSource: Y
|
264
|
+
querybuilderSerialization:
|
265
|
+
querybuilderEnabled: false
|
266
|
+
secondaryAxis:
|
267
|
+
sourceDescription: ''
|
268
|
+
units: points/s
|
269
|
+
base: 0
|
270
|
+
noDefaultEvents: false
|
271
|
+
interpolatePoints: false
|
272
|
+
includeObsoleteMetrics: false
|
273
|
+
description:
|
274
|
+
chartSettings:
|
275
|
+
type: line
|
276
|
+
max:
|
277
|
+
min:
|
278
|
+
lineType: linear
|
279
|
+
stackType: zero
|
280
|
+
expectedDataSpacing:
|
281
|
+
windowing: full
|
282
|
+
windowSize:
|
283
|
+
showHosts:
|
284
|
+
showLabels:
|
285
|
+
showRawValues: false
|
286
|
+
autoColumnTags: false
|
287
|
+
columnTags:
|
288
|
+
tagMode: all
|
289
|
+
numTags: 4
|
290
|
+
customTags:
|
291
|
+
groupBySource:
|
292
|
+
sortValuesDescending:
|
293
|
+
y1Max:
|
294
|
+
y1Min:
|
295
|
+
y1Units:
|
296
|
+
y0ScaleSIBy1024:
|
297
|
+
y1ScaleSIBy1024:
|
298
|
+
y0UnitAutoscaling:
|
299
|
+
y1UnitAutoscaling:
|
300
|
+
invertDynamicLegendHoverControl:
|
301
|
+
fixedLegendEnabled:
|
302
|
+
fixedLegendUseRawStats:
|
303
|
+
fixedLegendPosition:
|
304
|
+
fixedLegendDisplayStats:
|
305
|
+
fixedLegendFilterSort:
|
306
|
+
fixedLegendFilterLimit:
|
307
|
+
fixedLegendFilterField:
|
308
|
+
fixedLegendHideLabel:
|
309
|
+
xMax:
|
310
|
+
xMin:
|
311
|
+
yMax:
|
312
|
+
yMin:
|
313
|
+
timeBasedColoring:
|
314
|
+
markdownContent:
|
315
|
+
sparklineDisplayValueType:
|
316
|
+
sparklineDisplayColor:
|
317
|
+
sparklineDisplayVerticalPosition:
|
318
|
+
sparklineDisplayHorizontalPosition:
|
319
|
+
sparklineDisplayFontSize:
|
320
|
+
sparklineDisplayPrefix:
|
321
|
+
sparklineDisplayPostfix:
|
322
|
+
sparklineSize:
|
323
|
+
sparklineLineColor:
|
324
|
+
sparklineFillColor:
|
325
|
+
sparklineValueColorMapColors:
|
326
|
+
sparklineValueColorMapValuesV2:
|
327
|
+
sparklineValueColorMapValues:
|
328
|
+
sparklineValueColorMapApplyTo:
|
329
|
+
sparklineDecimalPrecision:
|
330
|
+
sparklineValueTextMapText:
|
331
|
+
sparklineValueTextMapThresholds:
|
332
|
+
summarization: MEAN
|
333
|
+
- name: smoothed point rate (6hr avg)
|
334
|
+
sources:
|
335
|
+
- name: smoothed rate
|
336
|
+
query: mavg(6h,sum(align(1200s, mean, rate(ts(~collector.points.valid)))))
|
337
|
+
disabled:
|
338
|
+
scatterPlotSource: Y
|
339
|
+
querybuilderSerialization:
|
340
|
+
querybuilderEnabled: false
|
341
|
+
secondaryAxis:
|
342
|
+
sourceDescription: ''
|
343
|
+
units: points/s
|
344
|
+
base: 0
|
345
|
+
noDefaultEvents: false
|
346
|
+
interpolatePoints: false
|
347
|
+
includeObsoleteMetrics: false
|
348
|
+
description:
|
349
|
+
chartSettings:
|
350
|
+
type: line
|
351
|
+
max:
|
352
|
+
min:
|
353
|
+
lineType: linear
|
354
|
+
stackType:
|
355
|
+
expectedDataSpacing:
|
356
|
+
windowing: full
|
357
|
+
windowSize:
|
358
|
+
showHosts:
|
359
|
+
showLabels:
|
360
|
+
showRawValues:
|
361
|
+
autoColumnTags: false
|
362
|
+
columnTags:
|
363
|
+
tagMode: all
|
364
|
+
numTags: 4
|
365
|
+
customTags: []
|
366
|
+
groupBySource:
|
367
|
+
sortValuesDescending:
|
368
|
+
y1Max:
|
369
|
+
y1Min:
|
370
|
+
y1Units: ''
|
371
|
+
y0ScaleSIBy1024: false
|
372
|
+
y1ScaleSIBy1024: false
|
373
|
+
y0UnitAutoscaling: false
|
374
|
+
y1UnitAutoscaling: false
|
375
|
+
invertDynamicLegendHoverControl:
|
376
|
+
fixedLegendEnabled: false
|
377
|
+
fixedLegendUseRawStats: false
|
378
|
+
fixedLegendPosition: RIGHT
|
379
|
+
fixedLegendDisplayStats:
|
380
|
+
- CURRENT
|
381
|
+
fixedLegendFilterSort: TOP
|
382
|
+
fixedLegendFilterLimit: 5
|
383
|
+
fixedLegendFilterField: CURRENT
|
384
|
+
fixedLegendHideLabel:
|
385
|
+
xMax:
|
386
|
+
xMin:
|
387
|
+
yMax:
|
388
|
+
yMin:
|
389
|
+
timeBasedColoring:
|
390
|
+
markdownContent:
|
391
|
+
sparklineDisplayValueType:
|
392
|
+
sparklineDisplayColor:
|
393
|
+
sparklineDisplayVerticalPosition:
|
394
|
+
sparklineDisplayHorizontalPosition:
|
395
|
+
sparklineDisplayFontSize:
|
396
|
+
sparklineDisplayPrefix:
|
397
|
+
sparklineDisplayPostfix:
|
398
|
+
sparklineSize:
|
399
|
+
sparklineLineColor:
|
400
|
+
sparklineFillColor:
|
401
|
+
sparklineValueColorMapColors:
|
402
|
+
sparklineValueColorMapValuesV2:
|
403
|
+
sparklineValueColorMapValues:
|
404
|
+
sparklineValueColorMapApplyTo:
|
405
|
+
sparklineDecimalPrecision:
|
406
|
+
sparklineValueTextMapText:
|
407
|
+
sparklineValueTextMapThresholds:
|
408
|
+
summarization: MEAN
|
409
|
+
heightFactor: 100
|
410
|
+
- charts:
|
411
|
+
- name: overall blocked points
|
412
|
+
sources:
|
413
|
+
- name: blocked points
|
414
|
+
query: deriv(ts(~agent.points.*.blocked))
|
415
|
+
disabled:
|
416
|
+
scatterPlotSource: Y
|
417
|
+
querybuilderSerialization:
|
418
|
+
querybuilderEnabled: false
|
419
|
+
secondaryAxis:
|
420
|
+
sourceDescription: ''
|
421
|
+
units: ''
|
422
|
+
base: 0
|
423
|
+
noDefaultEvents: false
|
424
|
+
interpolatePoints: false
|
425
|
+
includeObsoleteMetrics: false
|
426
|
+
description:
|
427
|
+
chartSettings:
|
428
|
+
type: line
|
429
|
+
max:
|
430
|
+
min:
|
431
|
+
lineType: step-before
|
432
|
+
stackType: zero
|
433
|
+
expectedDataSpacing:
|
434
|
+
windowing: full
|
435
|
+
windowSize:
|
436
|
+
showHosts:
|
437
|
+
showLabels:
|
438
|
+
showRawValues:
|
439
|
+
autoColumnTags: false
|
440
|
+
columnTags:
|
441
|
+
tagMode: all
|
442
|
+
numTags: 4
|
443
|
+
customTags: []
|
444
|
+
groupBySource:
|
445
|
+
sortValuesDescending:
|
446
|
+
y1Max:
|
447
|
+
y1Min:
|
448
|
+
y1Units: ''
|
449
|
+
y0ScaleSIBy1024: false
|
450
|
+
y1ScaleSIBy1024: false
|
451
|
+
y0UnitAutoscaling: false
|
452
|
+
y1UnitAutoscaling: false
|
453
|
+
invertDynamicLegendHoverControl:
|
454
|
+
fixedLegendEnabled: false
|
455
|
+
fixedLegendUseRawStats: false
|
456
|
+
fixedLegendPosition: RIGHT
|
457
|
+
fixedLegendDisplayStats:
|
458
|
+
- CURRENT
|
459
|
+
fixedLegendFilterSort: TOP
|
460
|
+
fixedLegendFilterLimit: 5
|
461
|
+
fixedLegendFilterField: CURRENT
|
462
|
+
fixedLegendHideLabel:
|
463
|
+
xMax:
|
464
|
+
xMin:
|
465
|
+
yMax:
|
466
|
+
yMin:
|
467
|
+
timeBasedColoring:
|
468
|
+
markdownContent:
|
469
|
+
sparklineDisplayValueType:
|
470
|
+
sparklineDisplayColor:
|
471
|
+
sparklineDisplayVerticalPosition:
|
472
|
+
sparklineDisplayHorizontalPosition:
|
473
|
+
sparklineDisplayFontSize:
|
474
|
+
sparklineDisplayPrefix:
|
475
|
+
sparklineDisplayPostfix:
|
476
|
+
sparklineSize:
|
477
|
+
sparklineLineColor:
|
478
|
+
sparklineFillColor:
|
479
|
+
sparklineValueColorMapColors:
|
480
|
+
sparklineValueColorMapValuesV2:
|
481
|
+
sparklineValueColorMapValues:
|
482
|
+
sparklineValueColorMapApplyTo:
|
483
|
+
sparklineDecimalPrecision:
|
484
|
+
sparklineValueTextMapText:
|
485
|
+
sparklineValueTextMapThresholds:
|
486
|
+
summarization: MAX
|
487
|
+
- name: overall queued points
|
488
|
+
sources:
|
489
|
+
- name: queued points
|
490
|
+
query: sum(rate(ts(~agent.points.*.queued)))
|
491
|
+
disabled:
|
492
|
+
scatterPlotSource: Y
|
493
|
+
querybuilderSerialization:
|
494
|
+
querybuilderEnabled: false
|
495
|
+
secondaryAxis:
|
496
|
+
sourceDescription:
|
497
|
+
units: ''
|
498
|
+
base: 0
|
499
|
+
noDefaultEvents: false
|
500
|
+
interpolatePoints: false
|
501
|
+
includeObsoleteMetrics: false
|
502
|
+
description:
|
503
|
+
chartSettings:
|
504
|
+
type: line
|
505
|
+
max:
|
506
|
+
min:
|
507
|
+
lineType: linear
|
508
|
+
stackType:
|
509
|
+
expectedDataSpacing:
|
510
|
+
windowing: full
|
511
|
+
windowSize:
|
512
|
+
showHosts:
|
513
|
+
showLabels:
|
514
|
+
showRawValues:
|
515
|
+
autoColumnTags: false
|
516
|
+
columnTags:
|
517
|
+
tagMode: all
|
518
|
+
numTags: 4
|
519
|
+
customTags: []
|
520
|
+
groupBySource:
|
521
|
+
sortValuesDescending:
|
522
|
+
y1Max:
|
523
|
+
y1Min:
|
524
|
+
y1Units: ''
|
525
|
+
y0ScaleSIBy1024: false
|
526
|
+
y1ScaleSIBy1024: false
|
527
|
+
y0UnitAutoscaling: false
|
528
|
+
y1UnitAutoscaling: false
|
529
|
+
invertDynamicLegendHoverControl:
|
530
|
+
fixedLegendEnabled: false
|
531
|
+
fixedLegendUseRawStats: false
|
532
|
+
fixedLegendPosition: RIGHT
|
533
|
+
fixedLegendDisplayStats:
|
534
|
+
- CURRENT
|
535
|
+
fixedLegendFilterSort: TOP
|
536
|
+
fixedLegendFilterLimit: 5
|
537
|
+
fixedLegendFilterField: CURRENT
|
538
|
+
fixedLegendHideLabel:
|
539
|
+
xMax:
|
540
|
+
xMin:
|
541
|
+
yMax:
|
542
|
+
yMin:
|
543
|
+
timeBasedColoring:
|
544
|
+
markdownContent:
|
545
|
+
sparklineDisplayValueType:
|
546
|
+
sparklineDisplayColor:
|
547
|
+
sparklineDisplayVerticalPosition:
|
548
|
+
sparklineDisplayHorizontalPosition:
|
549
|
+
sparklineDisplayFontSize:
|
550
|
+
sparklineDisplayPrefix:
|
551
|
+
sparklineDisplayPostfix:
|
552
|
+
sparklineSize:
|
553
|
+
sparklineLineColor:
|
554
|
+
sparklineFillColor:
|
555
|
+
sparklineValueColorMapColors:
|
556
|
+
sparklineValueColorMapValuesV2:
|
557
|
+
sparklineValueColorMapValues:
|
558
|
+
sparklineValueColorMapApplyTo:
|
559
|
+
sparklineDecimalPrecision:
|
560
|
+
sparklineValueTextMapText:
|
561
|
+
sparklineValueTextMapThresholds:
|
562
|
+
summarization: MEAN
|
563
|
+
heightFactor: 100
|
564
|
+
- charts:
|
565
|
+
- name: count of unique sources
|
566
|
+
sources:
|
567
|
+
- name: sources
|
568
|
+
query: sum(ts(~metric.source_count))
|
569
|
+
disabled:
|
570
|
+
scatterPlotSource: Y
|
571
|
+
querybuilderSerialization:
|
572
|
+
querybuilderEnabled: false
|
573
|
+
secondaryAxis:
|
574
|
+
sourceDescription: ''
|
575
|
+
units: sources
|
576
|
+
base: 0
|
577
|
+
noDefaultEvents: false
|
578
|
+
interpolatePoints: false
|
579
|
+
includeObsoleteMetrics: false
|
580
|
+
description:
|
581
|
+
chartSettings:
|
582
|
+
type: line
|
583
|
+
max:
|
584
|
+
min:
|
585
|
+
lineType: linear
|
586
|
+
stackType:
|
587
|
+
expectedDataSpacing:
|
588
|
+
windowing: full
|
589
|
+
windowSize:
|
590
|
+
showHosts:
|
591
|
+
showLabels:
|
592
|
+
showRawValues:
|
593
|
+
autoColumnTags: false
|
594
|
+
columnTags:
|
595
|
+
tagMode: all
|
596
|
+
numTags: 4
|
597
|
+
customTags: []
|
598
|
+
groupBySource:
|
599
|
+
sortValuesDescending:
|
600
|
+
y1Max:
|
601
|
+
y1Min:
|
602
|
+
y1Units: ''
|
603
|
+
y0ScaleSIBy1024: false
|
604
|
+
y1ScaleSIBy1024: false
|
605
|
+
y0UnitAutoscaling: false
|
606
|
+
y1UnitAutoscaling: false
|
607
|
+
invertDynamicLegendHoverControl:
|
608
|
+
fixedLegendEnabled: false
|
609
|
+
fixedLegendUseRawStats: false
|
610
|
+
fixedLegendPosition: RIGHT
|
611
|
+
fixedLegendDisplayStats:
|
612
|
+
- CURRENT
|
613
|
+
fixedLegendFilterSort: TOP
|
614
|
+
fixedLegendFilterLimit: 5
|
615
|
+
fixedLegendFilterField: CURRENT
|
616
|
+
fixedLegendHideLabel:
|
617
|
+
xMax:
|
618
|
+
xMin:
|
619
|
+
yMax:
|
620
|
+
yMin:
|
621
|
+
timeBasedColoring:
|
622
|
+
markdownContent:
|
623
|
+
sparklineDisplayValueType:
|
624
|
+
sparklineDisplayColor:
|
625
|
+
sparklineDisplayVerticalPosition:
|
626
|
+
sparklineDisplayHorizontalPosition:
|
627
|
+
sparklineDisplayFontSize:
|
628
|
+
sparklineDisplayPrefix:
|
629
|
+
sparklineDisplayPostfix:
|
630
|
+
sparklineSize:
|
631
|
+
sparklineLineColor:
|
632
|
+
sparklineFillColor:
|
633
|
+
sparklineValueColorMapColors:
|
634
|
+
sparklineValueColorMapValuesV2:
|
635
|
+
sparklineValueColorMapValues:
|
636
|
+
sparklineValueColorMapApplyTo:
|
637
|
+
sparklineDecimalPrecision:
|
638
|
+
sparklineValueTextMapText:
|
639
|
+
sparklineValueTextMapThresholds:
|
640
|
+
summarization: MEAN
|
641
|
+
- name: count of unique metrics
|
642
|
+
sources:
|
643
|
+
- name: Source
|
644
|
+
query: avg(ts(~metric.metric_count))
|
645
|
+
disabled:
|
646
|
+
scatterPlotSource: Y
|
647
|
+
querybuilderSerialization:
|
648
|
+
querybuilderEnabled: false
|
649
|
+
secondaryAxis:
|
650
|
+
sourceDescription: ''
|
651
|
+
units: metrics
|
652
|
+
base: 0
|
653
|
+
noDefaultEvents: false
|
654
|
+
interpolatePoints: false
|
655
|
+
includeObsoleteMetrics: false
|
656
|
+
description:
|
657
|
+
chartSettings:
|
658
|
+
type: line
|
659
|
+
max:
|
660
|
+
min:
|
661
|
+
lineType: linear
|
662
|
+
stackType:
|
663
|
+
expectedDataSpacing:
|
664
|
+
windowing: full
|
665
|
+
windowSize:
|
666
|
+
showHosts:
|
667
|
+
showLabels:
|
668
|
+
showRawValues:
|
669
|
+
autoColumnTags: false
|
670
|
+
columnTags:
|
671
|
+
tagMode: all
|
672
|
+
numTags: 4
|
673
|
+
customTags: []
|
674
|
+
groupBySource:
|
675
|
+
sortValuesDescending:
|
676
|
+
y1Max:
|
677
|
+
y1Min:
|
678
|
+
y1Units: ''
|
679
|
+
y0ScaleSIBy1024: false
|
680
|
+
y1ScaleSIBy1024: false
|
681
|
+
y0UnitAutoscaling: false
|
682
|
+
y1UnitAutoscaling: false
|
683
|
+
invertDynamicLegendHoverControl:
|
684
|
+
fixedLegendEnabled: false
|
685
|
+
fixedLegendUseRawStats: false
|
686
|
+
fixedLegendPosition: RIGHT
|
687
|
+
fixedLegendDisplayStats:
|
688
|
+
- CURRENT
|
689
|
+
fixedLegendFilterSort: TOP
|
690
|
+
fixedLegendFilterLimit: 5
|
691
|
+
fixedLegendFilterField: CURRENT
|
692
|
+
fixedLegendHideLabel:
|
693
|
+
xMax:
|
694
|
+
xMin:
|
695
|
+
yMax:
|
696
|
+
yMin:
|
697
|
+
timeBasedColoring:
|
698
|
+
markdownContent:
|
699
|
+
sparklineDisplayValueType:
|
700
|
+
sparklineDisplayColor:
|
701
|
+
sparklineDisplayVerticalPosition:
|
702
|
+
sparklineDisplayHorizontalPosition:
|
703
|
+
sparklineDisplayFontSize:
|
704
|
+
sparklineDisplayPrefix:
|
705
|
+
sparklineDisplayPostfix:
|
706
|
+
sparklineSize:
|
707
|
+
sparklineLineColor:
|
708
|
+
sparklineFillColor:
|
709
|
+
sparklineValueColorMapColors:
|
710
|
+
sparklineValueColorMapValuesV2:
|
711
|
+
sparklineValueColorMapValues:
|
712
|
+
sparklineValueColorMapApplyTo:
|
713
|
+
sparklineDecimalPrecision:
|
714
|
+
sparklineValueTextMapText:
|
715
|
+
sparklineValueTextMapThresholds:
|
716
|
+
summarization: MEAN
|
717
|
+
heightFactor: 100
|
718
|
+
- charts:
|
719
|
+
- name: busiest sources
|
720
|
+
sources:
|
721
|
+
- name: source rate
|
722
|
+
query: sum(rate(ts(~metric.counter)), sources)
|
723
|
+
disabled:
|
724
|
+
scatterPlotSource: Y
|
725
|
+
querybuilderSerialization:
|
726
|
+
querybuilderEnabled: false
|
727
|
+
secondaryAxis:
|
728
|
+
sourceDescription:
|
729
|
+
units: ''
|
730
|
+
base: 0
|
731
|
+
noDefaultEvents: false
|
732
|
+
interpolatePoints: true
|
733
|
+
includeObsoleteMetrics: false
|
734
|
+
description:
|
735
|
+
chartSettings:
|
736
|
+
type: table
|
737
|
+
max:
|
738
|
+
min:
|
739
|
+
lineType:
|
740
|
+
stackType:
|
741
|
+
expectedDataSpacing:
|
742
|
+
windowing: last
|
743
|
+
windowSize: 5
|
744
|
+
showHosts: true
|
745
|
+
showLabels: true
|
746
|
+
showRawValues: false
|
747
|
+
autoColumnTags: false
|
748
|
+
columnTags:
|
749
|
+
tagMode: all
|
750
|
+
numTags: 4
|
751
|
+
customTags: []
|
752
|
+
groupBySource: false
|
753
|
+
sortValuesDescending:
|
754
|
+
y1Max:
|
755
|
+
y1Min:
|
756
|
+
y1Units: ''
|
757
|
+
y0ScaleSIBy1024: false
|
758
|
+
y1ScaleSIBy1024: false
|
759
|
+
y0UnitAutoscaling: false
|
760
|
+
y1UnitAutoscaling: false
|
761
|
+
invertDynamicLegendHoverControl:
|
762
|
+
fixedLegendEnabled: false
|
763
|
+
fixedLegendUseRawStats: false
|
764
|
+
fixedLegendPosition: RIGHT
|
765
|
+
fixedLegendDisplayStats:
|
766
|
+
- CURRENT
|
767
|
+
fixedLegendFilterSort: TOP
|
768
|
+
fixedLegendFilterLimit: 5
|
769
|
+
fixedLegendFilterField: CURRENT
|
770
|
+
fixedLegendHideLabel:
|
771
|
+
xMax:
|
772
|
+
xMin:
|
773
|
+
yMax:
|
774
|
+
yMin:
|
775
|
+
timeBasedColoring:
|
776
|
+
markdownContent:
|
777
|
+
sparklineDisplayValueType:
|
778
|
+
sparklineDisplayColor:
|
779
|
+
sparklineDisplayVerticalPosition:
|
780
|
+
sparklineDisplayHorizontalPosition:
|
781
|
+
sparklineDisplayFontSize:
|
782
|
+
sparklineDisplayPrefix:
|
783
|
+
sparklineDisplayPostfix:
|
784
|
+
sparklineSize:
|
785
|
+
sparklineLineColor:
|
786
|
+
sparklineFillColor:
|
787
|
+
sparklineValueColorMapColors:
|
788
|
+
sparklineValueColorMapValuesV2:
|
789
|
+
sparklineValueColorMapValues:
|
790
|
+
sparklineValueColorMapApplyTo:
|
791
|
+
sparklineDecimalPrecision:
|
792
|
+
sparklineValueTextMapText:
|
793
|
+
sparklineValueTextMapThresholds:
|
794
|
+
summarization: LAST
|
795
|
+
heightFactor: 100
|
796
|
+
- name: Agent Statistics
|
797
|
+
rows:
|
798
|
+
- charts:
|
799
|
+
- name: agent statistics
|
800
|
+
sources:
|
801
|
+
- name: raw_ver
|
802
|
+
query: aliasMetric(ts(~agent.build.version)/1000000 ,"Version")
|
803
|
+
disabled: true
|
804
|
+
scatterPlotSource: Y
|
805
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
806
|
+
querybuilderEnabled: true
|
807
|
+
secondaryAxis:
|
808
|
+
sourceDescription:
|
809
|
+
- name: version
|
810
|
+
query: floor(${raw_ver}) + ((${raw_ver} - floor(${raw_ver}))*10)
|
811
|
+
disabled:
|
812
|
+
scatterPlotSource: Y
|
813
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
814
|
+
querybuilderEnabled: true
|
815
|
+
secondaryAxis:
|
816
|
+
sourceDescription:
|
817
|
+
- name: predicted space (days)
|
818
|
+
query: floor(aliasMetric(ts(~agent.buffer.bytes-left)/ts(~agent.buffer.fill-rate),"Predicated
|
819
|
+
Space Available(in Days)") /(60*24))
|
820
|
+
disabled:
|
821
|
+
scatterPlotSource: Y
|
822
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
823
|
+
querybuilderEnabled: true
|
824
|
+
secondaryAxis:
|
825
|
+
sourceDescription:
|
826
|
+
- name: used buffer space (Gb)
|
827
|
+
query: round(aliasMetric(ts(~agent.buffer.bytes-left),"Usable Buffer Space(in
|
828
|
+
GB)")*100 /(1024*1024*1024))/100
|
829
|
+
disabled:
|
830
|
+
scatterPlotSource: Y
|
831
|
+
querybuilderSerialization:
|
832
|
+
querybuilderEnabled: false
|
833
|
+
secondaryAxis:
|
834
|
+
sourceDescription:
|
835
|
+
- name: fill rate (kb/m)
|
836
|
+
query: round(aliasMetric(ts(~agent.buffer.fill-rate),"Fill Rate(in kbytes/min)")
|
837
|
+
* 100/1024)/100
|
838
|
+
disabled:
|
839
|
+
scatterPlotSource: Y
|
840
|
+
querybuilderSerialization:
|
841
|
+
querybuilderEnabled: false
|
842
|
+
secondaryAxis:
|
843
|
+
sourceDescription:
|
844
|
+
- name: point rate
|
845
|
+
query: aliasMetric(round(sum(rate(ts(~agent.points.*.received)), sources)),"Point
|
846
|
+
Rate(k)")
|
847
|
+
disabled:
|
848
|
+
scatterPlotSource: Y
|
849
|
+
querybuilderSerialization:
|
850
|
+
querybuilderEnabled: false
|
851
|
+
secondaryAxis:
|
852
|
+
sourceDescription:
|
853
|
+
units: ''
|
854
|
+
base: 1
|
855
|
+
noDefaultEvents: false
|
856
|
+
interpolatePoints: false
|
857
|
+
includeObsoleteMetrics: false
|
858
|
+
description: ''
|
859
|
+
chartSettings:
|
860
|
+
type: table
|
861
|
+
max:
|
862
|
+
min:
|
863
|
+
lineType:
|
864
|
+
stackType:
|
865
|
+
expectedDataSpacing:
|
866
|
+
windowing: last
|
867
|
+
windowSize: 5
|
868
|
+
showHosts: true
|
869
|
+
showLabels: true
|
870
|
+
showRawValues: false
|
871
|
+
autoColumnTags: false
|
872
|
+
columnTags:
|
873
|
+
tagMode: all
|
874
|
+
numTags: 4
|
875
|
+
customTags: []
|
876
|
+
groupBySource: true
|
877
|
+
sortValuesDescending:
|
878
|
+
y1Max:
|
879
|
+
y1Min:
|
880
|
+
y1Units: ''
|
881
|
+
y0ScaleSIBy1024: false
|
882
|
+
y1ScaleSIBy1024: false
|
883
|
+
y0UnitAutoscaling: false
|
884
|
+
y1UnitAutoscaling: false
|
885
|
+
invertDynamicLegendHoverControl:
|
886
|
+
fixedLegendEnabled: false
|
887
|
+
fixedLegendUseRawStats: false
|
888
|
+
fixedLegendPosition: RIGHT
|
889
|
+
fixedLegendDisplayStats:
|
890
|
+
- CURRENT
|
891
|
+
fixedLegendFilterSort: TOP
|
892
|
+
fixedLegendFilterLimit: 5
|
893
|
+
fixedLegendFilterField: CURRENT
|
894
|
+
fixedLegendHideLabel:
|
895
|
+
xMax:
|
896
|
+
xMin:
|
897
|
+
yMax:
|
898
|
+
yMin:
|
899
|
+
timeBasedColoring:
|
900
|
+
markdownContent:
|
901
|
+
sparklineDisplayValueType:
|
902
|
+
sparklineDisplayColor:
|
903
|
+
sparklineDisplayVerticalPosition:
|
904
|
+
sparklineDisplayHorizontalPosition:
|
905
|
+
sparklineDisplayFontSize:
|
906
|
+
sparklineDisplayPrefix:
|
907
|
+
sparklineDisplayPostfix:
|
908
|
+
sparklineSize:
|
909
|
+
sparklineLineColor:
|
910
|
+
sparklineFillColor:
|
911
|
+
sparklineValueColorMapColors:
|
912
|
+
sparklineValueColorMapValuesV2:
|
913
|
+
sparklineValueColorMapValues:
|
914
|
+
sparklineValueColorMapApplyTo:
|
915
|
+
sparklineDecimalPrecision:
|
916
|
+
sparklineValueTextMapText:
|
917
|
+
sparklineValueTextMapThresholds:
|
918
|
+
summarization: LAST
|
919
|
+
heightFactor: 100
|
920
|
+
- charts:
|
921
|
+
- name: JVM memory
|
922
|
+
sources:
|
923
|
+
- name: total used
|
924
|
+
query: ts(~agent.jvm.memory.totalUsed)
|
925
|
+
disabled:
|
926
|
+
scatterPlotSource: Y
|
927
|
+
querybuilderSerialization:
|
928
|
+
querybuilderEnabled: false
|
929
|
+
secondaryAxis:
|
930
|
+
sourceDescription: ''
|
931
|
+
- name: heap used
|
932
|
+
query: ts(~agent.jvm.memory.heapUsed)
|
933
|
+
disabled:
|
934
|
+
scatterPlotSource: Y
|
935
|
+
querybuilderSerialization:
|
936
|
+
querybuilderEnabled: false
|
937
|
+
secondaryAxis:
|
938
|
+
sourceDescription: ''
|
939
|
+
- name: allocated
|
940
|
+
query: ts(~agent.jvm.memory.totalInit)
|
941
|
+
disabled:
|
942
|
+
scatterPlotSource: Y
|
943
|
+
querybuilderSerialization: '{"_v":1,"metric":"","filters":[[],"and"],"functions":[]}'
|
944
|
+
querybuilderEnabled: true
|
945
|
+
secondaryAxis:
|
946
|
+
sourceDescription: ''
|
947
|
+
units: B
|
948
|
+
base: 0
|
949
|
+
noDefaultEvents: false
|
950
|
+
interpolatePoints: false
|
951
|
+
includeObsoleteMetrics: false
|
952
|
+
description:
|
953
|
+
chartSettings:
|
954
|
+
type: line
|
955
|
+
max:
|
956
|
+
min: 0.0
|
957
|
+
lineType: linear
|
958
|
+
stackType:
|
959
|
+
expectedDataSpacing:
|
960
|
+
windowing: full
|
961
|
+
windowSize:
|
962
|
+
showHosts:
|
963
|
+
showLabels:
|
964
|
+
showRawValues:
|
965
|
+
autoColumnTags: false
|
966
|
+
columnTags:
|
967
|
+
tagMode: all
|
968
|
+
numTags: 4
|
969
|
+
customTags: []
|
970
|
+
groupBySource:
|
971
|
+
sortValuesDescending:
|
972
|
+
y1Max:
|
973
|
+
y1Min:
|
974
|
+
y1Units: ''
|
975
|
+
y0ScaleSIBy1024: false
|
976
|
+
y1ScaleSIBy1024: false
|
977
|
+
y0UnitAutoscaling: true
|
978
|
+
y1UnitAutoscaling: false
|
979
|
+
invertDynamicLegendHoverControl:
|
980
|
+
fixedLegendEnabled: true
|
981
|
+
fixedLegendUseRawStats: false
|
982
|
+
fixedLegendPosition: BOTTOM
|
983
|
+
fixedLegendDisplayStats:
|
984
|
+
- CURRENT
|
985
|
+
fixedLegendFilterSort: TOP
|
986
|
+
fixedLegendFilterLimit: 5
|
987
|
+
fixedLegendFilterField: CURRENT
|
988
|
+
fixedLegendHideLabel:
|
989
|
+
xMax:
|
990
|
+
xMin:
|
991
|
+
yMax:
|
992
|
+
yMin:
|
993
|
+
timeBasedColoring:
|
994
|
+
markdownContent:
|
995
|
+
sparklineDisplayValueType: VALUE
|
996
|
+
sparklineDisplayColor: ''
|
997
|
+
sparklineDisplayVerticalPosition: MIDDLE
|
998
|
+
sparklineDisplayHorizontalPosition: MIDDLE
|
999
|
+
sparklineDisplayFontSize: '100'
|
1000
|
+
sparklineDisplayPrefix:
|
1001
|
+
sparklineDisplayPostfix:
|
1002
|
+
sparklineSize: BACKGROUND
|
1003
|
+
sparklineLineColor:
|
1004
|
+
sparklineFillColor:
|
1005
|
+
sparklineValueColorMapColors:
|
1006
|
+
sparklineValueColorMapValuesV2:
|
1007
|
+
sparklineValueColorMapValues:
|
1008
|
+
sparklineValueColorMapApplyTo: TEXT
|
1009
|
+
sparklineDecimalPrecision:
|
1010
|
+
sparklineValueTextMapText:
|
1011
|
+
sparklineValueTextMapThresholds:
|
1012
|
+
summarization: MEAN
|
1013
|
+
- name: network latency
|
1014
|
+
sources:
|
1015
|
+
- name: latency
|
1016
|
+
query: ts(~agent.push.*.duration.duration.median)
|
1017
|
+
disabled:
|
1018
|
+
scatterPlotSource: Y
|
1019
|
+
querybuilderSerialization:
|
1020
|
+
querybuilderEnabled: false
|
1021
|
+
secondaryAxis:
|
1022
|
+
sourceDescription:
|
1023
|
+
units: ms
|
1024
|
+
base: 0
|
1025
|
+
noDefaultEvents: false
|
1026
|
+
interpolatePoints: false
|
1027
|
+
includeObsoleteMetrics: false
|
1028
|
+
description:
|
1029
|
+
chartSettings:
|
1030
|
+
type: line
|
1031
|
+
max:
|
1032
|
+
min:
|
1033
|
+
lineType: linear
|
1034
|
+
stackType:
|
1035
|
+
expectedDataSpacing:
|
1036
|
+
windowing: full
|
1037
|
+
windowSize:
|
1038
|
+
showHosts:
|
1039
|
+
showLabels:
|
1040
|
+
showRawValues:
|
1041
|
+
autoColumnTags: false
|
1042
|
+
columnTags:
|
1043
|
+
tagMode: all
|
1044
|
+
numTags: 4
|
1045
|
+
customTags: []
|
1046
|
+
groupBySource:
|
1047
|
+
sortValuesDescending:
|
1048
|
+
y1Max:
|
1049
|
+
y1Min:
|
1050
|
+
y1Units: ''
|
1051
|
+
y0ScaleSIBy1024: false
|
1052
|
+
y1ScaleSIBy1024: false
|
1053
|
+
y0UnitAutoscaling: true
|
1054
|
+
y1UnitAutoscaling: false
|
1055
|
+
invertDynamicLegendHoverControl:
|
1056
|
+
fixedLegendEnabled: false
|
1057
|
+
fixedLegendUseRawStats: false
|
1058
|
+
fixedLegendPosition: RIGHT
|
1059
|
+
fixedLegendDisplayStats:
|
1060
|
+
- CURRENT
|
1061
|
+
fixedLegendFilterSort: TOP
|
1062
|
+
fixedLegendFilterLimit: 5
|
1063
|
+
fixedLegendFilterField: CURRENT
|
1064
|
+
fixedLegendHideLabel:
|
1065
|
+
xMax:
|
1066
|
+
xMin:
|
1067
|
+
yMax:
|
1068
|
+
yMin:
|
1069
|
+
timeBasedColoring:
|
1070
|
+
markdownContent:
|
1071
|
+
sparklineDisplayValueType:
|
1072
|
+
sparklineDisplayColor:
|
1073
|
+
sparklineDisplayVerticalPosition:
|
1074
|
+
sparklineDisplayHorizontalPosition:
|
1075
|
+
sparklineDisplayFontSize:
|
1076
|
+
sparklineDisplayPrefix:
|
1077
|
+
sparklineDisplayPostfix:
|
1078
|
+
sparklineSize:
|
1079
|
+
sparklineLineColor:
|
1080
|
+
sparklineFillColor:
|
1081
|
+
sparklineValueColorMapColors:
|
1082
|
+
sparklineValueColorMapValuesV2:
|
1083
|
+
sparklineValueColorMapValues:
|
1084
|
+
sparklineValueColorMapApplyTo:
|
1085
|
+
sparklineDecimalPrecision:
|
1086
|
+
sparklineValueTextMapText:
|
1087
|
+
sparklineValueTextMapThresholds:
|
1088
|
+
summarization: MEAN
|
1089
|
+
heightFactor: 100
|
1090
|
+
description:
|
1091
|
+
parameters:
|
1092
|
+
parameterDetails: {}
|
1093
|
+
tags:
|
1094
|
+
customerTags:
|
1095
|
+
- wavefront
|
1096
|
+
userTags:
|
1097
|
+
slackboy@gmail.com:
|
1098
|
+
- favorite
|
1099
|
+
updateUser: slackboy@gmail.com
|
1100
|
+
updateTime: 1489081763772
|
1101
|
+
displayDescription: false
|
1102
|
+
displaySectionTableOfContents: true
|
1103
|
+
displayQueryParameters: false
|
1104
|
+
chartTitleScalar:
|
1105
|
+
eventQuery:
|
1106
|
+
chartTitleColor:
|
1107
|
+
chartTitleBgColor:
|
1108
|
+
viewsLastDay: 0
|
1109
|
+
viewsLastWeek: 0
|
1110
|
+
viewsLastMonth: 0
|
1111
|
+
creatorUser:
|
1112
|
+
createdTime:
|
1113
|
+
owner:
|
1114
|
+
systemDashboardVersion:
|