-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode-exporter-example.txt
1461 lines (1461 loc) · 80.6 KB
/
node-exporter-example.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles.
# TYPE go_gc_duration_seconds summary
go_gc_duration_seconds{quantile="0"} 2.4846e-05
go_gc_duration_seconds{quantile="0.25"} 0.000126878
go_gc_duration_seconds{quantile="0.5"} 0.000400196
go_gc_duration_seconds{quantile="0.75"} 0.000759708
go_gc_duration_seconds{quantile="1"} 0.002361507
go_gc_duration_seconds_sum 0.047033967
go_gc_duration_seconds_count 87
# HELP go_goroutines Number of goroutines that currently exist.
# TYPE go_goroutines gauge
go_goroutines 8
# HELP go_info Information about the Go environment.
# TYPE go_info gauge
go_info{version="go1.17.3"} 1
# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use.
# TYPE go_memstats_alloc_bytes gauge
go_memstats_alloc_bytes 2.30676e+06
# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed.
# TYPE go_memstats_alloc_bytes_total counter
go_memstats_alloc_bytes_total 1.60581216e+08
# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table.
# TYPE go_memstats_buck_hash_sys_bytes gauge
go_memstats_buck_hash_sys_bytes 1.481959e+06
# HELP go_memstats_frees_total Total number of frees.
# TYPE go_memstats_frees_total counter
go_memstats_frees_total 1.306241e+06
# HELP go_memstats_gc_cpu_fraction The fraction of this program's available CPU time used by the GC since the program started.
# TYPE go_memstats_gc_cpu_fraction gauge
go_memstats_gc_cpu_fraction 2.066406262922287e-05
# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata.
# TYPE go_memstats_gc_sys_bytes gauge
go_memstats_gc_sys_bytes 5.172304e+06
# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use.
# TYPE go_memstats_heap_alloc_bytes gauge
go_memstats_heap_alloc_bytes 2.30676e+06
# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used.
# TYPE go_memstats_heap_idle_bytes gauge
go_memstats_heap_idle_bytes 7.233536e+06
# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use.
# TYPE go_memstats_heap_inuse_bytes gauge
go_memstats_heap_inuse_bytes 4.431872e+06
# HELP go_memstats_heap_objects Number of allocated objects.
# TYPE go_memstats_heap_objects gauge
go_memstats_heap_objects 12237
# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS.
# TYPE go_memstats_heap_released_bytes gauge
go_memstats_heap_released_bytes 6.193152e+06
# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system.
# TYPE go_memstats_heap_sys_bytes gauge
go_memstats_heap_sys_bytes 1.1665408e+07
# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.
# TYPE go_memstats_last_gc_time_seconds gauge
go_memstats_last_gc_time_seconds 1.6502861710299358e+09
# HELP go_memstats_lookups_total Total number of pointer lookups.
# TYPE go_memstats_lookups_total counter
go_memstats_lookups_total 0
# HELP go_memstats_mallocs_total Total number of mallocs.
# TYPE go_memstats_mallocs_total counter
go_memstats_mallocs_total 1.318478e+06
# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures.
# TYPE go_memstats_mcache_inuse_bytes gauge
go_memstats_mcache_inuse_bytes 9600
# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system.
# TYPE go_memstats_mcache_sys_bytes gauge
go_memstats_mcache_sys_bytes 16384
# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures.
# TYPE go_memstats_mspan_inuse_bytes gauge
go_memstats_mspan_inuse_bytes 139672
# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system.
# TYPE go_memstats_mspan_sys_bytes gauge
go_memstats_mspan_sys_bytes 163840
# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place.
# TYPE go_memstats_next_gc_bytes gauge
go_memstats_next_gc_bytes 4.45456e+06
# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations.
# TYPE go_memstats_other_sys_bytes gauge
go_memstats_other_sys_bytes 1.374929e+06
# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator.
# TYPE go_memstats_stack_inuse_bytes gauge
go_memstats_stack_inuse_bytes 917504
# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator.
# TYPE go_memstats_stack_sys_bytes gauge
go_memstats_stack_sys_bytes 917504
# HELP go_memstats_sys_bytes Number of bytes obtained from system.
# TYPE go_memstats_sys_bytes gauge
go_memstats_sys_bytes 2.0792328e+07
# HELP go_threads Number of OS threads created.
# TYPE go_threads gauge
go_threads 12
# HELP node_arp_entries ARP entries by device
# TYPE node_arp_entries gauge
node_arp_entries{device="ens33"} 1
# HELP node_boot_time_seconds Node boot time, in unixtime.
# TYPE node_boot_time_seconds gauge
node_boot_time_seconds 1.650278818e+09
# HELP node_context_switches_total Total number of context switches.
# TYPE node_context_switches_total counter
node_context_switches_total 5.8678359e+07
# HELP node_cooling_device_cur_state Current throttle state of the cooling device
# TYPE node_cooling_device_cur_state gauge
node_cooling_device_cur_state{name="0",type="Processor"} 0
node_cooling_device_cur_state{name="1",type="Processor"} 0
node_cooling_device_cur_state{name="2",type="Processor"} 0
node_cooling_device_cur_state{name="3",type="Processor"} 0
node_cooling_device_cur_state{name="4",type="Processor"} 0
node_cooling_device_cur_state{name="5",type="Processor"} 0
node_cooling_device_cur_state{name="6",type="Processor"} 0
node_cooling_device_cur_state{name="7",type="Processor"} 0
# HELP node_cooling_device_max_state Maximum throttle state of the cooling device
# TYPE node_cooling_device_max_state gauge
node_cooling_device_max_state{name="0",type="Processor"} 7
node_cooling_device_max_state{name="1",type="Processor"} 7
node_cooling_device_max_state{name="2",type="Processor"} 7
node_cooling_device_max_state{name="3",type="Processor"} 7
node_cooling_device_max_state{name="4",type="Processor"} 7
node_cooling_device_max_state{name="5",type="Processor"} 7
node_cooling_device_max_state{name="6",type="Processor"} 7
node_cooling_device_max_state{name="7",type="Processor"} 7
# HELP node_cpu_guest_seconds_total Seconds the CPUs spent in guests (VMs) for each mode.
# TYPE node_cpu_guest_seconds_total counter
node_cpu_guest_seconds_total{cpu="0",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="0",mode="user"} 0
node_cpu_guest_seconds_total{cpu="1",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="1",mode="user"} 0
node_cpu_guest_seconds_total{cpu="2",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="2",mode="user"} 0
node_cpu_guest_seconds_total{cpu="3",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="3",mode="user"} 0
node_cpu_guest_seconds_total{cpu="4",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="4",mode="user"} 0
node_cpu_guest_seconds_total{cpu="5",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="5",mode="user"} 0
node_cpu_guest_seconds_total{cpu="6",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="6",mode="user"} 0
node_cpu_guest_seconds_total{cpu="7",mode="nice"} 0
node_cpu_guest_seconds_total{cpu="7",mode="user"} 0
# HELP node_cpu_seconds_total Seconds the CPUs spent in each mode.
# TYPE node_cpu_seconds_total counter
node_cpu_seconds_total{cpu="0",mode="idle"} 6644.49
node_cpu_seconds_total{cpu="0",mode="iowait"} 16.63
node_cpu_seconds_total{cpu="0",mode="irq"} 0
node_cpu_seconds_total{cpu="0",mode="nice"} 2.13
node_cpu_seconds_total{cpu="0",mode="softirq"} 20.06
node_cpu_seconds_total{cpu="0",mode="steal"} 0
node_cpu_seconds_total{cpu="0",mode="system"} 247.2
node_cpu_seconds_total{cpu="0",mode="user"} 369.36
node_cpu_seconds_total{cpu="1",mode="idle"} 6650.52
node_cpu_seconds_total{cpu="1",mode="iowait"} 20.99
node_cpu_seconds_total{cpu="1",mode="irq"} 0
node_cpu_seconds_total{cpu="1",mode="nice"} 3.62
node_cpu_seconds_total{cpu="1",mode="softirq"} 11.05
node_cpu_seconds_total{cpu="1",mode="steal"} 0
node_cpu_seconds_total{cpu="1",mode="system"} 255.4
node_cpu_seconds_total{cpu="1",mode="user"} 327.74
node_cpu_seconds_total{cpu="2",mode="idle"} 6689.04
node_cpu_seconds_total{cpu="2",mode="iowait"} 14.12
node_cpu_seconds_total{cpu="2",mode="irq"} 0
node_cpu_seconds_total{cpu="2",mode="nice"} 5.06
node_cpu_seconds_total{cpu="2",mode="softirq"} 12.38
node_cpu_seconds_total{cpu="2",mode="steal"} 0
node_cpu_seconds_total{cpu="2",mode="system"} 232.04
node_cpu_seconds_total{cpu="2",mode="user"} 337.6
node_cpu_seconds_total{cpu="3",mode="idle"} 6650.59
node_cpu_seconds_total{cpu="3",mode="iowait"} 18.94
node_cpu_seconds_total{cpu="3",mode="irq"} 0
node_cpu_seconds_total{cpu="3",mode="nice"} 2.14
node_cpu_seconds_total{cpu="3",mode="softirq"} 12.2
node_cpu_seconds_total{cpu="3",mode="steal"} 0
node_cpu_seconds_total{cpu="3",mode="system"} 248.98
node_cpu_seconds_total{cpu="3",mode="user"} 360.5
node_cpu_seconds_total{cpu="4",mode="idle"} 6654.22
node_cpu_seconds_total{cpu="4",mode="iowait"} 20.31
node_cpu_seconds_total{cpu="4",mode="irq"} 0
node_cpu_seconds_total{cpu="4",mode="nice"} 2.36
node_cpu_seconds_total{cpu="4",mode="softirq"} 12.24
node_cpu_seconds_total{cpu="4",mode="steal"} 0
node_cpu_seconds_total{cpu="4",mode="system"} 240.18
node_cpu_seconds_total{cpu="4",mode="user"} 356.34
node_cpu_seconds_total{cpu="5",mode="idle"} 6706.97
node_cpu_seconds_total{cpu="5",mode="iowait"} 18.24
node_cpu_seconds_total{cpu="5",mode="irq"} 0
node_cpu_seconds_total{cpu="5",mode="nice"} 7.71
node_cpu_seconds_total{cpu="5",mode="softirq"} 9.54
node_cpu_seconds_total{cpu="5",mode="steal"} 0
node_cpu_seconds_total{cpu="5",mode="system"} 246.08
node_cpu_seconds_total{cpu="5",mode="user"} 290.81
node_cpu_seconds_total{cpu="6",mode="idle"} 6741.61
node_cpu_seconds_total{cpu="6",mode="iowait"} 22.65
node_cpu_seconds_total{cpu="6",mode="irq"} 0
node_cpu_seconds_total{cpu="6",mode="nice"} 0.78
node_cpu_seconds_total{cpu="6",mode="softirq"} 11.08
node_cpu_seconds_total{cpu="6",mode="steal"} 0
node_cpu_seconds_total{cpu="6",mode="system"} 231.29
node_cpu_seconds_total{cpu="6",mode="user"} 286.16
node_cpu_seconds_total{cpu="7",mode="idle"} 6604.99
node_cpu_seconds_total{cpu="7",mode="iowait"} 16.22
node_cpu_seconds_total{cpu="7",mode="irq"} 0
node_cpu_seconds_total{cpu="7",mode="nice"} 1.61
node_cpu_seconds_total{cpu="7",mode="softirq"} 28.87
node_cpu_seconds_total{cpu="7",mode="steal"} 0
node_cpu_seconds_total{cpu="7",mode="system"} 237.19
node_cpu_seconds_total{cpu="7",mode="user"} 348.21
# HELP node_disk_discard_time_seconds_total This is the total number of seconds spent by all discards.
# TYPE node_disk_discard_time_seconds_total counter
node_disk_discard_time_seconds_total{device="sda"} 0
node_disk_discard_time_seconds_total{device="sr0"} 0
node_disk_discard_time_seconds_total{device="sr1"} 0
# HELP node_disk_discarded_sectors_total The total number of sectors discarded successfully.
# TYPE node_disk_discarded_sectors_total counter
node_disk_discarded_sectors_total{device="sda"} 0
node_disk_discarded_sectors_total{device="sr0"} 0
node_disk_discarded_sectors_total{device="sr1"} 0
# HELP node_disk_discards_completed_total The total number of discards completed successfully.
# TYPE node_disk_discards_completed_total counter
node_disk_discards_completed_total{device="sda"} 0
node_disk_discards_completed_total{device="sr0"} 0
node_disk_discards_completed_total{device="sr1"} 0
# HELP node_disk_discards_merged_total The total number of discards merged.
# TYPE node_disk_discards_merged_total counter
node_disk_discards_merged_total{device="sda"} 0
node_disk_discards_merged_total{device="sr0"} 0
node_disk_discards_merged_total{device="sr1"} 0
# HELP node_disk_flush_requests_time_seconds_total This is the total number of seconds spent by all flush requests.
# TYPE node_disk_flush_requests_time_seconds_total counter
node_disk_flush_requests_time_seconds_total{device="sda"} 0
node_disk_flush_requests_time_seconds_total{device="sr0"} 0
node_disk_flush_requests_time_seconds_total{device="sr1"} 0
# HELP node_disk_flush_requests_total The total number of flush requests completed successfully
# TYPE node_disk_flush_requests_total counter
node_disk_flush_requests_total{device="sda"} 0
node_disk_flush_requests_total{device="sr0"} 0
node_disk_flush_requests_total{device="sr1"} 0
# HELP node_disk_info Info of /sys/block/<block_device>.
# TYPE node_disk_info gauge
node_disk_info{device="sda",major="8",minor="0"} 1
node_disk_info{device="sr0",major="11",minor="0"} 1
node_disk_info{device="sr1",major="11",minor="1"} 1
# HELP node_disk_io_now The number of I/Os currently in progress.
# TYPE node_disk_io_now gauge
node_disk_io_now{device="sda"} 0
node_disk_io_now{device="sr0"} 0
node_disk_io_now{device="sr1"} 0
# HELP node_disk_io_time_seconds_total Total seconds spent doing I/Os.
# TYPE node_disk_io_time_seconds_total counter
node_disk_io_time_seconds_total{device="sda"} 324.576
node_disk_io_time_seconds_total{device="sr0"} 0.024
node_disk_io_time_seconds_total{device="sr1"} 0.536
# HELP node_disk_io_time_weighted_seconds_total The weighted # of seconds spent doing I/Os.
# TYPE node_disk_io_time_weighted_seconds_total counter
node_disk_io_time_weighted_seconds_total{device="sda"} 509.57300000000004
node_disk_io_time_weighted_seconds_total{device="sr0"} 0.001
node_disk_io_time_weighted_seconds_total{device="sr1"} 0.5690000000000001
# HELP node_disk_read_bytes_total The total number of bytes read successfully.
# TYPE node_disk_read_bytes_total counter
node_disk_read_bytes_total{device="sda"} 6.346713088e+09
node_disk_read_bytes_total{device="sr0"} 2048
node_disk_read_bytes_total{device="sr1"} 978944
# HELP node_disk_read_time_seconds_total The total number of seconds spent by all reads.
# TYPE node_disk_read_time_seconds_total counter
node_disk_read_time_seconds_total{device="sda"} 236.82
node_disk_read_time_seconds_total{device="sr0"} 0.001
node_disk_read_time_seconds_total{device="sr1"} 0.5690000000000001
# HELP node_disk_reads_completed_total The total number of reads completed successfully.
# TYPE node_disk_reads_completed_total counter
node_disk_reads_completed_total{device="sda"} 240001
node_disk_reads_completed_total{device="sr0"} 10
node_disk_reads_completed_total{device="sr1"} 65
# HELP node_disk_reads_merged_total The total number of reads merged.
# TYPE node_disk_reads_merged_total counter
node_disk_reads_merged_total{device="sda"} 68244
node_disk_reads_merged_total{device="sr0"} 0
node_disk_reads_merged_total{device="sr1"} 0
# HELP node_disk_write_time_seconds_total This is the total number of seconds spent by all writes.
# TYPE node_disk_write_time_seconds_total counter
node_disk_write_time_seconds_total{device="sda"} 272.752
node_disk_write_time_seconds_total{device="sr0"} 0
node_disk_write_time_seconds_total{device="sr1"} 0
# HELP node_disk_writes_completed_total The total number of writes completed successfully.
# TYPE node_disk_writes_completed_total counter
node_disk_writes_completed_total{device="sda"} 152157
node_disk_writes_completed_total{device="sr0"} 0
node_disk_writes_completed_total{device="sr1"} 0
# HELP node_disk_writes_merged_total The number of writes merged.
# TYPE node_disk_writes_merged_total counter
node_disk_writes_merged_total{device="sda"} 651263
node_disk_writes_merged_total{device="sr0"} 0
node_disk_writes_merged_total{device="sr1"} 0
# HELP node_disk_written_bytes_total The total number of bytes written successfully.
# TYPE node_disk_written_bytes_total counter
node_disk_written_bytes_total{device="sda"} 2.1612073984e+10
node_disk_written_bytes_total{device="sr0"} 0
node_disk_written_bytes_total{device="sr1"} 0
# HELP node_dmi_info A metric with a constant '1' value labeled by bios_date, bios_release, bios_vendor, bios_version, board_asset_tag, board_name, board_serial, board_vendor, board_version, chassis_asset_tag, chassis_serial, chassis_vendor, chassis_version, product_family, product_name, product_serial, product_sku, product_uuid, product_version, system_vendor if provided by DMI.
# TYPE node_dmi_info gauge
node_dmi_info{bios_date="07/22/2020",bios_release="4.6",bios_vendor="Phoenix Technologies LTD",bios_version="6.00",board_asset_tag="",board_name="440BX Desktop Reference Platform",board_vendor="Intel Corporation",board_version="None",chassis_asset_tag="No Asset Tag",chassis_vendor="No Enclosure",chassis_version="N/A",product_family="",product_name="VMware Virtual Platform",product_sku="",product_version="None",system_vendor="VMware, Inc."} 1
# HELP node_entropy_available_bits Bits of available entropy.
# TYPE node_entropy_available_bits gauge
node_entropy_available_bits 3655
# HELP node_entropy_pool_size_bits Bits of entropy pool.
# TYPE node_entropy_pool_size_bits gauge
node_entropy_pool_size_bits 4096
# HELP node_exporter_build_info A metric with a constant '1' value labeled by version, revision, branch, and goversion from which node_exporter was built.
# TYPE node_exporter_build_info gauge
node_exporter_build_info{branch="HEAD",goversion="go1.17.3",revision="a2321e7b940ddcff26873612bccdf7cd4c42b6b6",version="1.3.1"} 1
# HELP node_filefd_allocated File descriptor statistics: allocated.
# TYPE node_filefd_allocated gauge
node_filefd_allocated 10592
# HELP node_filefd_maximum File descriptor statistics: maximum.
# TYPE node_filefd_maximum gauge
node_filefd_maximum 9.223372036854776e+18
# HELP node_filesystem_avail_bytes Filesystem space available to non-root users in bytes.
# TYPE node_filesystem_avail_bytes gauge
node_filesystem_avail_bytes{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 5.35801856e+08
node_filesystem_avail_bytes{device="/dev/sda5",fstype="ext4",mountpoint="/"} 1.8631704576e+10
node_filesystem_avail_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 1.671798784e+09
node_filesystem_avail_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 5.24288e+06
node_filesystem_avail_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 1.671798784e+09
node_filesystem_avail_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 1.67415808e+09
node_filesystem_avail_bytes{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_filesystem_device_error Whether an error occurred while getting statistics for the given device.
# TYPE node_filesystem_device_error gauge
node_filesystem_device_error{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 0
node_filesystem_device_error{device="/dev/sda5",fstype="ext4",mountpoint="/"} 0
node_filesystem_device_error{device="gvfsd-fuse",fstype="fuse.gvfsd-fuse",mountpoint="/run/user/1000/gvfs"} 1
node_filesystem_device_error{device="portal",fstype="fuse.portal",mountpoint="/run/user/1000/doc"} 1
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 0
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 0
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 0
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 0
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/var/lib/edged/pods/792d2fd6-4345-472b-a685-dbbc6f45c38f/volumes/kubernetes.io~projected/kube-api-access-bf4sf"} 1
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/var/lib/edged/pods/bfa85308-4ebd-43bf-8880-a593144c2af4/volumes/kubernetes.io~projected/kube-api-access-s957p"} 1
node_filesystem_device_error{device="tmpfs",fstype="tmpfs",mountpoint="/var/lib/edged/pods/ecd8de45-dc45-4051-b477-df4812ecb70c/volumes/kubernetes.io~projected/kube-api-access-jg26d"} 1
node_filesystem_device_error{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_filesystem_files Filesystem total file nodes.
# TYPE node_filesystem_files gauge
node_filesystem_files{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 0
node_filesystem_files{device="/dev/sda5",fstype="ext4",mountpoint="/"} 5.210112e+06
node_filesystem_files{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 2.043815e+06
node_filesystem_files{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 2.043815e+06
node_filesystem_files{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 2.043815e+06
node_filesystem_files{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 408763
node_filesystem_files{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_filesystem_files_free Filesystem total free file nodes.
# TYPE node_filesystem_files_free gauge
node_filesystem_files_free{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 0
node_filesystem_files_free{device="/dev/sda5",fstype="ext4",mountpoint="/"} 3.866287e+06
node_filesystem_files_free{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 2.042569e+06
node_filesystem_files_free{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 2.043808e+06
node_filesystem_files_free{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 2.042569e+06
node_filesystem_files_free{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 408624
node_filesystem_files_free{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_filesystem_free_bytes Filesystem free space in bytes.
# TYPE node_filesystem_free_bytes gauge
node_filesystem_free_bytes{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 5.35801856e+08
node_filesystem_free_bytes{device="/dev/sda5",fstype="ext4",mountpoint="/"} 2.2486822912e+10
node_filesystem_free_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 1.671798784e+09
node_filesystem_free_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 5.24288e+06
node_filesystem_free_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 1.671798784e+09
node_filesystem_free_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 1.67415808e+09
node_filesystem_free_bytes{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_filesystem_readonly Filesystem read-only status.
# TYPE node_filesystem_readonly gauge
node_filesystem_readonly{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 0
node_filesystem_readonly{device="/dev/sda5",fstype="ext4",mountpoint="/"} 0
node_filesystem_readonly{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 0
node_filesystem_readonly{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 0
node_filesystem_readonly{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 0
node_filesystem_readonly{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 0
node_filesystem_readonly{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_filesystem_size_bytes Filesystem size in bytes.
# TYPE node_filesystem_size_bytes gauge
node_filesystem_size_bytes{device="/dev/sda1",fstype="vfat",mountpoint="/boot/efi"} 5.35805952e+08
node_filesystem_size_bytes{device="/dev/sda5",fstype="ext4",mountpoint="/"} 8.3752312832e+10
node_filesystem_size_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run"} 1.674297344e+09
node_filesystem_size_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/lock"} 5.24288e+06
node_filesystem_size_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/snapd/ns"} 1.674297344e+09
node_filesystem_size_bytes{device="tmpfs",fstype="tmpfs",mountpoint="/run/user/1000"} 1.674293248e+09
node_filesystem_size_bytes{device="vmware-vmblock",fstype="fuse.vmware-vmblock",mountpoint="/run/vmblock-fuse"} 0
# HELP node_forks_total Total number of forks.
# TYPE node_forks_total counter
node_forks_total 32039
# HELP node_hwmon_chip_names Annotation metric for human-readable chip names
# TYPE node_hwmon_chip_names gauge
node_hwmon_chip_names{chip="power_supply_acad",chip_name="acad"} 1
# HELP node_intr_total Total number of interrupts serviced.
# TYPE node_intr_total counter
node_intr_total 2.4362226e+07
# HELP node_load1 1m load average.
# TYPE node_load1 gauge
node_load1 0.47
# HELP node_load15 15m load average.
# TYPE node_load15 gauge
node_load15 0.88
# HELP node_load5 5m load average.
# TYPE node_load5 gauge
node_load5 0.68
# HELP node_memory_Active_anon_bytes Memory information field Active_anon_bytes.
# TYPE node_memory_Active_anon_bytes gauge
node_memory_Active_anon_bytes 2.863104e+06
# HELP node_memory_Active_bytes Memory information field Active_bytes.
# TYPE node_memory_Active_bytes gauge
node_memory_Active_bytes 4.142321664e+09
# HELP node_memory_Active_file_bytes Memory information field Active_file_bytes.
# TYPE node_memory_Active_file_bytes gauge
node_memory_Active_file_bytes 4.13945856e+09
# HELP node_memory_AnonHugePages_bytes Memory information field AnonHugePages_bytes.
# TYPE node_memory_AnonHugePages_bytes gauge
node_memory_AnonHugePages_bytes 0
# HELP node_memory_AnonPages_bytes Memory information field AnonPages_bytes.
# TYPE node_memory_AnonPages_bytes gauge
node_memory_AnonPages_bytes 6.2731264e+09
# HELP node_memory_Bounce_bytes Memory information field Bounce_bytes.
# TYPE node_memory_Bounce_bytes gauge
node_memory_Bounce_bytes 0
# HELP node_memory_Buffers_bytes Memory information field Buffers_bytes.
# TYPE node_memory_Buffers_bytes gauge
node_memory_Buffers_bytes 1.022169088e+09
# HELP node_memory_Cached_bytes Memory information field Cached_bytes.
# TYPE node_memory_Cached_bytes gauge
node_memory_Cached_bytes 6.967414784e+09
# HELP node_memory_CommitLimit_bytes Memory information field CommitLimit_bytes.
# TYPE node_memory_CommitLimit_bytes gauge
node_memory_CommitLimit_bytes 1.0335875072e+10
# HELP node_memory_Committed_AS_bytes Memory information field Committed_AS_bytes.
# TYPE node_memory_Committed_AS_bytes gauge
node_memory_Committed_AS_bytes 1.0225831936e+10
# HELP node_memory_DirectMap1G_bytes Memory information field DirectMap1G_bytes.
# TYPE node_memory_DirectMap1G_bytes gauge
node_memory_DirectMap1G_bytes 7.516192768e+09
# HELP node_memory_DirectMap2M_bytes Memory information field DirectMap2M_bytes.
# TYPE node_memory_DirectMap2M_bytes gauge
node_memory_DirectMap2M_bytes 1.1427381248e+10
# HELP node_memory_DirectMap4k_bytes Memory information field DirectMap4k_bytes.
# TYPE node_memory_DirectMap4k_bytes gauge
node_memory_DirectMap4k_bytes 3.83582208e+08
# HELP node_memory_Dirty_bytes Memory information field Dirty_bytes.
# TYPE node_memory_Dirty_bytes gauge
node_memory_Dirty_bytes 139264
# HELP node_memory_FileHugePages_bytes Memory information field FileHugePages_bytes.
# TYPE node_memory_FileHugePages_bytes gauge
node_memory_FileHugePages_bytes 0
# HELP node_memory_FilePmdMapped_bytes Memory information field FilePmdMapped_bytes.
# TYPE node_memory_FilePmdMapped_bytes gauge
node_memory_FilePmdMapped_bytes 0
# HELP node_memory_HardwareCorrupted_bytes Memory information field HardwareCorrupted_bytes.
# TYPE node_memory_HardwareCorrupted_bytes gauge
node_memory_HardwareCorrupted_bytes 0
# HELP node_memory_HugePages_Free Memory information field HugePages_Free.
# TYPE node_memory_HugePages_Free gauge
node_memory_HugePages_Free 0
# HELP node_memory_HugePages_Rsvd Memory information field HugePages_Rsvd.
# TYPE node_memory_HugePages_Rsvd gauge
node_memory_HugePages_Rsvd 0
# HELP node_memory_HugePages_Surp Memory information field HugePages_Surp.
# TYPE node_memory_HugePages_Surp gauge
node_memory_HugePages_Surp 0
# HELP node_memory_HugePages_Total Memory information field HugePages_Total.
# TYPE node_memory_HugePages_Total gauge
node_memory_HugePages_Total 0
# HELP node_memory_Hugepagesize_bytes Memory information field Hugepagesize_bytes.
# TYPE node_memory_Hugepagesize_bytes gauge
node_memory_Hugepagesize_bytes 2.097152e+06
# HELP node_memory_Hugetlb_bytes Memory information field Hugetlb_bytes.
# TYPE node_memory_Hugetlb_bytes gauge
node_memory_Hugetlb_bytes 0
# HELP node_memory_Inactive_anon_bytes Memory information field Inactive_anon_bytes.
# TYPE node_memory_Inactive_anon_bytes gauge
node_memory_Inactive_anon_bytes 6.148841472e+09
# HELP node_memory_Inactive_bytes Memory information field Inactive_bytes.
# TYPE node_memory_Inactive_bytes gauge
node_memory_Inactive_bytes 1.012041728e+10
# HELP node_memory_Inactive_file_bytes Memory information field Inactive_file_bytes.
# TYPE node_memory_Inactive_file_bytes gauge
node_memory_Inactive_file_bytes 3.971575808e+09
# HELP node_memory_KReclaimable_bytes Memory information field KReclaimable_bytes.
# TYPE node_memory_KReclaimable_bytes gauge
node_memory_KReclaimable_bytes 8.64956416e+08
# HELP node_memory_KernelStack_bytes Memory information field KernelStack_bytes.
# TYPE node_memory_KernelStack_bytes gauge
node_memory_KernelStack_bytes 2.0267008e+07
# HELP node_memory_Mapped_bytes Memory information field Mapped_bytes.
# TYPE node_memory_Mapped_bytes gauge
node_memory_Mapped_bytes 1.147650048e+09
# HELP node_memory_MemAvailable_bytes Memory information field MemAvailable_bytes.
# TYPE node_memory_MemAvailable_bytes gauge
node_memory_MemAvailable_bytes 9.591468032e+09
# HELP node_memory_MemFree_bytes Memory information field MemFree_bytes.
# TYPE node_memory_MemFree_bytes gauge
node_memory_MemFree_bytes 9.60933888e+08
# HELP node_memory_MemTotal_bytes Memory information field MemTotal_bytes.
# TYPE node_memory_MemTotal_bytes gauge
node_memory_MemTotal_bytes 1.6742936576e+10
# HELP node_memory_Mlocked_bytes Memory information field Mlocked_bytes.
# TYPE node_memory_Mlocked_bytes gauge
node_memory_Mlocked_bytes 65536
# HELP node_memory_NFS_Unstable_bytes Memory information field NFS_Unstable_bytes.
# TYPE node_memory_NFS_Unstable_bytes gauge
node_memory_NFS_Unstable_bytes 0
# HELP node_memory_PageTables_bytes Memory information field PageTables_bytes.
# TYPE node_memory_PageTables_bytes gauge
node_memory_PageTables_bytes 3.6159488e+07
# HELP node_memory_Percpu_bytes Memory information field Percpu_bytes.
# TYPE node_memory_Percpu_bytes gauge
node_memory_Percpu_bytes 1.35266304e+08
# HELP node_memory_SReclaimable_bytes Memory information field SReclaimable_bytes.
# TYPE node_memory_SReclaimable_bytes gauge
node_memory_SReclaimable_bytes 8.64956416e+08
# HELP node_memory_SUnreclaim_bytes Memory information field SUnreclaim_bytes.
# TYPE node_memory_SUnreclaim_bytes gauge
node_memory_SUnreclaim_bytes 1.78024448e+08
# HELP node_memory_ShmemHugePages_bytes Memory information field ShmemHugePages_bytes.
# TYPE node_memory_ShmemHugePages_bytes gauge
node_memory_ShmemHugePages_bytes 0
# HELP node_memory_ShmemPmdMapped_bytes Memory information field ShmemPmdMapped_bytes.
# TYPE node_memory_ShmemPmdMapped_bytes gauge
node_memory_ShmemPmdMapped_bytes 0
# HELP node_memory_Shmem_bytes Memory information field Shmem_bytes.
# TYPE node_memory_Shmem_bytes gauge
node_memory_Shmem_bytes 8.732672e+06
# HELP node_memory_Slab_bytes Memory information field Slab_bytes.
# TYPE node_memory_Slab_bytes gauge
node_memory_Slab_bytes 1.042980864e+09
# HELP node_memory_SwapCached_bytes Memory information field SwapCached_bytes.
# TYPE node_memory_SwapCached_bytes gauge
node_memory_SwapCached_bytes 94208
# HELP node_memory_SwapFree_bytes Memory information field SwapFree_bytes.
# TYPE node_memory_SwapFree_bytes gauge
node_memory_SwapFree_bytes 1.962561536e+09
# HELP node_memory_SwapTotal_bytes Memory information field SwapTotal_bytes.
# TYPE node_memory_SwapTotal_bytes gauge
node_memory_SwapTotal_bytes 1.964408832e+09
# HELP node_memory_Unevictable_bytes Memory information field Unevictable_bytes.
# TYPE node_memory_Unevictable_bytes gauge
node_memory_Unevictable_bytes 65536
# HELP node_memory_VmallocChunk_bytes Memory information field VmallocChunk_bytes.
# TYPE node_memory_VmallocChunk_bytes gauge
node_memory_VmallocChunk_bytes 0
# HELP node_memory_VmallocTotal_bytes Memory information field VmallocTotal_bytes.
# TYPE node_memory_VmallocTotal_bytes gauge
node_memory_VmallocTotal_bytes 3.5184372087808e+13
# HELP node_memory_VmallocUsed_bytes Memory information field VmallocUsed_bytes.
# TYPE node_memory_VmallocUsed_bytes gauge
node_memory_VmallocUsed_bytes 7.3080832e+07
# HELP node_memory_WritebackTmp_bytes Memory information field WritebackTmp_bytes.
# TYPE node_memory_WritebackTmp_bytes gauge
node_memory_WritebackTmp_bytes 0
# HELP node_memory_Writeback_bytes Memory information field Writeback_bytes.
# TYPE node_memory_Writeback_bytes gauge
node_memory_Writeback_bytes 0
# HELP node_netstat_Icmp6_InErrors Statistic Icmp6InErrors.
# TYPE node_netstat_Icmp6_InErrors untyped
node_netstat_Icmp6_InErrors 0
# HELP node_netstat_Icmp6_InMsgs Statistic Icmp6InMsgs.
# TYPE node_netstat_Icmp6_InMsgs untyped
node_netstat_Icmp6_InMsgs 7
# HELP node_netstat_Icmp6_OutMsgs Statistic Icmp6OutMsgs.
# TYPE node_netstat_Icmp6_OutMsgs untyped
node_netstat_Icmp6_OutMsgs 101
# HELP node_netstat_Icmp_InErrors Statistic IcmpInErrors.
# TYPE node_netstat_Icmp_InErrors untyped
node_netstat_Icmp_InErrors 360
# HELP node_netstat_Icmp_InMsgs Statistic IcmpInMsgs.
# TYPE node_netstat_Icmp_InMsgs untyped
node_netstat_Icmp_InMsgs 581
# HELP node_netstat_Icmp_OutMsgs Statistic IcmpOutMsgs.
# TYPE node_netstat_Icmp_OutMsgs untyped
node_netstat_Icmp_OutMsgs 41
# HELP node_netstat_Ip6_InOctets Statistic Ip6InOctets.
# TYPE node_netstat_Ip6_InOctets untyped
node_netstat_Ip6_InOctets 895821
# HELP node_netstat_Ip6_OutOctets Statistic Ip6OutOctets.
# TYPE node_netstat_Ip6_OutOctets untyped
node_netstat_Ip6_OutOctets 26902
# HELP node_netstat_IpExt_InOctets Statistic IpExtInOctets.
# TYPE node_netstat_IpExt_InOctets untyped
node_netstat_IpExt_InOctets 1.443037565e+09
# HELP node_netstat_IpExt_OutOctets Statistic IpExtOutOctets.
# TYPE node_netstat_IpExt_OutOctets untyped
node_netstat_IpExt_OutOctets 3.122128135e+09
# HELP node_netstat_Ip_Forwarding Statistic IpForwarding.
# TYPE node_netstat_Ip_Forwarding untyped
node_netstat_Ip_Forwarding 1
# HELP node_netstat_TcpExt_ListenDrops Statistic TcpExtListenDrops.
# TYPE node_netstat_TcpExt_ListenDrops untyped
node_netstat_TcpExt_ListenDrops 0
# HELP node_netstat_TcpExt_ListenOverflows Statistic TcpExtListenOverflows.
# TYPE node_netstat_TcpExt_ListenOverflows untyped
node_netstat_TcpExt_ListenOverflows 0
# HELP node_netstat_TcpExt_SyncookiesFailed Statistic TcpExtSyncookiesFailed.
# TYPE node_netstat_TcpExt_SyncookiesFailed untyped
node_netstat_TcpExt_SyncookiesFailed 0
# HELP node_netstat_TcpExt_SyncookiesRecv Statistic TcpExtSyncookiesRecv.
# TYPE node_netstat_TcpExt_SyncookiesRecv untyped
node_netstat_TcpExt_SyncookiesRecv 0
# HELP node_netstat_TcpExt_SyncookiesSent Statistic TcpExtSyncookiesSent.
# TYPE node_netstat_TcpExt_SyncookiesSent untyped
node_netstat_TcpExt_SyncookiesSent 0
# HELP node_netstat_TcpExt_TCPSynRetrans Statistic TcpExtTCPSynRetrans.
# TYPE node_netstat_TcpExt_TCPSynRetrans untyped
node_netstat_TcpExt_TCPSynRetrans 923
# HELP node_netstat_TcpExt_TCPTimeouts Statistic TcpExtTCPTimeouts.
# TYPE node_netstat_TcpExt_TCPTimeouts untyped
node_netstat_TcpExt_TCPTimeouts 977
# HELP node_netstat_Tcp_ActiveOpens Statistic TcpActiveOpens.
# TYPE node_netstat_Tcp_ActiveOpens untyped
node_netstat_Tcp_ActiveOpens 865
# HELP node_netstat_Tcp_CurrEstab Statistic TcpCurrEstab.
# TYPE node_netstat_Tcp_CurrEstab untyped
node_netstat_Tcp_CurrEstab 17
# HELP node_netstat_Tcp_InErrs Statistic TcpInErrs.
# TYPE node_netstat_Tcp_InErrs untyped
node_netstat_Tcp_InErrs 0
# HELP node_netstat_Tcp_InSegs Statistic TcpInSegs.
# TYPE node_netstat_Tcp_InSegs untyped
node_netstat_Tcp_InSegs 1.228146e+06
# HELP node_netstat_Tcp_OutRsts Statistic TcpOutRsts.
# TYPE node_netstat_Tcp_OutRsts untyped
node_netstat_Tcp_OutRsts 198
# HELP node_netstat_Tcp_OutSegs Statistic TcpOutSegs.
# TYPE node_netstat_Tcp_OutSegs untyped
node_netstat_Tcp_OutSegs 1.540974e+06
# HELP node_netstat_Tcp_PassiveOpens Statistic TcpPassiveOpens.
# TYPE node_netstat_Tcp_PassiveOpens untyped
node_netstat_Tcp_PassiveOpens 47
# HELP node_netstat_Tcp_RetransSegs Statistic TcpRetransSegs.
# TYPE node_netstat_Tcp_RetransSegs untyped
node_netstat_Tcp_RetransSegs 2386
# HELP node_netstat_Udp6_InDatagrams Statistic Udp6InDatagrams.
# TYPE node_netstat_Udp6_InDatagrams untyped
node_netstat_Udp6_InDatagrams 7933
# HELP node_netstat_Udp6_InErrors Statistic Udp6InErrors.
# TYPE node_netstat_Udp6_InErrors untyped
node_netstat_Udp6_InErrors 0
# HELP node_netstat_Udp6_NoPorts Statistic Udp6NoPorts.
# TYPE node_netstat_Udp6_NoPorts untyped
node_netstat_Udp6_NoPorts 0
# HELP node_netstat_Udp6_OutDatagrams Statistic Udp6OutDatagrams.
# TYPE node_netstat_Udp6_OutDatagrams untyped
node_netstat_Udp6_OutDatagrams 120
# HELP node_netstat_Udp6_RcvbufErrors Statistic Udp6RcvbufErrors.
# TYPE node_netstat_Udp6_RcvbufErrors untyped
node_netstat_Udp6_RcvbufErrors 0
# HELP node_netstat_Udp6_SndbufErrors Statistic Udp6SndbufErrors.
# TYPE node_netstat_Udp6_SndbufErrors untyped
node_netstat_Udp6_SndbufErrors 0
# HELP node_netstat_UdpLite6_InErrors Statistic UdpLite6InErrors.
# TYPE node_netstat_UdpLite6_InErrors untyped
node_netstat_UdpLite6_InErrors 0
# HELP node_netstat_UdpLite_InErrors Statistic UdpLiteInErrors.
# TYPE node_netstat_UdpLite_InErrors untyped
node_netstat_UdpLite_InErrors 0
# HELP node_netstat_Udp_InDatagrams Statistic UdpInDatagrams.
# TYPE node_netstat_Udp_InDatagrams untyped
node_netstat_Udp_InDatagrams 895124
# HELP node_netstat_Udp_InErrors Statistic UdpInErrors.
# TYPE node_netstat_Udp_InErrors untyped
node_netstat_Udp_InErrors 0
# HELP node_netstat_Udp_NoPorts Statistic UdpNoPorts.
# TYPE node_netstat_Udp_NoPorts untyped
node_netstat_Udp_NoPorts 40
# HELP node_netstat_Udp_OutDatagrams Statistic UdpOutDatagrams.
# TYPE node_netstat_Udp_OutDatagrams untyped
node_netstat_Udp_OutDatagrams 1.307812e+06
# HELP node_netstat_Udp_RcvbufErrors Statistic UdpRcvbufErrors.
# TYPE node_netstat_Udp_RcvbufErrors untyped
node_netstat_Udp_RcvbufErrors 0
# HELP node_netstat_Udp_SndbufErrors Statistic UdpSndbufErrors.
# TYPE node_netstat_Udp_SndbufErrors untyped
node_netstat_Udp_SndbufErrors 0
# HELP node_network_address_assign_type address_assign_type value of /sys/class/net/<iface>.
# TYPE node_network_address_assign_type gauge
node_network_address_assign_type{device="br-ea1ec5277bc2"} 3
node_network_address_assign_type{device="br-f13390357e80"} 3
node_network_address_assign_type{device="docker0"} 3
node_network_address_assign_type{device="ens33"} 0
node_network_address_assign_type{device="lo"} 0
node_network_address_assign_type{device="tun0"} 0
node_network_address_assign_type{device="veth38759d8"} 1
node_network_address_assign_type{device="vethc08e84b"} 1
node_network_address_assign_type{device="virbr0"} 3
node_network_address_assign_type{device="virbr0-nic"} 3
# HELP node_network_carrier carrier value of /sys/class/net/<iface>.
# TYPE node_network_carrier gauge
node_network_carrier{device="br-ea1ec5277bc2"} 0
node_network_carrier{device="br-f13390357e80"} 0
node_network_carrier{device="ens33"} 1
node_network_carrier{device="lo"} 1
node_network_carrier{device="tun0"} 1
node_network_carrier{device="veth38759d8"} 1
node_network_carrier{device="vethc08e84b"} 1
node_network_carrier{device="virbr0"} 0
# HELP node_network_carrier_changes_total carrier_changes_total value of /sys/class/net/<iface>.
# TYPE node_network_carrier_changes_total counter
node_network_carrier_changes_total{device="br-ea1ec5277bc2"} 1
node_network_carrier_changes_total{device="br-f13390357e80"} 1
node_network_carrier_changes_total{device="docker0"} 5
node_network_carrier_changes_total{device="ens33"} 4
node_network_carrier_changes_total{device="lo"} 0
node_network_carrier_changes_total{device="tun0"} 0
node_network_carrier_changes_total{device="veth38759d8"} 2
node_network_carrier_changes_total{device="vethc08e84b"} 2
node_network_carrier_changes_total{device="virbr0"} 1
node_network_carrier_changes_total{device="virbr0-nic"} 1
# HELP node_network_carrier_down_changes_total carrier_down_changes_total value of /sys/class/net/<iface>.
# TYPE node_network_carrier_down_changes_total counter
node_network_carrier_down_changes_total{device="br-ea1ec5277bc2"} 1
node_network_carrier_down_changes_total{device="br-f13390357e80"} 1
node_network_carrier_down_changes_total{device="docker0"} 3
node_network_carrier_down_changes_total{device="ens33"} 2
node_network_carrier_down_changes_total{device="lo"} 0
node_network_carrier_down_changes_total{device="tun0"} 0
node_network_carrier_down_changes_total{device="veth38759d8"} 1
node_network_carrier_down_changes_total{device="vethc08e84b"} 1
node_network_carrier_down_changes_total{device="virbr0"} 1
node_network_carrier_down_changes_total{device="virbr0-nic"} 1
# HELP node_network_carrier_up_changes_total carrier_up_changes_total value of /sys/class/net/<iface>.
# TYPE node_network_carrier_up_changes_total counter
node_network_carrier_up_changes_total{device="br-ea1ec5277bc2"} 0
node_network_carrier_up_changes_total{device="br-f13390357e80"} 0
node_network_carrier_up_changes_total{device="docker0"} 2
node_network_carrier_up_changes_total{device="ens33"} 2
node_network_carrier_up_changes_total{device="lo"} 0
node_network_carrier_up_changes_total{device="tun0"} 0
node_network_carrier_up_changes_total{device="veth38759d8"} 1
node_network_carrier_up_changes_total{device="vethc08e84b"} 1
node_network_carrier_up_changes_total{device="virbr0"} 0
node_network_carrier_up_changes_total{device="virbr0-nic"} 0
# HELP node_network_device_id device_id value of /sys/class/net/<iface>.
# TYPE node_network_device_id gauge
node_network_device_id{device="br-ea1ec5277bc2"} 0
node_network_device_id{device="br-f13390357e80"} 0
node_network_device_id{device="docker0"} 0
node_network_device_id{device="ens33"} 0
node_network_device_id{device="lo"} 0
node_network_device_id{device="tun0"} 0
node_network_device_id{device="veth38759d8"} 0
node_network_device_id{device="vethc08e84b"} 0
node_network_device_id{device="virbr0"} 0
node_network_device_id{device="virbr0-nic"} 0
# HELP node_network_dormant dormant value of /sys/class/net/<iface>.
# TYPE node_network_dormant gauge
node_network_dormant{device="br-ea1ec5277bc2"} 0
node_network_dormant{device="br-f13390357e80"} 0
node_network_dormant{device="ens33"} 0
node_network_dormant{device="lo"} 0
node_network_dormant{device="tun0"} 0
node_network_dormant{device="veth38759d8"} 0
node_network_dormant{device="vethc08e84b"} 0
node_network_dormant{device="virbr0"} 0
# HELP node_network_flags flags value of /sys/class/net/<iface>.
# TYPE node_network_flags gauge
node_network_flags{device="br-ea1ec5277bc2"} 4099
node_network_flags{device="br-f13390357e80"} 4099
node_network_flags{device="docker0"} 4098
node_network_flags{device="ens33"} 4099
node_network_flags{device="lo"} 9
node_network_flags{device="tun0"} 4241
node_network_flags{device="veth38759d8"} 4867
node_network_flags{device="vethc08e84b"} 4867
node_network_flags{device="virbr0"} 4099
node_network_flags{device="virbr0-nic"} 4866
# HELP node_network_iface_id iface_id value of /sys/class/net/<iface>.
# TYPE node_network_iface_id gauge
node_network_iface_id{device="br-ea1ec5277bc2"} 6
node_network_iface_id{device="br-f13390357e80"} 7
node_network_iface_id{device="docker0"} 5
node_network_iface_id{device="ens33"} 2
node_network_iface_id{device="lo"} 1
node_network_iface_id{device="tun0"} 25
node_network_iface_id{device="veth38759d8"} 11
node_network_iface_id{device="vethc08e84b"} 9
node_network_iface_id{device="virbr0"} 3
node_network_iface_id{device="virbr0-nic"} 4
# HELP node_network_iface_link iface_link value of /sys/class/net/<iface>.
# TYPE node_network_iface_link gauge
node_network_iface_link{device="br-ea1ec5277bc2"} 6
node_network_iface_link{device="br-f13390357e80"} 7
node_network_iface_link{device="docker0"} 5
node_network_iface_link{device="ens33"} 2
node_network_iface_link{device="lo"} 1
node_network_iface_link{device="tun0"} 25
node_network_iface_link{device="veth38759d8"} 10
node_network_iface_link{device="vethc08e84b"} 8
node_network_iface_link{device="virbr0"} 3
node_network_iface_link{device="virbr0-nic"} 4
# HELP node_network_iface_link_mode iface_link_mode value of /sys/class/net/<iface>.
# TYPE node_network_iface_link_mode gauge
node_network_iface_link_mode{device="br-ea1ec5277bc2"} 0
node_network_iface_link_mode{device="br-f13390357e80"} 0
node_network_iface_link_mode{device="docker0"} 0
node_network_iface_link_mode{device="ens33"} 0
node_network_iface_link_mode{device="lo"} 0
node_network_iface_link_mode{device="tun0"} 0
node_network_iface_link_mode{device="veth38759d8"} 0
node_network_iface_link_mode{device="vethc08e84b"} 0
node_network_iface_link_mode{device="virbr0"} 0
node_network_iface_link_mode{device="virbr0-nic"} 0
# HELP node_network_info Non-numeric data from /sys/class/net/<iface>, value is always 1.
# TYPE node_network_info gauge
node_network_info{address="",broadcast="",device="tun0",duplex="full",ifalias="",operstate="unknown"} 1
node_network_info{address="00:00:00:00:00:00",broadcast="00:00:00:00:00:00",device="lo",duplex="",ifalias="",operstate="unknown"} 1
node_network_info{address="00:0c:29:78:8c:0d",broadcast="ff:ff:ff:ff:ff:ff",device="ens33",duplex="full",ifalias="",operstate="up"} 1
node_network_info{address="02:42:1b:b7:0a:51",broadcast="ff:ff:ff:ff:ff:ff",device="docker0",duplex="",ifalias="",operstate="down"} 1
node_network_info{address="02:42:2c:41:32:6a",broadcast="ff:ff:ff:ff:ff:ff",device="br-ea1ec5277bc2",duplex="unknown",ifalias="",operstate="down"} 1
node_network_info{address="02:42:ba:c9:42:5c",broadcast="ff:ff:ff:ff:ff:ff",device="br-f13390357e80",duplex="unknown",ifalias="",operstate="down"} 1
node_network_info{address="3a:40:7d:10:4a:56",broadcast="ff:ff:ff:ff:ff:ff",device="veth38759d8",duplex="full",ifalias="",operstate="up"} 1
node_network_info{address="52:54:00:f3:85:f7",broadcast="ff:ff:ff:ff:ff:ff",device="virbr0",duplex="unknown",ifalias="",operstate="down"} 1
node_network_info{address="52:54:00:f3:85:f7",broadcast="ff:ff:ff:ff:ff:ff",device="virbr0-nic",duplex="",ifalias="",operstate="down"} 1
node_network_info{address="62:5e:85:23:fb:0d",broadcast="ff:ff:ff:ff:ff:ff",device="vethc08e84b",duplex="full",ifalias="",operstate="up"} 1
# HELP node_network_mtu_bytes mtu_bytes value of /sys/class/net/<iface>.
# TYPE node_network_mtu_bytes gauge
node_network_mtu_bytes{device="br-ea1ec5277bc2"} 1500
node_network_mtu_bytes{device="br-f13390357e80"} 1500
node_network_mtu_bytes{device="docker0"} 1500
node_network_mtu_bytes{device="ens33"} 1500
node_network_mtu_bytes{device="lo"} 65536
node_network_mtu_bytes{device="tun0"} 1500
node_network_mtu_bytes{device="veth38759d8"} 1500
node_network_mtu_bytes{device="vethc08e84b"} 1500
node_network_mtu_bytes{device="virbr0"} 1500
node_network_mtu_bytes{device="virbr0-nic"} 1500
# HELP node_network_name_assign_type name_assign_type value of /sys/class/net/<iface>.
# TYPE node_network_name_assign_type gauge
node_network_name_assign_type{device="br-ea1ec5277bc2"} 3
node_network_name_assign_type{device="br-f13390357e80"} 3
node_network_name_assign_type{device="docker0"} 3
node_network_name_assign_type{device="ens33"} 4
node_network_name_assign_type{device="veth38759d8"} 3
node_network_name_assign_type{device="vethc08e84b"} 3
node_network_name_assign_type{device="virbr0"} 3
# HELP node_network_net_dev_group net_dev_group value of /sys/class/net/<iface>.
# TYPE node_network_net_dev_group gauge
node_network_net_dev_group{device="br-ea1ec5277bc2"} 0
node_network_net_dev_group{device="br-f13390357e80"} 0
node_network_net_dev_group{device="docker0"} 0
node_network_net_dev_group{device="ens33"} 0
node_network_net_dev_group{device="lo"} 0
node_network_net_dev_group{device="tun0"} 0
node_network_net_dev_group{device="veth38759d8"} 0
node_network_net_dev_group{device="vethc08e84b"} 0
node_network_net_dev_group{device="virbr0"} 0
node_network_net_dev_group{device="virbr0-nic"} 0
# HELP node_network_protocol_type protocol_type value of /sys/class/net/<iface>.
# TYPE node_network_protocol_type gauge
node_network_protocol_type{device="br-ea1ec5277bc2"} 1
node_network_protocol_type{device="br-f13390357e80"} 1
node_network_protocol_type{device="docker0"} 1
node_network_protocol_type{device="ens33"} 1
node_network_protocol_type{device="lo"} 772
node_network_protocol_type{device="tun0"} 65534
node_network_protocol_type{device="veth38759d8"} 1
node_network_protocol_type{device="vethc08e84b"} 1
node_network_protocol_type{device="virbr0"} 1
node_network_protocol_type{device="virbr0-nic"} 1
# HELP node_network_receive_bytes_total Network device statistic receive_bytes.
# TYPE node_network_receive_bytes_total counter
node_network_receive_bytes_total{device="br-ea1ec5277bc2"} 0
node_network_receive_bytes_total{device="br-f13390357e80"} 0
node_network_receive_bytes_total{device="docker0"} 0
node_network_receive_bytes_total{device="ens33"} 1.030095187e+09
node_network_receive_bytes_total{device="lo"} 1.3069307e+07
node_network_receive_bytes_total{device="tun0"} 2.39228261e+08
node_network_receive_bytes_total{device="veth38759d8"} 0
node_network_receive_bytes_total{device="vethc08e84b"} 0
node_network_receive_bytes_total{device="virbr0"} 0
node_network_receive_bytes_total{device="virbr0-nic"} 0
# HELP node_network_receive_compressed_total Network device statistic receive_compressed.
# TYPE node_network_receive_compressed_total counter
node_network_receive_compressed_total{device="br-ea1ec5277bc2"} 0
node_network_receive_compressed_total{device="br-f13390357e80"} 0
node_network_receive_compressed_total{device="docker0"} 0
node_network_receive_compressed_total{device="ens33"} 0
node_network_receive_compressed_total{device="lo"} 0
node_network_receive_compressed_total{device="tun0"} 0
node_network_receive_compressed_total{device="veth38759d8"} 0
node_network_receive_compressed_total{device="vethc08e84b"} 0
node_network_receive_compressed_total{device="virbr0"} 0
node_network_receive_compressed_total{device="virbr0-nic"} 0
# HELP node_network_receive_drop_total Network device statistic receive_drop.
# TYPE node_network_receive_drop_total counter
node_network_receive_drop_total{device="br-ea1ec5277bc2"} 0
node_network_receive_drop_total{device="br-f13390357e80"} 0
node_network_receive_drop_total{device="docker0"} 0
node_network_receive_drop_total{device="ens33"} 0
node_network_receive_drop_total{device="lo"} 0
node_network_receive_drop_total{device="tun0"} 0
node_network_receive_drop_total{device="veth38759d8"} 0
node_network_receive_drop_total{device="vethc08e84b"} 0
node_network_receive_drop_total{device="virbr0"} 0
node_network_receive_drop_total{device="virbr0-nic"} 0
# HELP node_network_receive_errs_total Network device statistic receive_errs.
# TYPE node_network_receive_errs_total counter
node_network_receive_errs_total{device="br-ea1ec5277bc2"} 0
node_network_receive_errs_total{device="br-f13390357e80"} 0
node_network_receive_errs_total{device="docker0"} 0
node_network_receive_errs_total{device="ens33"} 0
node_network_receive_errs_total{device="lo"} 0
node_network_receive_errs_total{device="tun0"} 0
node_network_receive_errs_total{device="veth38759d8"} 0
node_network_receive_errs_total{device="vethc08e84b"} 0
node_network_receive_errs_total{device="virbr0"} 0
node_network_receive_errs_total{device="virbr0-nic"} 0
# HELP node_network_receive_fifo_total Network device statistic receive_fifo.
# TYPE node_network_receive_fifo_total counter
node_network_receive_fifo_total{device="br-ea1ec5277bc2"} 0
node_network_receive_fifo_total{device="br-f13390357e80"} 0
node_network_receive_fifo_total{device="docker0"} 0
node_network_receive_fifo_total{device="ens33"} 0
node_network_receive_fifo_total{device="lo"} 0
node_network_receive_fifo_total{device="tun0"} 0
node_network_receive_fifo_total{device="veth38759d8"} 0
node_network_receive_fifo_total{device="vethc08e84b"} 0
node_network_receive_fifo_total{device="virbr0"} 0
node_network_receive_fifo_total{device="virbr0-nic"} 0
# HELP node_network_receive_frame_total Network device statistic receive_frame.
# TYPE node_network_receive_frame_total counter
node_network_receive_frame_total{device="br-ea1ec5277bc2"} 0
node_network_receive_frame_total{device="br-f13390357e80"} 0
node_network_receive_frame_total{device="docker0"} 0
node_network_receive_frame_total{device="ens33"} 0
node_network_receive_frame_total{device="lo"} 0
node_network_receive_frame_total{device="tun0"} 0
node_network_receive_frame_total{device="veth38759d8"} 0
node_network_receive_frame_total{device="vethc08e84b"} 0
node_network_receive_frame_total{device="virbr0"} 0
node_network_receive_frame_total{device="virbr0-nic"} 0
# HELP node_network_receive_multicast_total Network device statistic receive_multicast.
# TYPE node_network_receive_multicast_total counter
node_network_receive_multicast_total{device="br-ea1ec5277bc2"} 0
node_network_receive_multicast_total{device="br-f13390357e80"} 0
node_network_receive_multicast_total{device="docker0"} 0
node_network_receive_multicast_total{device="ens33"} 0
node_network_receive_multicast_total{device="lo"} 0
node_network_receive_multicast_total{device="tun0"} 0
node_network_receive_multicast_total{device="veth38759d8"} 0
node_network_receive_multicast_total{device="vethc08e84b"} 0
node_network_receive_multicast_total{device="virbr0"} 0
node_network_receive_multicast_total{device="virbr0-nic"} 0
# HELP node_network_receive_packets_total Network device statistic receive_packets.
# TYPE node_network_receive_packets_total counter
node_network_receive_packets_total{device="br-ea1ec5277bc2"} 0
node_network_receive_packets_total{device="br-f13390357e80"} 0
node_network_receive_packets_total{device="docker0"} 0
node_network_receive_packets_total{device="ens33"} 1.278948e+06
node_network_receive_packets_total{device="lo"} 108359
node_network_receive_packets_total{device="tun0"} 453043
node_network_receive_packets_total{device="veth38759d8"} 0
node_network_receive_packets_total{device="vethc08e84b"} 0
node_network_receive_packets_total{device="virbr0"} 0
node_network_receive_packets_total{device="virbr0-nic"} 0
# HELP node_network_speed_bytes speed_bytes value of /sys/class/net/<iface>.
# TYPE node_network_speed_bytes gauge
node_network_speed_bytes{device="br-ea1ec5277bc2"} -125000
node_network_speed_bytes{device="br-f13390357e80"} -125000
node_network_speed_bytes{device="ens33"} 1.25e+08
node_network_speed_bytes{device="tun0"} 1.25e+06
node_network_speed_bytes{device="veth38759d8"} 1.25e+09
node_network_speed_bytes{device="vethc08e84b"} 1.25e+09
node_network_speed_bytes{device="virbr0"} -125000
# HELP node_network_transmit_bytes_total Network device statistic transmit_bytes.
# TYPE node_network_transmit_bytes_total counter
node_network_transmit_bytes_total{device="br-ea1ec5277bc2"} 0
node_network_transmit_bytes_total{device="br-f13390357e80"} 0
node_network_transmit_bytes_total{device="docker0"} 7011
node_network_transmit_bytes_total{device="ens33"} 1.638378984e+09
node_network_transmit_bytes_total{device="lo"} 1.3069307e+07
node_network_transmit_bytes_total{device="tun0"} 7.48051976e+08
node_network_transmit_bytes_total{device="veth38759d8"} 10717
node_network_transmit_bytes_total{device="vethc08e84b"} 10953
node_network_transmit_bytes_total{device="virbr0"} 0
node_network_transmit_bytes_total{device="virbr0-nic"} 0
# HELP node_network_transmit_carrier_total Network device statistic transmit_carrier.
# TYPE node_network_transmit_carrier_total counter
node_network_transmit_carrier_total{device="br-ea1ec5277bc2"} 0
node_network_transmit_carrier_total{device="br-f13390357e80"} 0
node_network_transmit_carrier_total{device="docker0"} 0
node_network_transmit_carrier_total{device="ens33"} 0
node_network_transmit_carrier_total{device="lo"} 0
node_network_transmit_carrier_total{device="tun0"} 0
node_network_transmit_carrier_total{device="veth38759d8"} 0
node_network_transmit_carrier_total{device="vethc08e84b"} 0
node_network_transmit_carrier_total{device="virbr0"} 0
node_network_transmit_carrier_total{device="virbr0-nic"} 0
# HELP node_network_transmit_colls_total Network device statistic transmit_colls.
# TYPE node_network_transmit_colls_total counter
node_network_transmit_colls_total{device="br-ea1ec5277bc2"} 0
node_network_transmit_colls_total{device="br-f13390357e80"} 0
node_network_transmit_colls_total{device="docker0"} 0
node_network_transmit_colls_total{device="ens33"} 0
node_network_transmit_colls_total{device="lo"} 0
node_network_transmit_colls_total{device="tun0"} 0
node_network_transmit_colls_total{device="veth38759d8"} 0
node_network_transmit_colls_total{device="vethc08e84b"} 0
node_network_transmit_colls_total{device="virbr0"} 0
node_network_transmit_colls_total{device="virbr0-nic"} 0
# HELP node_network_transmit_compressed_total Network device statistic transmit_compressed.
# TYPE node_network_transmit_compressed_total counter
node_network_transmit_compressed_total{device="br-ea1ec5277bc2"} 0
node_network_transmit_compressed_total{device="br-f13390357e80"} 0