fluent-plugin-cmetrics 0.1.0.rc8 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +26 -0
- data/fluent-plugin-cmetrics.gemspec +1 -1
- data/lib/fluent/plugin/filter_forwarded_cmetrics_parser.rb +128 -0
- data/lib/fluent/plugin/formatter_cmetrics_splunk_metric_payload.rb +14 -6
- data/test/fixtures/{cmetrics.bin → cmetrics_0.2.bin} +0 -0
- data/test/fixtures/cmetrics_0.3.bin +0 -0
- data/test/fixtures/forwarded_cmetrics.json +1 -0
- data/test/plugin/test_filter_cmetrics_parser.rb +5 -1
- data/test/plugin/test_filter_forwarded_cmetrics_parser.rb +67 -0
- metadata +13 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 371206a630dabf685de12ebf21c32571973ef768c126227d03448e6e24494152
|
4
|
+
data.tar.gz: bf542ee6bd7958d70c02011f7fc7ef462f239bd64abd81bffc22f44d2f911c05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 289eb0b0e7f3146f049570d1e1637562ec9909d59b90d282c8719a5d5ee795ed33152bd94728699ffcd9ee216cf74387d2000e5fd4287814c9af0f54d4f68271
|
7
|
+
data.tar.gz: a2b0508113332ea336cfb476f8396a986d4f4dbaf93785e22476444e21a787c9e2fb7741f84fc3ece241dbedf2a97b5b368be3d399a554a18350331dfbc50f89
|
data/README.md
CHANGED
@@ -110,6 +110,32 @@ Specify splunk source name
|
|
110
110
|
|
111
111
|
Specify splunk sourcetype name
|
112
112
|
|
113
|
+
### only_use_last_field_keys (bool) (optional)
|
114
|
+
|
115
|
+
Whether using only last key values or not when processing for field keys
|
116
|
+
|
117
|
+
Default value: `false`
|
118
|
+
|
119
|
+
### \<fields\> section (optional) (single)
|
120
|
+
|
121
|
+
This secsion is used for adding extra fields as dimensions into cmetrics msgpack Splunk metric payload.
|
122
|
+
|
123
|
+
## Fluent::Plugin::ForwardedCMetricsParserFilter
|
124
|
+
|
125
|
+
### cmetrics_labels_key (string) (optional)
|
126
|
+
|
127
|
+
cmetrics labels key
|
128
|
+
|
129
|
+
Default value: `labels`.
|
130
|
+
|
131
|
+
### format_to_splunk_metric (bool) (optional)
|
132
|
+
|
133
|
+
format to Splunk metrics
|
134
|
+
|
135
|
+
### dimensions_key (string) (optional)
|
136
|
+
|
137
|
+
dimensions key
|
138
|
+
|
113
139
|
### \<fields\> section (optional) (single)
|
114
140
|
|
115
141
|
This secsion is used for adding extra fields as dimensions into cmetrics msgpack Splunk metric payload.
|
@@ -0,0 +1,128 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2022- Calyptia Inc.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
require "fluent/plugin/filter"
|
17
|
+
require "fluent/event"
|
18
|
+
require "fluent/time"
|
19
|
+
require "time"
|
20
|
+
|
21
|
+
module Fluent
|
22
|
+
module Plugin
|
23
|
+
class ForwardedCMetricsParserFilter < Fluent::Plugin::Filter
|
24
|
+
Fluent::Plugin.register_filter("forwarded_cmetrics_parser", self)
|
25
|
+
|
26
|
+
helpers :record_accessor
|
27
|
+
|
28
|
+
desc "cmetrics labels key"
|
29
|
+
config_param :cmetrics_labels_key, :string, default: "labels"
|
30
|
+
desc "format to Splunk metrics"
|
31
|
+
config_param :format_to_splunk_metric, :bool, default: false
|
32
|
+
desc "dimensions key"
|
33
|
+
config_param :dimensions_key, :string, default: nil
|
34
|
+
config_section :fields, init: false, multi: false,required: false do
|
35
|
+
# Nothing here. For later purpose.
|
36
|
+
end
|
37
|
+
|
38
|
+
def configure(conf)
|
39
|
+
super
|
40
|
+
@labels_accessor = record_accessor_create(@cmetrics_labels_key)
|
41
|
+
@fields_accessors = {}
|
42
|
+
conf.elements(name: "fields").each do |e|
|
43
|
+
e.each_pair{|k, _v|
|
44
|
+
e.has_key?(k) # Suppress unused warnings.
|
45
|
+
@fields_accessors[k] = record_accessor_create(k)
|
46
|
+
}
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def parse_cmetrics_hash(record)
|
51
|
+
cmetrics = []
|
52
|
+
record.each do |payload|
|
53
|
+
payload["metrics"].each do |metric|
|
54
|
+
labels = []
|
55
|
+
opts = metric["meta"]["opts"]
|
56
|
+
unless metric["meta"]["labels"].empty?
|
57
|
+
metric["meta"]["labels"].each do |k_label|
|
58
|
+
labels << k_label
|
59
|
+
end
|
60
|
+
end
|
61
|
+
metric["values"].each do |entry|
|
62
|
+
cmetric = {
|
63
|
+
"namespace" => opts["ns"],
|
64
|
+
"subsystem" => opts["ss"],
|
65
|
+
"name" => opts["name"],
|
66
|
+
"value" => entry["value"],
|
67
|
+
"description" => opts["desc"],
|
68
|
+
"timestamp" => entry["ts"] / 1000000000.0
|
69
|
+
}
|
70
|
+
unless labels.empty?
|
71
|
+
params = {}
|
72
|
+
entry["labels"].each_with_index do |v_label, index|
|
73
|
+
label = labels[index]
|
74
|
+
params[label] = v_label
|
75
|
+
end
|
76
|
+
cmetric["labels"] = params
|
77
|
+
end
|
78
|
+
cmetrics << cmetric
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
cmetrics
|
83
|
+
end
|
84
|
+
|
85
|
+
def format_to_splunk_style_with_dims(metric)
|
86
|
+
subsystem = metric.delete("subsystem")
|
87
|
+
# labels will be treated as dimensions.
|
88
|
+
dimensions = Hash.new(0)
|
89
|
+
if labels = @labels_accessor.call(metric)
|
90
|
+
labels.map {|k,v|
|
91
|
+
dimensions[k] = v
|
92
|
+
}
|
93
|
+
end
|
94
|
+
name = metric.delete("name")
|
95
|
+
return [subsystem, name].compact.reject{|e| e.empty?}.join("."), dimensions
|
96
|
+
end
|
97
|
+
|
98
|
+
def filter_stream(tag, es)
|
99
|
+
new_es = Fluent::MultiEventStream.new
|
100
|
+
es.each do |time, record|
|
101
|
+
extra_fields = {}
|
102
|
+
cmetrics = parse_cmetrics_hash(record)
|
103
|
+
cmetrics.each do |metric|
|
104
|
+
next if metric.empty?
|
105
|
+
|
106
|
+
@fields_accessors.each do |key, accessor|
|
107
|
+
extra_fields[key] = accessor.call(metric)
|
108
|
+
end
|
109
|
+
if @format_to_splunk_metric
|
110
|
+
metric["name"], dims = format_to_splunk_style_with_dims(metric)
|
111
|
+
if @dimensions_key
|
112
|
+
metric[@dimensions_key] = dims
|
113
|
+
else
|
114
|
+
metric.merge!(dims)
|
115
|
+
end
|
116
|
+
end
|
117
|
+
if @fields_accessors
|
118
|
+
metric.merge!(extra_fields)
|
119
|
+
end
|
120
|
+
time = Time.at(metric.delete("timestamp"))
|
121
|
+
new_es.add(Fluent::EventTime.new(time.to_i, time.nsec), metric)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
new_es
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
@@ -44,8 +44,10 @@ module Fluent
|
|
44
44
|
config_param :source, :string, default: nil
|
45
45
|
desc "Specify splunk sourcetype name"
|
46
46
|
config_param :sourcetype, :string, default: nil
|
47
|
-
|
48
|
-
|
47
|
+
desc "Whether using only last key values or not when processing for field keys"
|
48
|
+
config_param :only_use_last_field_keys, :bool, default: false
|
49
|
+
config_section :fields, init: false, multi: false, required: false do
|
50
|
+
# Other parameters nothing here. For later purpose.
|
49
51
|
end
|
50
52
|
|
51
53
|
def initialize
|
@@ -77,9 +79,6 @@ module Fluent
|
|
77
79
|
end
|
78
80
|
extra_fields = {}
|
79
81
|
|
80
|
-
@fields_accessors.each do |key, accessor|
|
81
|
-
extra_fields[key] = accessor.call(record)
|
82
|
-
end
|
83
82
|
payload = {
|
84
83
|
host: host,
|
85
84
|
# From the API reference
|
@@ -96,7 +95,16 @@ module Fluent
|
|
96
95
|
if dims = @cmetrics_dims_accessor.call(record)
|
97
96
|
fields.merge!(dims)
|
98
97
|
end
|
99
|
-
|
98
|
+
@fields_accessors.each do |key, accessor|
|
99
|
+
if record = accessor.call(record)
|
100
|
+
record.each do |k, v|
|
101
|
+
if @only_use_last_field_keys
|
102
|
+
extra_fields[k.split(".").last] = v
|
103
|
+
else
|
104
|
+
extra_fields[k] = v
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
100
108
|
fields.merge!(extra_fields)
|
101
109
|
end
|
102
110
|
payload.merge!(fields)
|
File without changes
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"meta":{"cmetrics":{}, "external":{}, "processing":{"static_labels":[]}}, "metrics":[{"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"cpu", "name":"core_throttles_total", "desc":"Number of times this CPU core has been throttled."}, "labels":["core", "package"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"cpu", "name":"package_throttles_total", "desc":"Number of times this CPU package has been throttled."}, "labels":["package"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"cpu", "name":"seconds_total", "desc":"Seconds the CPUs spent in each mode."}, "labels":["cpu", "mode"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"cpu", "name":"guest_seconds_total", "desc":"Seconds the CPUs spent in guests (VMs) for each mode."}, "labels":["cpu", "mode"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"cpu", "name":"seconds_total", "desc":"Seconds the CPUs spent in each mode."}, "labels":["cpu", "mode"], "aggregation_type":2}, "values":[{"ts":1667807418379050607, "value":59438.82, "labels":["0", "idle"], "hash":13507569966644822842}, {"ts":1667807418379050607, "value":197.14, "labels":["0", "iowait"], "hash":17397029261175600146}, {"ts":1667807418379050607, "value":0.0, "labels":["0", "irq"], "hash":11039019021255934418}, {"ts":1667807418379050607, "value":3.92, "labels":["0", "nice"], "hash":11294789625628051338}, {"ts":1667807418379050607, "value":42.28, "labels":["0", "softirq"], "hash":9771247163507552642}, {"ts":1667807418379050607, "value":0.0, "labels":["0", "steal"], "hash":3180200586020314534}, {"ts":1667807418379050607, "value":1341.83, "labels":["0", "system"], "hash":4395037250944723496}, {"ts":1667807418379050607, "value":2315.79, "labels":["0", "user"], "hash":13029983028582409945}, {"ts":1667807418379050607, "value":14571.7, "labels":["1", "idle"], "hash":17240904698828806491}, {"ts":1667807418379050607, "value":174.9, "labels":["1", "iowait"], "hash":11862233409024745403}, {"ts":1667807418379050607, "value":0.0, "labels":["1", "irq"], "hash":15382762363401379921}, {"ts":1667807418379050607, "value":9.55, "labels":["1", "nice"], "hash":6788331002627089095}, {"ts":1667807418379050607, "value":18.36, "labels":["1", "softirq"], "hash":4607017772431460224}, {"ts":1667807418379050607, "value":0.0, "labels":["1", "steal"], "hash":12619450028503617363}, {"ts":1667807418379050607, "value":1526.94, "labels":["1", "system"], "hash":3436509783453866897}, {"ts":1667807418379050607, "value":2389.1, "labels":["1", "user"], "hash":11866747462991164461}, {"ts":1667807418379050607, "value":14715.08, "labels":["2", "idle"], "hash":9498444915011687540}, {"ts":1667807418379050607, "value":186.42, "labels":["2", "iowait"], "hash":146342770966028628}, {"ts":1667807418379050607, "value":0.0, "labels":["2", "irq"], "hash":16411475340231423519}, {"ts":1667807418379050607, "value":5.78, "labels":["2", "nice"], "hash":1693281315954907327}, {"ts":1667807418379050607, "value":13.2, "labels":["2", "softirq"], "hash":13590150113622702625}, {"ts":1667807418379050607, "value":0.0, "labels":["2", "steal"], "hash":8191193674637415333}, {"ts":1667807418379050607, "value":1306.56, "labels":["2", "system"], "hash":2902364837804998906}, {"ts":1667807418379050607, "value":2580.9, "labels":["2", "user"], "hash":16419731763320618736}, {"ts":1667807418379050607, "value":14783.67, "labels":["3", "idle"], "hash":17106970542247087329}, {"ts":1667807418379050607, "value":109.49, "labels":["3", "iowait"], "hash":2924873882108059203}, {"ts":1667807418379050607, "value":0.0, "labels":["3", "irq"], "hash":13801808704336101353}, {"ts":1667807418379050607, "value":4.74, "labels":["3", "nice"], "hash":12776329622516283999}, {"ts":1667807418379050607, "value":21.13, "labels":["3", "softirq"], "hash":15553551779652801418}, {"ts":1667807418379050607, "value":0.0, "labels":["3", "steal"], "hash":920171730862923465}, {"ts":1667807418379050607, "value":1363.69, "labels":["3", "system"], "hash":7946148407133561496}, {"ts":1667807418379050607, "value":2768.47, "labels":["3", "user"], "hash":7644673435115559013}, {"ts":1667807418379050607, "value":14825.09, "labels":["4", "idle"], "hash":14069352372979098371}, {"ts":1667807418379050607, "value":56.64, "labels":["4", "iowait"], "hash":5073898070932743957}, {"ts":1667807418379050607, "value":0.0, "labels":["4", "irq"], "hash":13792338509335800336}, {"ts":1667807418379050607, "value":2.85, "labels":["4", "nice"], "hash":7329280531890773883}, {"ts":1667807418379050607, "value":8.12, "labels":["4", "softirq"], "hash":5709292021240518347}, {"ts":1667807418379050607, "value":0.0, "labels":["4", "steal"], "hash":7770951657495695393}, {"ts":1667807418379050607, "value":1235.54, "labels":["4", "system"], "hash":11299968318725957363}, {"ts":1667807418379050607, "value":2555.28, "labels":["4", "user"], "hash":16994395766882771302}, {"ts":1667807418379050607, "value":14775.48, "labels":["5", "idle"], "hash":11408460919965216293}, {"ts":1667807418379050607, "value":70.45, "labels":["5", "iowait"], "hash":11047499660695283835}, {"ts":1667807418379050607, "value":0.0, "labels":["5", "irq"], "hash":4067226965720181141}, {"ts":1667807418379050607, "value":4.24, "labels":["5", "nice"], "hash":5931672958531015086}, {"ts":1667807418379050607, "value":7.88, "labels":["5", "softirq"], "hash":4587319798564669013}, {"ts":1667807418379050607, "value":0.0, "labels":["5", "steal"], "hash":12902723282487611202}, {"ts":1667807418379050607, "value":1372.16, "labels":["5", "system"], "hash":4815985901985542922}, {"ts":1667807418379050607, "value":2653.77, "labels":["5", "user"], "hash":6292822294656812765}, {"ts":1667807418379050607, "value":14821.85, "labels":["6", "idle"], "hash":222292854874874664}, {"ts":1667807418379050607, "value":59.1, "labels":["6", "iowait"], "hash":5324746065142825104}, {"ts":1667807418379050607, "value":0.0, "labels":["6", "irq"], "hash":2748869600391224702}, {"ts":1667807418379050607, "value":5.23, "labels":["6", "nice"], "hash":14961711200299278073}, {"ts":1667807418379050607, "value":363.8, "labels":["6", "softirq"], "hash":6363054800889761883}, {"ts":1667807418379050607, "value":0.0, "labels":["6", "steal"], "hash":13839041361333451770}, {"ts":1667807418379050607, "value":1349.93, "labels":["6", "system"], "hash":17106190625057449404}, {"ts":1667807418379050607, "value":2593.66, "labels":["6", "user"], "hash":15350096761822341055}, {"ts":1667807418379050607, "value":14828.56, "labels":["7", "idle"], "hash":10468609417771415961}, {"ts":1667807418379050607, "value":49.67, "labels":["7", "iowait"], "hash":13432814070012384922}, {"ts":1667807418379050607, "value":0.0, "labels":["7", "irq"], "hash":13175489771496670804}, {"ts":1667807418379050607, "value":5.74, "labels":["7", "nice"], "hash":2858830120238345743}, {"ts":1667807418379050607, "value":42.76, "labels":["7", "softirq"], "hash":13355732273376936131}, {"ts":1667807418379050607, "value":0.0, "labels":["7", "steal"], "hash":18149642138361155823}, {"ts":1667807418379050607, "value":1335.3, "labels":["7", "system"], "hash":7828388934093084016}, {"ts":1667807418379050607, "value":2549.86, "labels":["7", "user"], "hash":1454309610412685434}, {"ts":1667807418379050607, "value":14792.93, "labels":["8", "idle"], "hash":16313264909166982512}, {"ts":1667807418379050607, "value":96.76, "labels":["8", "iowait"], "hash":14837306784138744825}, {"ts":1667807418379050607, "value":0.0, "labels":["8", "irq"], "hash":13642306887236608917}, {"ts":1667807418379050607, "value":9.41, "labels":["8", "nice"], "hash":17659827355585914498}, {"ts":1667807418379050607, "value":9.64, "labels":["8", "softirq"], "hash":1283692333977940414}, {"ts":1667807418379050607, "value":0.0, "labels":["8", "steal"], "hash":2878104928178792318}, {"ts":1667807418379050607, "value":2075.52, "labels":["8", "system"], "hash":14553060038841919282}, {"ts":1667807418379050607, "value":1946.94, "labels":["8", "user"], "hash":8940611707997919165}, {"ts":1667807418379050607, "value":14817.22, "labels":["9", "idle"], "hash":8852896795966056885}, {"ts":1667807418379050607, "value":68.19, "labels":["9", "iowait"], "hash":16993289645860937289}, {"ts":1667807418379050607, "value":0.0, "labels":["9", "irq"], "hash":6077962452297517319}, {"ts":1667807418379050607, "value":5.91, "labels":["9", "nice"], "hash":14975403507513058735}, {"ts":1667807418379050607, "value":1639.17, "labels":["9", "softirq"], "hash":10937544414376904115}, {"ts":1667807418379050607, "value":0.0, "labels":["9", "steal"], "hash":11094922484100547421}, {"ts":1667807418379050607, "value":1487.6, "labels":["9", "system"], "hash":1475235515103647538}, {"ts":1667807418379050607, "value":2325.91, "labels":["9", "user"], "hash":7208669805384366427}, {"ts":1667807418379050607, "value":14799.47, "labels":["10", "idle"], "hash":14216940142936992448}, {"ts":1667807418379050607, "value":66.37, "labels":["10", "iowait"], "hash":3449030833824041011}, {"ts":1667807418379050607, "value":0.0, "labels":["10", "irq"], "hash":18220060085954773785}, {"ts":1667807418379050607, "value":7.01, "labels":["10", "nice"], "hash":14397171379589421854}, {"ts":1667807418379050607, "value":28.08, "labels":["10", "softirq"], "hash":13441144802210606923}, {"ts":1667807418379050607, "value":0.0, "labels":["10", "steal"], "hash":7726601009137765228}, {"ts":1667807418379050607, "value":1186.75, "labels":["10", "system"], "hash":6265118943793207278}, {"ts":1667807418379050607, "value":2519.9, "labels":["10", "user"], "hash":11599569856028670002}, {"ts":1667807418379050607, "value":14048.74, "labels":["11", "idle"], "hash":9267250690104866980}, {"ts":1667807418379050607, "value":79.3, "labels":["11", "iowait"], "hash":13194939697887428277}, {"ts":1667807418379050607, "value":0.0, "labels":["11", "irq"], "hash":14153446000546708687}, {"ts":1667807418379050607, "value":3.4, "labels":["11", "nice"], "hash":714347915223668932}, {"ts":1667807418379050607, "value":813.55, "labels":["11", "softirq"], "hash":2472251803666337606}, {"ts":1667807418379050607, "value":0.0, "labels":["11", "steal"], "hash":216013116759279406}, {"ts":1667807418379050607, "value":1282.83, "labels":["11", "system"], "hash":434739878132700500}, {"ts":1667807418379050607, "value":2445.66, "labels":["11", "user"], "hash":13808080553093308596}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"cpu", "name":"guest_seconds_total", "desc":"Seconds the CPUs spent in guests (VMs) for each mode."}, "labels":["cpu", "mode"], "aggregation_type":2}, "values":[{"ts":1667807418379050607, "value":0.0, "labels":["0", "user"], "hash":11296804334141988811}, {"ts":1667807418379050607, "value":0.0, "labels":["0", "nice"], "hash":9143622650194038974}, {"ts":1667807418379050607, "value":0.0, "labels":["1", "user"], "hash":18030560647481868764}, {"ts":1667807418379050607, "value":0.0, "labels":["1", "nice"], "hash":7358975789558378910}, {"ts":1667807418379050607, "value":0.0, "labels":["2", "user"], "hash":4276939294391521822}, {"ts":1667807418379050607, "value":0.0, "labels":["2", "nice"], "hash":11538629078425364136}, {"ts":1667807418379050607, "value":0.0, "labels":["3", "user"], "hash":17845970138584324262}, {"ts":1667807418379050607, "value":0.0, "labels":["3", "nice"], "hash":4249329021491573797}, {"ts":1667807418379050607, "value":0.0, "labels":["4", "user"], "hash":6105421910715722716}, {"ts":1667807418379050607, "value":0.0, "labels":["4", "nice"], "hash":3719996887439107843}, {"ts":1667807418379050607, "value":0.0, "labels":["5", "user"], "hash":11530798596757644790}, {"ts":1667807418379050607, "value":0.0, "labels":["5", "nice"], "hash":7038874110428157671}, {"ts":1667807418379050607, "value":0.0, "labels":["6", "user"], "hash":3165518608605216637}, {"ts":1667807418379050607, "value":0.0, "labels":["6", "nice"], "hash":13950452208639638086}, {"ts":1667807418379050607, "value":0.0, "labels":["7", "user"], "hash":17966321422831681942}, {"ts":1667807418379050607, "value":0.0, "labels":["7", "nice"], "hash":13852865820613294910}, {"ts":1667807418379050607, "value":0.0, "labels":["8", "user"], "hash":9149842413696164112}, {"ts":1667807418379050607, "value":0.0, "labels":["8", "nice"], "hash":1172757753457029738}, {"ts":1667807418379050607, "value":0.0, "labels":["9", "user"], "hash":6195135997284798589}, {"ts":1667807418379050607, "value":0.0, "labels":["9", "nice"], "hash":17868144272599747347}, {"ts":1667807418379050607, "value":0.0, "labels":["10", "user"], "hash":2232090940815039416}, {"ts":1667807418379050607, "value":0.0, "labels":["10", "nice"], "hash":2808410249546146159}, {"ts":1667807418379050607, "value":0.0, "labels":["11", "user"], "hash":890035092731137969}, {"ts":1667807418379050607, "value":0.0, "labels":["11", "nice"], "hash":8579393775395748147}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"reads_completed_total", "desc":"The total number of reads completed successfully."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383118811, "value":516191.0, "labels":["nvme1n1"], "hash":17791168026425753672}, {"ts":1667807418383354053, "value":1006.0, "labels":["nvme0n1"], "hash":11442254738212815592}, {"ts":1667807418383493545, "value":2114.0, "labels":["sda"], "hash":12039300632772958168}, {"ts":1667807418383615634, "value":2115.0, "labels":["sdb"], "hash":8371653298768106213}, {"ts":1667807418383741820, "value":47.0, "labels":["sr0"], "hash":10289509802267441621}, {"ts":1667807418383861622, "value":64184.0, "labels":["sdc"], "hash":6036124138862555917}, {"ts":1667807418383963477, "value":7.0, "labels":["sdd"], "hash":2153770786967835730}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"reads_merged_total", "desc":"The total number of reads merged."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383128520, "value":369292.0, "labels":["nvme1n1"], "hash":1391464173103058698}, {"ts":1667807418383363189, "value":0.0, "labels":["nvme0n1"], "hash":10648299582567417069}, {"ts":1667807418383498786, "value":1213.0, "labels":["sda"], "hash":12670600394673945029}, {"ts":1667807418383620752, "value":1388.0, "labels":["sdb"], "hash":4466717933269904549}, {"ts":1667807418383759773, "value":0.0, "labels":["sr0"], "hash":13137927464063477235}, {"ts":1667807418383868134, "value":98200.0, "labels":["sdc"], "hash":442023294164089767}, {"ts":1667807418383968399, "value":0.0, "labels":["sdd"], "hash":7404183561881608778}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"read_bytes_total", "desc":"The total number of bytes read successfully."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383132966, "value":17584798.0, "labels":["nvme1n1"], "hash":10841527657532464336}, {"ts":1667807418383368140, "value":96850.0, "labels":["nvme0n1"], "hash":9747627762567228411}, {"ts":1667807418383502614, "value":61345.0, "labels":["sda"], "hash":14342015034373305389}, {"ts":1667807418383624697, "value":62195.0, "labels":["sdb"], "hash":15224762338789050987}, {"ts":1667807418383765237, "value":17.0, "labels":["sr0"], "hash":17598465131518204773}, {"ts":1667807418383873565, "value":21367259.0, "labels":["sdc"], "hash":9520039318088982276}, {"ts":1667807418383972218, "value":2.0, "labels":["sdd"], "hash":1560915174644980687}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"read_time_seconds_total", "desc":"The total number of seconds spent by all reads."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383138293, "value":51724.0, "labels":["nvme1n1"], "hash":1307778302610535163}, {"ts":1667807418383372981, "value":1805.0, "labels":["nvme0n1"], "hash":15950124027508557160}, {"ts":1667807418383506332, "value":61610.0, "labels":["sda"], "hash":6257940876629811212}, {"ts":1667807418383628481, "value":5250.0, "labels":["sdb"], "hash":12306723439833431547}, {"ts":1667807418383770237, "value":210.0, "labels":["sr0"], "hash":1773934242954755549}, {"ts":1667807418383879409, "value":1405810.0, "labels":["sdc"], "hash":6319037516966746038}, {"ts":1667807418383975958, "value":8.0, "labels":["sdd"], "hash":13906873723899926516}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"writes_completed_total", "desc":"The total number of writes completed successfully."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383144650, "value":530936.0, "labels":["nvme1n1"], "hash":3471907146530867077}, {"ts":1667807418383377728, "value":74.0, "labels":["nvme0n1"], "hash":4414420542145021028}, {"ts":1667807418383511145, "value":338.0, "labels":["sda"], "hash":4368834827434737962}, {"ts":1667807418383633317, "value":74.0, "labels":["sdb"], "hash":10539335761159062361}, {"ts":1667807418383776168, "value":0.0, "labels":["sr0"], "hash":7432339946996837591}, {"ts":1667807418383885404, "value":189922.0, "labels":["sdc"], "hash":13821786989833552149}, {"ts":1667807418383980580, "value":0.0, "labels":["sdd"], "hash":3037199231047892820}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"writes_merged_total", "desc":"The number of writes merged."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383177902, "value":541217.0, "labels":["nvme1n1"], "hash":15198470980378021511}, {"ts":1667807418383382413, "value":0.0, "labels":["nvme0n1"], "hash":12979644329366236913}, {"ts":1667807418383515783, "value":322.0, "labels":["sda"], "hash":7200358767826314155}, {"ts":1667807418383637903, "value":0.0, "labels":["sdb"], "hash":11350293440426741224}, {"ts":1667807418383782273, "value":0.0, "labels":["sr0"], "hash":12614847476253105372}, {"ts":1667807418383890367, "value":75821.0, "labels":["sdc"], "hash":573310680121778626}, {"ts":1667807418383985039, "value":0.0, "labels":["sdd"], "hash":9281826108924506638}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"written_bytes_total", "desc":"The total number of bytes written successfully."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383182756, "value":25740816.0, "labels":["nvme1n1"], "hash":18353796806875913968}, {"ts":1667807418383387180, "value":24.0, "labels":["nvme0n1"], "hash":864139031444725828}, {"ts":1667807418383519520, "value":4800.0, "labels":["sda"], "hash":13657826144001107275}, {"ts":1667807418383641695, "value":24.0, "labels":["sdb"], "hash":17434884975631327737}, {"ts":1667807418383787918, "value":0.0, "labels":["sr0"], "hash":14081775930216565202}, {"ts":1667807418383894174, "value":239430760.0, "labels":["sdc"], "hash":11823940789351653847}, {"ts":1667807418383988583, "value":0.0, "labels":["sdd"], "hash":18412859723721183215}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"write_time_seconds_total", "desc":"This is the total number of seconds spent by all writes."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383188439, "value":1417457.0, "labels":["nvme1n1"], "hash":8958195568592349136}, {"ts":1667807418383392122, "value":105.0, "labels":["nvme0n1"], "hash":6832517249203320644}, {"ts":1667807418383523160, "value":1968.0, "labels":["sda"], "hash":10568174226841308129}, {"ts":1667807418383645411, "value":44.0, "labels":["sdb"], "hash":11920986465124967239}, {"ts":1667807418383790789, "value":0.0, "labels":["sr0"], "hash":14285536916820984205}, {"ts":1667807418383897958, "value":9737340.0, "labels":["sdc"], "hash":18012018651832808425}, {"ts":1667807418383992065, "value":0.0, "labels":["sdd"], "hash":5114015156537045700}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"io_time_seconds_total", "desc":"Total seconds spent doing I/Os."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383199980, "value":1032772.0, "labels":["nvme1n1"], "hash":10379964247440333063}, {"ts":1667807418383412556, "value":11532.0, "labels":["nvme0n1"], "hash":13608084917001368109}, {"ts":1667807418383531348, "value":44024.0, "labels":["sda"], "hash":10525123807588273781}, {"ts":1667807418383653604, "value":361880.0, "labels":["sdb"], "hash":12676618710557215930}, {"ts":1667807418383798889, "value":336.0, "labels":["sr0"], "hash":9489058211062754841}, {"ts":1667807418383906320, "value":2002936.0, "labels":["sdc"], "hash":11151579660273023827}, {"ts":1667807418384000370, "value":20.0, "labels":["sdd"], "hash":9575209796522006039}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"io_time_weighted_seconds_total", "desc":"The weighted # of seconds spent doing I/Os."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383205165, "value":1937493.0, "labels":["nvme1n1"], "hash":2753768613012752307}, {"ts":1667807418383417668, "value":12797.0, "labels":["nvme0n1"], "hash":12624144600310105085}, {"ts":1667807418383536043, "value":65223.0, "labels":["sda"], "hash":14213856881994417026}, {"ts":1667807418383658411, "value":359816.0, "labels":["sdb"], "hash":11058677751559767168}, {"ts":1667807418383804778, "value":210.0, "labels":["sr0"], "hash":16604903287872668044}, {"ts":1667807418383911224, "value":11416841.0, "labels":["sdc"], "hash":7493180703292510958}, {"ts":1667807418384012235, "value":8.0, "labels":["sdd"], "hash":7590272256276643104}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"discards_completed_total", "desc":"The total number of discards completed successfully."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383211152, "value":191641.0, "labels":["nvme1n1"], "hash":18362675762631693630}, {"ts":1667807418383422481, "value":3719.0, "labels":["nvme0n1"], "hash":17908945801133840663}, {"ts":1667807418383540629, "value":0.0, "labels":["sda"], "hash":16031677515340579833}, {"ts":1667807418383663082, "value":32048.0, "labels":["sdb"], "hash":13716685850804643239}, {"ts":1667807418383810026, "value":0.0, "labels":["sr0"], "hash":1254037399362145133}, {"ts":1667807418383915717, "value":0.0, "labels":["sdc"], "hash":1516120890180418587}, {"ts":1667807418384017146, "value":0.0, "labels":["sdd"], "hash":17143995760735205067}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"discards_merged_total", "desc":"The total number of discards merged."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383216478, "value":0.0, "labels":["nvme1n1"], "hash":6041230198979775681}, {"ts":1667807418383427150, "value":0.0, "labels":["nvme0n1"], "hash":3771737579402527630}, {"ts":1667807418383545119, "value":0.0, "labels":["sda"], "hash":9629347180665193212}, {"ts":1667807418383668646, "value":0.0, "labels":["sdb"], "hash":11146749375262712027}, {"ts":1667807418383816614, "value":0.0, "labels":["sr0"], "hash":15468305549295164207}, {"ts":1667807418383920206, "value":0.0, "labels":["sdc"], "hash":9361989470422211975}, {"ts":1667807418384022404, "value":0.0, "labels":["sdd"], "hash":5701533707787809110}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"discarded_sectors_total", "desc":"The total number of sectors discarded successfully."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383222618, "value":1161725568.0, "labels":["nvme1n1"], "hash":3691926378025291527}, {"ts":1667807418383432270, "value":959200840.0, "labels":["nvme0n1"], "hash":17750337569237324115}, {"ts":1667807418383549614, "value":0.0, "labels":["sda"], "hash":16224482132263240145}, {"ts":1667807418383675841, "value":254741432.0, "labels":["sdb"], "hash":629390024472471615}, {"ts":1667807418383819862, "value":0.0, "labels":["sr0"], "hash":6522942318402675639}, {"ts":1667807418383924661, "value":0.0, "labels":["sdc"], "hash":12149758139455878873}, {"ts":1667807418384027521, "value":0.0, "labels":["sdd"], "hash":7888093623685360415}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"discard_time_seconds_total", "desc":"This is the total number of seconds spent by all discards."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383229295, "value":341358.0, "labels":["nvme1n1"], "hash":7903762907563508083}, {"ts":1667807418383437097, "value":10785.0, "labels":["nvme0n1"], "hash":9809220625763992379}, {"ts":1667807418383561145, "value":0.0, "labels":["sda"], "hash":1553572718066063458}, {"ts":1667807418383679437, "value":354477.0, "labels":["sdb"], "hash":16920252294300762733}, {"ts":1667807418383822909, "value":0.0, "labels":["sr0"], "hash":3769220701918227071}, {"ts":1667807418383929127, "value":0.0, "labels":["sdc"], "hash":8829524424961200068}, {"ts":1667807418384032029, "value":0.0, "labels":["sdd"], "hash":12563104037783692622}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"flush_requests_total", "desc":"The total number of flush requests completed successfully"}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383233920, "value":47261.0, "labels":["nvme1n1"], "hash":13886844260252827601}, {"ts":1667807418383441822, "value":71.0, "labels":["nvme0n1"], "hash":12229897168215613559}, {"ts":1667807418383565937, "value":156.0, "labels":["sda"], "hash":11463005117456637629}, {"ts":1667807418383685349, "value":72.0, "labels":["sdb"], "hash":9611514882216634879}, {"ts":1667807418383827421, "value":0.0, "labels":["sr0"], "hash":6845954342383655745}, {"ts":1667807418383933862, "value":3489.0, "labels":["sdc"], "hash":4635068722410797283}, {"ts":1667807418384036596, "value":0.0, "labels":["sdd"], "hash":15855230033428201781}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"disk", "name":"flush_requests_time_seconds_total", "desc":"This is the total number of seconds spent by all flush requests."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418383240598, "value":126.952, "labels":["nvme1n1"], "hash":5024694548312131325}, {"ts":1667807418383446439, "value":0.1, "labels":["nvme0n1"], "hash":14955605860201441966}, {"ts":1667807418383570673, "value":1.643, "labels":["sda"], "hash":2276683022331926583}, {"ts":1667807418383689629, "value":0.043000000000000003, "labels":["sdb"], "hash":15573143279184471077}, {"ts":1667807418383832784, "value":0.0, "labels":["sr0"], "hash":4473877419462374925}, {"ts":1667807418383938625, "value":273.69, "labels":["sdc"], "hash":7081061156367339188}, {"ts":1667807418384041112, "value":0.0, "labels":["sdd"], "hash":4657737561646085814}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"", "name":"intr_total", "desc":"Total number of interrupts serviced."}, "labels":[], "aggregation_type":2}, "values":[{"ts":1667807418384454201, "value":386960024.0, "hash":0}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"", "name":"context_switches_total", "desc":"Total number of context switches."}, "labels":[], "aggregation_type":2}, "values":[{"ts":1667807418384454201, "value":521387551.0, "hash":0}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"", "name":"forks_total", "desc":"Total number of forks."}, "labels":[], "aggregation_type":2}, "values":[{"ts":1667807418384454201, "value":272357.0, "hash":0}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":907454685.0, "labels":["lo"], "hash":7987828089030346600}, {"ts":1667807418387616495, "value":671613798.0, "labels":["enp0s31f6"], "hash":12682337876748285991}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":17992547598791408086}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":5136608583529780132}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":12617009285870604743}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":13747483271361413326}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":18377010634125231692}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":15353777139744835607}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":5054299615501966739}, {"ts":1667807418387616495, "value":378395.0, "labels":["br-9fbe7fdfcabf"], "hash":7530610243956396818}, {"ts":1667807418387616495, "value":11730815.0, "labels":["docker0"], "hash":14295904669285615614}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":10690955256297104006}, {"ts":1667807418387616495, "value":3775748.0, "labels":["veth10fb931"], "hash":17442259243691187469}, {"ts":1667807418387616495, "value":444615.0, "labels":["vethcb79f0e"], "hash":1914983515403439426}, {"ts":1667807418387616495, "value":6601122.0, "labels":["veth21efde9"], "hash":13107743413003369464}, {"ts":1667807418387616495, "value":11824475.0, "labels":["veth8e7b553"], "hash":2019747077235256781}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":4677550.0, "labels":["lo"], "hash":16652462144339520992}, {"ts":1667807418387616495, "value":707334.0, "labels":["enp0s31f6"], "hash":7088636554549462698}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":11123809874369787112}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":18143891172442971514}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":2677141735057683526}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":16270737235609075335}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":382385955976060743}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":15562680705612381487}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":17081742218878349159}, {"ts":1667807418387616495, "value":4733.0, "labels":["br-9fbe7fdfcabf"], "hash":16099092477466215014}, {"ts":1667807418387616495, "value":6690.0, "labels":["docker0"], "hash":6372398904356093790}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":16393489581010120818}, {"ts":1667807418387616495, "value":34094.0, "labels":["veth10fb931"], "hash":7360929922435832756}, {"ts":1667807418387616495, "value":4732.0, "labels":["vethcb79f0e"], "hash":8890730695107704109}, {"ts":1667807418387616495, "value":44749.0, "labels":["veth21efde9"], "hash":1597146289159108045}, {"ts":1667807418387616495, "value":6690.0, "labels":["veth8e7b553"], "hash":5496489830537958248}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":13917639619645728671}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":8084156308733358518}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":2355505113691419564}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":6114982533615101934}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":6610491874128145044}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":1984897660455034506}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":18310611248379839004}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":5807508697128492382}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":7659642879705765871}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":17748418544056279004}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":17619910624798968355}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":2065199981612755234}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":3830362064362442567}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":13882657185651041995}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":16277735877312968426}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":65779549167276562}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":14761449334136603452}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":5459769094498583251}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":1920483822227346334}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":8070124885605242012}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":2543040781332001332}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":5474806236911674207}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":2113759526574231469}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":4484749682473341417}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":5122397450492362840}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":16491649964798003374}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":8825953084751720074}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":12540544981602327564}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":3529022765758447888}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":1625921250185027163}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":284537702206167846}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":16690856372634479706}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":2443005519473340629}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":6440233774622302824}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":4263356060808144095}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":12200148332691914578}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":11138062146752273404}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":13917230058262215120}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":16014017865391329635}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":4250442414193093208}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":8483483780646847527}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":13444911272110305265}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":9688780674765344323}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":2075925827743520299}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":7334531737601453694}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":269583764285866458}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":189242079571880584}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":9110250374832784711}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_frame_total", "desc":"Network device statistic frame."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":105515654765742056}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":15768456785845881803}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":8009933025781471068}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":13454056502090997215}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":16598746139230954046}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":9025830706620280690}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":12852484396311261807}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":2743741838354778979}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":7558704200764613179}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":2546772282943275057}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":6341159769596092466}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":12743128347027870322}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":4909047850228547481}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":17426546575157029}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":8380064931104069544}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":4051619607073881777}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":6097075605987918174}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":9273536868180100439}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":13184290197329557573}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":14700268101734048837}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":14187238348087066866}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":1369933649382068876}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":17882572939161610921}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":7143213499938717904}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":8404916481668885775}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":11393923796210133045}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":17961268530347354500}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":12684935042374486163}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":7738929310112942118}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":17505362941296544286}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":13267590632592854572}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":15248702672079322148}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"receive_multicast_total", "desc":"Network device statistic multicast."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":4323908746993262306}, {"ts":1667807418387616495, "value":98290.0, "labels":["enp0s31f6"], "hash":4919350584366925702}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":7312758461445088500}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":11984141983412851409}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":3266113163848874564}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":9293376266421084033}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":10042704189395831517}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":11479414564755910582}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":6070432223498057085}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":14262619142623526419}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":8872548128082913974}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":17694905980029997141}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":16916782287579054592}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":15996499882970445842}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":8719845350899499129}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":647129687072896825}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_bytes_total", "desc":"Network device statistic bytes."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":907454685.0, "labels":["lo"], "hash":3144747195622128631}, {"ts":1667807418387616495, "value":225482596.0, "labels":["enp0s31f6"], "hash":7554228386172966080}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":336554318650615514}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":6054927142388143454}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":12964439379870727192}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":14511483723793932866}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":7974094248216675106}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":16754455817544059686}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":7481529939785785468}, {"ts":1667807418387616495, "value":1889975.0, "labels":["br-9fbe7fdfcabf"], "hash":6387249998956377904}, {"ts":1667807418387616495, "value":186132372.0, "labels":["docker0"], "hash":3673981046602878559}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":10508079043416487449}, {"ts":1667807418387616495, "value":7176494.0, "labels":["veth10fb931"], "hash":11757436931272024581}, {"ts":1667807418387616495, "value":1905461.0, "labels":["vethcb79f0e"], "hash":6506643506449062070}, {"ts":1667807418387616495, "value":4350604.0, "labels":["veth21efde9"], "hash":288976808871249469}, {"ts":1667807418387616495, "value":186140598.0, "labels":["veth8e7b553"], "hash":13656026873036365829}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_packets_total", "desc":"Network device statistic packets."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":4677550.0, "labels":["lo"], "hash":17149849478080432119}, {"ts":1667807418387616495, "value":593633.0, "labels":["enp0s31f6"], "hash":4494065743068741117}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":14700659468177266399}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":17712308106852513359}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":8242021495583412674}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":6880539426433523299}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":12778844698845591968}, {"ts":1667807418387616495, "value":2707.0, "labels":["vmnet1"], "hash":8044762590523326500}, {"ts":1667807418387616495, "value":2707.0, "labels":["vmnet8"], "hash":14480895890041046055}, {"ts":1667807418387616495, "value":7281.0, "labels":["br-9fbe7fdfcabf"], "hash":17977223377652526935}, {"ts":1667807418387616495, "value":10167.0, "labels":["docker0"], "hash":13738591509661265527}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":15113240740804290989}, {"ts":1667807418387616495, "value":47546.0, "labels":["veth10fb931"], "hash":3905906575994404040}, {"ts":1667807418387616495, "value":7398.0, "labels":["vethcb79f0e"], "hash":5156049936110602525}, {"ts":1667807418387616495, "value":36888.0, "labels":["veth21efde9"], "hash":13577327960467076002}, {"ts":1667807418387616495, "value":10209.0, "labels":["veth8e7b553"], "hash":9536303223982445559}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_errs_total", "desc":"Network device statistic errs."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":6037292477177839952}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":10349867399262745784}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":15471192269930766939}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":11137800596193351649}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":8357316162397458058}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":8844967636254255545}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":10231385126353311918}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":5162066292872321610}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":16969150670456576212}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":15746844436893508842}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":4792366968078082652}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":14165089165443590053}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":16184297236048155482}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":13115054061054722984}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":18262665216594007381}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":16696840455735063578}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_drop_total", "desc":"Network device statistic drop."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":8635086113169291538}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":14515949094493062255}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":13694618555082624345}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":4781688538749681473}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":7618774299677961806}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":10094163474792248691}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":8136112079730196810}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":11410066089194525430}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":9935739693564167698}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":9340105403993401661}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":9669461690338954401}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":10473254104324173315}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":10250983498158081613}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":15633827960604009720}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":5793540553650173800}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":4172306056748376440}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_fifo_total", "desc":"Network device statistic fifo."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":10659596388135934267}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":12960725787482580282}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":8730866369122190728}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":14806581012668450211}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":2735178163333064554}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":4163133026778447368}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":18123479227300970796}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":1915902403795865828}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":1397490216412925496}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":16693029341844656414}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":18066859380194849828}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":14846120388600330500}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":10176699469695051136}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":9833833997082349872}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":12905768793133569037}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":14663430497735801809}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_colls_total", "desc":"Network device statistic colls."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":10025885840719309927}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":2848990898044136065}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":12267954232822108191}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":10449976764455592498}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":11756029957575665827}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":14717623052747949752}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":10467702678092042885}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":13843818280677292550}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":1380147479956297429}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":12095365868515291529}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":14377220704814141016}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":15099085312790739921}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":14173705083585230770}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":8226620950274842153}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":3915817216872192232}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":4219053836387253641}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_carrier_total", "desc":"Network device statistic carrier."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":9239833719880042072}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":7469456326625325414}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":16853810436004017892}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":7049875506323196411}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":5506905959548138241}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":13975497839045454887}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":2331671572896388476}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":5591022142284745179}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":5936066921878508171}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":8216129893440110800}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":8409408264420168816}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":13793365124554436586}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":4795278561453564006}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":10491685850638965730}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":4901272679450083067}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":17255604678188878054}]}, {"meta":{"ver":2, "type":0, "opts":{"ns":"node", "ss":"network", "name":"transmit_compressed_total", "desc":"Network device statistic compressed."}, "labels":["device"], "aggregation_type":2}, "values":[{"ts":1667807418387616495, "value":0.0, "labels":["lo"], "hash":3932205815495521846}, {"ts":1667807418387616495, "value":0.0, "labels":["enp0s31f6"], "hash":4302997496029628321}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0"], "hash":13094163787794075722}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr0-nic"], "hash":13826405308666626910}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1"], "hash":6510609369859550383}, {"ts":1667807418387616495, "value":0.0, "labels":["virbr1-nic"], "hash":8637256710290438878}, {"ts":1667807418387616495, "value":0.0, "labels":["lxcbr0"], "hash":11943869026313619075}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet1"], "hash":17500999004219188022}, {"ts":1667807418387616495, "value":0.0, "labels":["vmnet8"], "hash":549143200935868804}, {"ts":1667807418387616495, "value":0.0, "labels":["br-9fbe7fdfcabf"], "hash":5131125909417172726}, {"ts":1667807418387616495, "value":0.0, "labels":["docker0"], "hash":11163519877731820194}, {"ts":1667807418387616495, "value":0.0, "labels":["br-5956421f2e5e"], "hash":14783163802861677046}, {"ts":1667807418387616495, "value":0.0, "labels":["veth10fb931"], "hash":3434445341384650219}, {"ts":1667807418387616495, "value":0.0, "labels":["vethcb79f0e"], "hash":2595846581140513903}, {"ts":1667807418387616495, "value":0.0, "labels":["veth21efde9"], "hash":17196038070049193888}, {"ts":1667807418387616495, "value":0.0, "labels":["veth8e7b553"], "hash":17588581839548724922}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"cpu", "name":"frequency_hertz", "desc":"Current cpu thread frequency in hertz."}, "labels":["cpu"]}, "values":[]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"cpu", "name":"frequency_max_hertz", "desc":"Maximum cpu thread frequency in hertz."}, "labels":["cpu"]}, "values":[]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"cpu", "name":"frequency_min_hertz", "desc":"Minimum cpu thread frequency in hertz."}, "labels":["cpu"]}, "values":[]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"cpu", "name":"scaling_frequency_hertz", "desc":"Current scaled CPU thread frequency in hertz."}, "labels":["cpu"]}, "values":[]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"cpu", "name":"scaling_frequency_max_hertz", "desc":"Maximum scaled CPU thread frequency in hertz."}, "labels":["cpu"]}, "values":[]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"cpu", "name":"scaling_frequency_min_hertz", "desc":"Minimum scaled CPU thread frequency in hertz."}, "labels":["cpu"]}, "values":[]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"MemTotal_bytes", "desc":"Memory information field MemTotal_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":33584381952.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"MemFree_bytes", "desc":"Memory information field MemFree_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":5713920000.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"MemAvailable_bytes", "desc":"Memory information field MemAvailable_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":25625202688.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Buffers_bytes", "desc":"Memory information field Buffers_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":3356643328.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Cached_bytes", "desc":"Memory information field Cached_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":14887772160.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"SwapCached_bytes", "desc":"Memory information field SwapCached_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":49152.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Active_bytes", "desc":"Memory information field Active_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":6716735488.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Inactive_bytes", "desc":"Memory information field Inactive_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":17978322944.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Active_anon_bytes", "desc":"Memory information field Active_anon_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":12709888.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Inactive_anon_bytes", "desc":"Memory information field Inactive_anon_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":6476341248.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Active_file_bytes", "desc":"Memory information field Active_file_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":6704025600.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Inactive_file_bytes", "desc":"Memory information field Inactive_file_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":11501981696.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Unevictable_bytes", "desc":"Memory information field Unevictable_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":13565952.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Mlocked_bytes", "desc":"Memory information field Mlocked_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":13565952.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"SwapTotal_bytes", "desc":"Memory information field SwapTotal_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":8538550272.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"SwapFree_bytes", "desc":"Memory information field SwapFree_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":8535404544.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Dirty_bytes", "desc":"Memory information field Dirty_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":389120.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Writeback_bytes", "desc":"Memory information field Writeback_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"AnonPages_bytes", "desc":"Memory information field AnonPages_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":6464237568.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Mapped_bytes", "desc":"Memory information field Mapped_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":1792294912.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Shmem_bytes", "desc":"Memory information field Shmem_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":101933056.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"KReclaimable_bytes", "desc":"Memory information field KReclaimable_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":2181070848.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Slab_bytes", "desc":"Memory information field Slab_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":2545467392.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"SReclaimable_bytes", "desc":"Memory information field SReclaimable_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":2181070848.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"SUnreclaim_bytes", "desc":"Memory information field SUnreclaim_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":364396544.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"KernelStack_bytes", "desc":"Memory information field KernelStack_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":44892160.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"PageTables_bytes", "desc":"Memory information field PageTables_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":91115520.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"NFS_Unstable_bytes", "desc":"Memory information field NFS_Unstable_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Bounce_bytes", "desc":"Memory information field Bounce_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"WritebackTmp_bytes", "desc":"Memory information field WritebackTmp_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"CommitLimit_bytes", "desc":"Memory information field CommitLimit_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":25330741248.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Committed_AS_bytes", "desc":"Memory information field Committed_AS_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":22482305024.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"VmallocTotal_bytes", "desc":"Memory information field VmallocTotal_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":35184372087808.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"VmallocUsed_bytes", "desc":"Memory information field VmallocUsed_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":125005824.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"VmallocChunk_bytes", "desc":"Memory information field VmallocChunk_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Percpu_bytes", "desc":"Memory information field Percpu_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":34865152.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"HardwareCorrupted_bytes", "desc":"Memory information field HardwareCorrupted_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"AnonHugePages_bytes", "desc":"Memory information field AnonHugePages_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":2097152.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"ShmemHugePages_bytes", "desc":"Memory information field ShmemHugePages_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"ShmemPmdMapped_bytes", "desc":"Memory information field ShmemPmdMapped_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"FileHugePages_bytes", "desc":"Memory information field FileHugePages_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"FilePmdMapped_bytes", "desc":"Memory information field FilePmdMapped_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"HugePages_Total", "desc":"Memory information field HugePages_Total."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"HugePages_Free", "desc":"Memory information field HugePages_Free."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"HugePages_Rsvd", "desc":"Memory information field HugePages_Rsvd."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"HugePages_Surp", "desc":"Memory information field HugePages_Surp."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Hugepagesize_bytes", "desc":"Memory information field Hugepagesize_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":2097152.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"Hugetlb_bytes", "desc":"Memory information field Hugetlb_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"DirectMap4k_bytes", "desc":"Memory information field DirectMap4k_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":2328666112.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"DirectMap2M_bytes", "desc":"Memory information field DirectMap2M_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":28730982400.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"memory", "name":"DirectMap1G_bytes", "desc":"Memory information field DirectMap1G_bytes."}, "labels":[]}, "values":[{"ts":1667807418381856605, "value":3221225472.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"disk", "name":"io_now", "desc":"The number of I/Os currently in progress."}, "labels":["device"]}, "values":[{"ts":1667807418383194454, "value":0.0, "labels":["nvme1n1"], "hash":2604400198142911796}, {"ts":1667807418383396738, "value":0.0, "labels":["nvme0n1"], "hash":2009558143160719618}, {"ts":1667807418383527639, "value":0.0, "labels":["sda"], "hash":1217101824003118030}, {"ts":1667807418383649908, "value":0.0, "labels":["sdb"], "hash":12345157075740553106}, {"ts":1667807418383794195, "value":0.0, "labels":["sr0"], "hash":2953254706907779750}, {"ts":1667807418383902492, "value":0.0, "labels":["sdc"], "hash":2306644639825690679}, {"ts":1667807418383996636, "value":0.0, "labels":["sdd"], "hash":17462981045211244651}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"uname", "name":"info", "desc":"Labeled system information as provided by the uname system call."}, "labels":["sysname", "release", "version", "machine", "nodename", "domainname"]}, "values":[{"ts":1667807418384237318, "value":1.0, "labels":["Linux", "5.15.0-52-generic", "#58~20.04.1-Ubuntu SMP Thu Oct 13 13:09:46 UTC 2022", "x86_64", "cosmo-desktop2", "(none)"], "hash":2141503735717714180}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"boot_time_seconds", "desc":"Node boot time, in unixtime."}, "labels":[]}, "values":[{"ts":1667807418384454201, "value":1667288877.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"procs_running", "desc":"Number of processes in runnable state."}, "labels":[]}, "values":[{"ts":1667807418384454201, "value":5.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"procs_blocked", "desc":"Number of processes blocked waiting for I/O to complete."}, "labels":[]}, "values":[{"ts":1667807418384454201, "value":0.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"time_seconds", "desc":"System time in seconds since epoch (1970)."}, "labels":[]}, "values":[{"ts":1667807418386472478, "value":1667807418.3864725, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"load1", "desc":"1m load average."}, "labels":[]}, "values":[{"ts":1667807418386527360, "value":0.86, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"load5", "desc":"5m load average."}, "labels":[]}, "values":[{"ts":1667807418386527360, "value":1.03, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"", "name":"load15", "desc":"15m load average."}, "labels":[]}, "values":[{"ts":1667807418386527360, "value":0.96, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"filefd", "name":"allocated", "desc":"File descriptor statistics: allocated."}, "labels":[]}, "values":[{"ts":1667807418389086106, "value":31370.0, "hash":0}]}, {"meta":{"ver":2, "type":1, "opts":{"ns":"node", "ss":"filefd", "name":"maximum", "desc":"File descriptor statistics: maximum."}, "labels":[]}, "values":[{"ts":1667807418389086106, "value":9.223372036854776e+18, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"pgpgin", "desc":"/proc/vmstat information field pgpgin."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":19766267.0, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"pgpgout", "desc":"/proc/vmstat information field pgpgout."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":142646368.0, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"pswpin", "desc":"/proc/vmstat information field pswpin."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":8.0, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"pswpout", "desc":"/proc/vmstat information field pswpout."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":300.0, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"pgfault", "desc":"/proc/vmstat information field pgfault."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":318826681.0, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"pgmajfault", "desc":"/proc/vmstat information field pgmajfault."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":23246.0, "hash":0}]}, {"meta":{"ver":2, "type":4, "opts":{"ns":"node", "ss":"vmstat", "name":"oom_kill", "desc":"/proc/vmstat information field oom_kill."}, "labels":[]}, "values":[{"ts":1667807418386806437, "value":0.0, "hash":0}]}]}]
|
@@ -26,7 +26,11 @@ class CmetricsParserTest < Test::Unit::TestCase
|
|
26
26
|
|
27
27
|
sub_test_case "Actual filtering" do
|
28
28
|
setup do
|
29
|
-
|
29
|
+
if Gem::Version.new(CMetrics::VERSION) >= Gem::Version.new("0.3")
|
30
|
+
@binary_path = File.join(File.dirname(__dir__), "fixtures", "cmetrics_0.3.bin")
|
31
|
+
else
|
32
|
+
@binary_path = File.join(File.dirname(__dir__), "fixtures", "cmetrics_0.2.bin")
|
33
|
+
end
|
30
34
|
@binary = File.read(@binary_path)
|
31
35
|
end
|
32
36
|
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require "helper"
|
2
|
+
require "fluent/plugin/filter_forwarded_cmetrics_parser.rb"
|
3
|
+
require 'socket'
|
4
|
+
|
5
|
+
class ForwardedCMetricsParserFilterTest < Test::Unit::TestCase
|
6
|
+
setup do
|
7
|
+
Fluent::Test.setup
|
8
|
+
end
|
9
|
+
|
10
|
+
data("cpu" => ['{"namespace":"node","subsystem":"cpu","labels":{"cpu":"10","mode":"system"},"name":"seconds_total","description":"Seconds the CPUs spent in each mode.","value":13153.09}', "cpu.seconds_total", {"cpu" => "10", "mode" => "system"}],
|
11
|
+
"filefd" => ['{"namespace":"node","subsystem":"filefd","name":"maximum","description":"File descriptor statistics: maximum.","value":9.223372036854776e+18}', "filefd.maximum", {}],
|
12
|
+
"disk" => ['{"namespace":"node","subsystem":"disk","labels":{"device":"nvme0n1"},"name":"io_now","description":"The number of I/Os currently in progress.","value":0.0}', "disk.io_now", {"device" => "nvme0n1"}],
|
13
|
+
"network" => ['{"namespace":"node","subsystem":"network","labels":{"device":"eth0"},"name":"transmit_bytes_total","description":"Network device statistic bytes.","value":997193.0}', "network.transmit_bytes_total", {"device" => "eth0"}],
|
14
|
+
"none" => ['{"namespace":"node","subsystem":"","name":"load5","description":"5m load average.","value":0.94}', "load5", {}])
|
15
|
+
test "#format_record_key_to_splunk_style" do |(json_str, expected_format_key, expected_dims)|
|
16
|
+
json = Yajl.load(json_str)
|
17
|
+
d = create_driver(%[
|
18
|
+
format_to_splunk_metric true
|
19
|
+
dimensions_key dims
|
20
|
+
])
|
21
|
+
assert_true d.instance.format_to_splunk_metric
|
22
|
+
formatted_key, dims = d.instance.format_to_splunk_style_with_dims(json)
|
23
|
+
assert_equal expected_format_key, formatted_key
|
24
|
+
assert_equal expected_dims, dims
|
25
|
+
end
|
26
|
+
|
27
|
+
sub_test_case "Actual filtering" do
|
28
|
+
setup do
|
29
|
+
@payload_path = File.join(File.dirname(__dir__), "fixtures", "forwarded_cmetrics.json")
|
30
|
+
@payload = File.read(@payload_path)
|
31
|
+
end
|
32
|
+
|
33
|
+
data("with dimensions" => "dims",
|
34
|
+
"without dimensions" => nil)
|
35
|
+
test "#filter_stream" do |data|
|
36
|
+
use_dimensions = data
|
37
|
+
d = if use_dimensions
|
38
|
+
create_driver(%[
|
39
|
+
format_to_splunk_metric true
|
40
|
+
dimensions_key dims
|
41
|
+
])
|
42
|
+
else
|
43
|
+
create_driver(%[
|
44
|
+
format_to_splunk_metric true
|
45
|
+
])
|
46
|
+
end
|
47
|
+
time = event_time("2012-01-02 13:14:15")
|
48
|
+
new_es = Fluent::MultiEventStream.new
|
49
|
+
records = Yajl.load(@payload)
|
50
|
+
new_es.add(time, records)
|
51
|
+
d.run(default_tag: 'test') do
|
52
|
+
d.feed(new_es)
|
53
|
+
end
|
54
|
+
d.filtered.map {|e| assert_equal(!!use_dimensions, e.last.has_key?("dims"))}
|
55
|
+
d.filtered.map {|e| assert_false(e.last.has_key?("hostname"))}
|
56
|
+
assert do
|
57
|
+
d.filtered.size > 0
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
private
|
63
|
+
|
64
|
+
def create_driver(conf)
|
65
|
+
Fluent::Test::Driver::Filter.new(Fluent::Plugin::ForwardedCMetricsParserFilter).configure(conf)
|
66
|
+
end
|
67
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-cmetrics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroshi Hatake
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -100,10 +100,14 @@ files:
|
|
100
100
|
- Rakefile
|
101
101
|
- fluent-plugin-cmetrics.gemspec
|
102
102
|
- lib/fluent/plugin/filter_cmetrics_parser.rb
|
103
|
+
- lib/fluent/plugin/filter_forwarded_cmetrics_parser.rb
|
103
104
|
- lib/fluent/plugin/formatter_cmetrics_splunk_metric_payload.rb
|
104
|
-
- test/fixtures/
|
105
|
+
- test/fixtures/cmetrics_0.2.bin
|
106
|
+
- test/fixtures/cmetrics_0.3.bin
|
107
|
+
- test/fixtures/forwarded_cmetrics.json
|
105
108
|
- test/helper.rb
|
106
109
|
- test/plugin/test_filter_cmetrics_parser.rb
|
110
|
+
- test/plugin/test_filter_forwarded_cmetrics_parser.rb
|
107
111
|
homepage: https://github.com/calyptia/fluent-plugin-cmetrics
|
108
112
|
licenses:
|
109
113
|
- Apache-2.0
|
@@ -119,15 +123,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
119
123
|
version: '0'
|
120
124
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
125
|
requirements:
|
122
|
-
- - "
|
126
|
+
- - ">="
|
123
127
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
128
|
+
version: '0'
|
125
129
|
requirements: []
|
126
130
|
rubygems_version: 3.2.22
|
127
131
|
signing_key:
|
128
132
|
specification_version: 4
|
129
133
|
summary: Fluentd plugin for cmetrics format handling.
|
130
134
|
test_files:
|
131
|
-
- test/fixtures/
|
135
|
+
- test/fixtures/cmetrics_0.2.bin
|
136
|
+
- test/fixtures/cmetrics_0.3.bin
|
137
|
+
- test/fixtures/forwarded_cmetrics.json
|
132
138
|
- test/helper.rb
|
133
139
|
- test/plugin/test_filter_cmetrics_parser.rb
|
140
|
+
- test/plugin/test_filter_forwarded_cmetrics_parser.rb
|