forked from netdata/netdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demosites.html
1469 lines (1319 loc) · 63.6 KB
/
demosites.html
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
<!doctype html>
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->
<html lang=en-us xmlns="http://www.w3.org/1999/html">
<head>
<meta http-equiv="Refresh" content="0; url=https://www.netdata.cloud">
<meta charset=utf-8>
<title>NetData: Get control of your Linux Servers. Simple. Effective. Awesome.</title>
<meta name=author content="Costa Tsaousis">
<meta name=description content="Unparalleled insights, in real-time, of everything happening on your Linux systems and applications, with stunning, interactive web dashboards and powerful performance and health alarms.">
<meta name=viewport content="width=device-width,initial-scale=1">
<link rel=apple-touch-icon href=apple-touch-icon.png>
<link rel="icon" href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAP9JREFUeNpiYBgFo+A/w34gpiZ8DzWzAYgNiHGAA5UdgA73g+2gcyhgg/0DGQoweB6IBQYyFCCOGOBQwBMd/xnW09ERDtgcoEBHB+zHFQrz6egIBUasocDAcJ9OxWAhE4YQI8MDILmATg7wZ8QRDfQKhQf4Cie6pAVGPA4AhQKo0BCgZRAw4ZSBpIWJNI6CD4wEKikBaFqgVSgcYMIrzcjwgcahcIGRiPYCLUPBkNhWUwP9akVcoQBpatG4MsLviAIqWj6f3Absfdq2igg7IIEKDVQKEzN5ofAenJCp1I8gJRTug5tfkGIdR1FDniMI+QZUjF8Amn5htOdHCAAEGACE6B0cS6mrEwAAAABJRU5ErkJggg==" />
<meta property="og:url" content="https://my-netdata.io" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Get control of your Linux Servers. Simple. Effective. Awesome." />
<meta property="og:description" content="Unparalleled insights, in real-time, of everything happening on your Linux systems and applications, with stunning, interactive web dashboards and powerful performance and health alarms." />
<meta property="og:image" content="https://cloud.githubusercontent.com/assets/2662304/22945737/e98cd0c6-f2fd-11e6-96f1-5501934b0955.png" />
<meta property="og:image:type" content="image/png" />
<meta property="fb:app_id" content="1200089276712916" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@linuxnetdata" />
<meta name="twitter:title" content="Get control of your Linux Servers. Simple. Effective. Awesome." />
<meta name="twitter:description" content="Unparalleled insights, in real-time, of everything happening on your Linux systems and applications, with stunning, interactive web dashboards and powerful performance and health alarms." />
<meta name="twitter:image" content="https://cloud.githubusercontent.com/assets/2662304/14092712/93b039ea-f551-11e5-822c-beadbf2b2a2e.gif" />
<meta name="google-site-verification" content="3Xmk2kyCvai8p9HEnYHoQ9RBW20-b1NvPAgu07Fkkds" />
<meta name="msvalidate.01" content="896DCA31C9A664CE359FCF1A645DD476" />
<style>/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
html {
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
color: #fff;
font: 17px/1.4 'Open Sans', sans-serif;
text-align: center
}
body {
margin: 0;
background-color: #2f3135;
background-image: url(data:image/png;base64,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)
}
a {
background-color: transparent;
-webkit-text-decoration-skip: objects;
color: #069;
text-decoration: none
}
a:active, a:hover {
outline-width: 0
}
strong {
font-weight: bolder
}
h1 {
font-size: 2.9em;
line-height: 1.2em;
margin: 0 .5em .75em
}
img {
border-style: none;
vertical-align: middle
}
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
border-style: none;
padding: 0
}
[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
outline: 1px dotted ButtonText
}
a:active, a:focus, a:hover {
text-decoration: underline;
}
::-moz-selection {
background-color: #b3d4fc;
text-shadow: none;
}
::selection {
background-color: #b3d4fc;
text-shadow: none;
}
h2 {
font-size: 2em;
margin: 1.5em 0;
}
h3 {
color: #555;
font-size: 1.5em;
margin: 0 0 .5em;
}
p {
margin: 0 0 2em;
}
.quote {
font-size: 1.15em;
margin: 0 0 .5em;
text-align: center;
}
.title {
/* opacity: 0; */
/* transition: opacity 500ms; */
}
.titlefadein {
opacity: 1;
transition: opacity 500ms;
}
.grid {
margin: 0 -15px;
letter-spacing: -.31em;
word-spacing: -.43em;
text-rendering: optimizespeed
}
.grid-title {
text-align: left;
}
.grid-cell {
display: inline-block;
letter-spacing: normal;
text-align: left;
text-rendering: auto;
vertical-align: top;
width: 50%;
word-spacing: normal
}
.grid-cell > * {
padding: 0 15px
}
.inline-block-list {
list-style-type: none;
margin: 0;
padding: 0
}
.inline-block-list li {
display: inline-block;
margin: 0 0 0 1.5em;
padding: 0;
vertical-align: top
}
.inline-block-list li:first-child {
margin-left: 0
}
.flex-embed {
background-color: #000;
box-shadow: 0 0 10px #000;
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative
}
.flex-embed a, .flex-embed img {
bottom: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%
}
.flex-embed .play-btn {
background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2LDkyLjQ4MWM0NC40MzMsMCw4Ni4xOCwxNy4wNjgsMTE3LjU1Myw0OC4wNjRDNDA0Ljc5NCwxNzEuNDExLDQyMiwyMTIuNDEzLDQyMiwyNTUuOTk5cy0xNy4yMDYsODQuNTg4LTQ4LjQ0OCwxMTUuNDU1Yy0zMS4zNzIsMzAuOTk0LTczLjEyLDQ4LjA2NC0xMTcuNTUyLDQ4LjA2NHMtODYuMTc5LTE3LjA3LTExNy41NTItNDguMDY0QzEwNy4yMDYsMzQwLjU4Nyw5MCwyOTkuNTg1LDkwLDI1NS45OTlzMTcuMjA2LTg0LjU4OCw0OC40NDgtMTE1LjQ1M0MxNjkuODIxLDEwOS41NSwyMTEuNTY4LDkyLjQ4MSwyNTYsOTIuNDgxIE0yNTYsNTIuNDgxIGMtMTEzLjc3MSwwLTIwNiw5MS4xMTctMjA2LDIwMy41MThjMCwxMTIuMzk4LDkyLjIyOSwyMDMuNTIsMjA2LDIwMy41MmMxMTMuNzcyLDAsMjA2LTkxLjEyMSwyMDYtMjAzLjUyQzQ2MiwxNDMuNTk5LDM2OS43NzIsNTIuNDgxLDI1Niw1Mi40ODFMMjU2LDUyLjQ4MXogTTIwNi41NDQsMzU3LjE2MVYxNTkuODMzbDE2MC45MTksOTguNjY2TDIwNi41NDQsMzU3LjE2MXoiPjwvcGF0aD48L3N2Zz4K);
height: 150px;
left: 50%;
margin-left: -75px;
margin-top: -75px;
position: absolute;
top: 50%;
-webkit-transition: 1s;
transition: 1s;
width: 150px
}
.flex-embed:hover .play-btn {
opacity: .5
}
.clearfix:after, .clearfix:before {
content: ' ';
display: table
}
.clearfix:after {
clear: both
}
.clearfix {
*zoom: 1
}
.container {
margin: 0 auto;
max-width: 760px;
padding: 0 10px
}
.aside {
background-color: #eee;
border: solid #e3e3e3;
border-width: 1px 0;
font-size: 1.125em;
padding: 1em 0
}
.btn, .cta-option {
display: inline-block;
position: relative
}
.cta-option {
margin: 2.5em .5em 0;
vertical-align: top
}
.btn {
color: #fff;
font-size: 1.5em;
padding: .6em 1em;
text-decoration: none;
text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
vertical-align: middle;
border-radius: 4px;
border: 1px solid #333
}
.btn:active, .btn:focus, .btn:hover {
text-decoration: none
}
.btn-download {
background-color: #d9750b;
background-image: -webkit-linear-gradient(#f90 10%, #e76a00 100%);
background-image: linear-gradient(#f90 10%, #e76a00 100%);
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 1px 3px rgba(0, 0, 0, .2);
border: 1px solid #995309
}
.btn-download:active, .btn-download:focus, .btn-download:hover {
background-color: #e0811b;
background-image: -webkit-linear-gradient(#f0a100 10%, #f70 100%);
background-image: linear-gradient(#f0a100 10%, #f70 100%)
}
.btn-download:active {
background-color: #cf6a00;
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2) inset
}
.btn-alt {
background-color: #444;
border-color: #222;
box-shadow: none;
font-size: 1.25em;
margin-top: .25em
}
.btn-alt:active, .btn-alt:focus, .btn-alt:hover {
background-color: #555
}
.star {
color: #e08524
}
.Icon {
display: inline-block;
height: 16px;
margin: -3px 1px 0 0;
vertical-align: middle;
width: 16px
}
.Icon--github {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjEgMTIxIj48ZyBmaWxsPSIjMTkxNzE3Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYwLjUgMS42Yy0zMy4zIDAtNjAuNCAyNy02MC40IDYwLjQgMCAyNi43IDE3LjMgNDkuMyA0MS4zIDU3LjMgMyAuNiA0LjEtMS4zIDQuMS0yLjkgMC0xLjQtLjEtNi4yLS4xLTExLjItMTYuNyAzLjYtMjAuMy03LjItMjAuMy03LjItMi43LTctNi43LTguOC02LjctOC44LTUuNS0zLjcuNC0zLjcuNC0zLjcgNi4xLjQgOS4zIDYuMiA5LjMgNi4yIDUuNCA5LjIgMTQuMSA2LjYgMTcuNiA1IC41LTMuOSAyLjEtNi42IDMuOC04LjEtMTMuNC0xLjQtMjcuNS02LjYtMjcuNS0yOS44IDAtNi42IDIuNC0xMiA2LjItMTYuMi0uNi0xLjUtMi43LTcuNy42LTE2IDAgMCA1LjEtMS42IDE2LjYgNi4yIDQuOC0xLjMgMTAtMiAxNS4xLTJzMTAuMy43IDE1LjEgMmMxMS41LTcuOCAxNi42LTYuMiAxNi42LTYuMiAzLjMgOC4zIDEuMiAxNC41LjYgMTYgMy45IDQuMiA2LjIgOS42IDYuMiAxNi4yIDAgMjMuMi0xNC4xIDI4LjMtMjcuNSAyOS44IDIuMiAxLjkgNC4xIDUuNSA0LjEgMTEuMiAwIDguMS0uMSAxNC42LS4xIDE2LjYgMCAxLjYgMS4xIDMuNSA0LjEgMi45IDI0LTggNDEuMy0zMC42IDQxLjMtNTcuMyAwLTMzLjQtMjctNjAuNC02MC40LTYwLjR6Ii8+PHBhdGggZD0iTTIzIDg4LjNjLS4xLjMtLjYuNC0xIC4ycy0uNy0uNi0uNS0uOWMuMS0uMy42LS40IDEtLjJzLjYuNi41Ljl6bS0uOC0uNU0yNS40IDkxYy0uMy4zLS45LjEtMS4yLS4zLS40LS40LS41LTEtLjItMS4zLjMtLjMuOC0uMSAxLjIuMy41LjUuNSAxLjEuMiAxLjN6bS0uNS0uNk0yNy44IDk0LjVjLS40LjMtMSAwLTEuMy0uNS0uNC0uNS0uNC0xLjIgMC0xLjQuNC0uMyAxIDAgMS4zLjUuNC41LjQgMS4xIDAgMS40em0wIDBNMzEuMSA5Ny45Yy0uMy40LTEgLjMtMS42LS4yLS41LS41LS43LTEuMi0uMy0xLjUuMy0uNCAxLS4zIDEuNi4yLjUuNC42IDEuMS4zIDEuNXptMCAwTTM1LjYgOTkuOGMtLjEuNS0uOC43LTEuNS41LS43LS4yLTEuMS0uOC0xLTEuMi4xLS41LjgtLjcgMS41LS41LjcuMiAxLjEuNyAxIDEuMnptMCAwTTQwLjUgMTAwLjJjMCAuNS0uNi45LTEuMy45LS43IDAtMS4zLS40LTEuMy0uOXMuNi0uOSAxLjMtLjljLjcgMCAxLjMuNCAxLjMuOXptMCAwTTQ1LjEgOTkuNGMuMS41LS40IDEtMS4xIDEuMS0uNy4xLTEuMy0uMi0xLjQtLjctLjEtLjUuNC0xIDEuMS0xLjEuNy0uMSAxLjMuMiAxLjQuN3ptMCAwIi8+PC9nPjwvc3ZnPgo=)
}
.Icon--html5 {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjUwIDEwMSA0MTIgNDEyIj48cGF0aCBmaWxsPSIjRTQ0RDI2IiBkPSJNMTA3LjY0NCA0NzAuODc3bC0zMy4wMTEtMzcwLjI1N2gzNjIuNzM0bC0zMy4wNDYgMzcwLjE5OS0xNDguNTQzIDQxLjE4MXoiLz48cGF0aCBmaWxsPSIjRjE2NTI5IiBkPSJNMjU2IDQ4MC41MjNsMTIwLjAzLTMzLjI3NyAyOC4yNC0zMTYuMzUyaC0xNDguMjd6Ii8+PHBhdGggZmlsbD0iI0VCRUJFQiIgZD0iTTI1NiAyNjguMjE3aC02MC4wOWwtNC4xNS00Ni41MDFoNjQuMjR2LTQ1LjQxMWgtMTEzLjg2OGwxLjA4NyAxMi4xODMgMTEuMTYxIDEyNS4xMzloMTAxLjYyem0wIDExNy45MzZsLS4xOTkuMDUzLTUwLjU3NC0xMy42NTYtMy4yMzMtMzYuMjE3aC00NS41ODVsNi4zNjIgNzEuMzAxIDkzLjAyIDI1LjgyMy4yMDktLjA1OHoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMjU1Ljg0MyAyNjguMjE3djQ1LjQxaDU1LjkxOGwtNS4yNzEgNTguODk0LTUwLjY0NyAxMy42N3Y0Ny4yNDRsOTMuMDk0LTI1LjgwMS42ODMtNy42NzIgMTAuNjcxLTExOS41NTEgMS4xMDgtMTIuMTk0aC0xMi4yMzd6bTAtOTEuOTEydjQ1LjQxMWgxMDkuNjg4bC45MTEtMTAuMjA3IDIuMDY5LTIzLjAyMSAxLjA4Ni0xMi4xODN6Ii8+PC9zdmc+Cg==)
}
.Icon--stackoverflow {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjMgMi44IDU4LjIgNTgiPjxwYXRoIGQ9Ik05LjMwNSAzNi44NDhsNC40MDEuMDQzLS4xNTMgMTkuNTk4aDI5LjI5MXYtMTkuNTI4aDQuNjM4djI0LjI4N2gtMzguMjAxbC4wMjQtMjQuNDAxem03LjE3NyAxMS41ODZoMjIuOTQ1djQuODgyaC0yMi45NDV6IiBmaWxsPSIjOTE5MTkxIi8+PHBhdGggZmlsbD0iI2E3OGI2OCIgZD0iTTE3LjAyIDM5LjY0OGwyMi45NiAyLjIxNi0uNDgxIDQuOTgxLTIyLjk2LTIuMjE2eiIvPjxwYXRoIGZpbGw9IiNjMTk2NTMiIGQ9Ik0xOS4xMjEgMjkuNzEzbDIyLjIgNi4yNjYtMS4zNTkgNC44MTYtMjIuMi02LjI2NnoiLz48cGF0aCBmaWxsPSIjZDQ4YzI4IiBkPSJNMjQuNTAxIDE4LjQ4NGwxOS43NDUgMTEuOTI2LTIuNTg3IDQuMjgzLTE5Ljc0NS0xMS45MjZ6Ii8+PHBhdGggZmlsbD0iI2ZlODkwOCIgZD0iTTM1LjczMyA3Ljg0OWwxMy40MzUgMTguNzUxLTQuMDY4IDIuOTE0LTEzLjQzNS0xOC43NTF6Ii8+PHBhdGggZmlsbD0iI2ZmN2ExNSIgZD0iTTUxLjM0IDIuNzUxbDMuODAyIDIyLjc1Mi00LjkzNi44MjUtMy44MDItMjIuNzUyeiIvPjwvc3ZnPgo=)
}
.site-header {
padding-top: 50px
}
.site-logo {
color: #fff;
float: left;
font-size: 25px;
font-weight: 700;
line-height: 32px;
text-decoration: none;
text-shadow: 2px 2px 0 #000;
text-transform: uppercase
}
.site-nav {
float: right;
list-style-type: none;
margin: 7px 0 0;
padding: 0
}
.site-nav a {
color: #ffa000;
display: block;
text-decoration: none;
text-transform: uppercase
}
.site-nav a:active, .site-nav a:focus, .site-nav a:hover {
color: #fff
}
.site-promo {
padding: 4em 0 6em;
color: white;
}
.site-promo .description {
color: #ddd;
font-size: 1.2em;
margin: 1em 2em 0
}
.last-update {
color: #999;
display: block;
font-size: .75em;
margin-top: 10px
}
.site-section {
background-color: #f9f9f9;
color: #333;
overflow: hidden;
padding: 2em 0 2em
}
.site-section-gray {
background-color: #f5f5f5;
color: #333;
overflow: hidden;
padding: 2em 0 2em
}
.site-section-dark {
background-color: transparent;
color: #fff;
text-align: center;
padding: 2em 0 3em
}
.site-section-dark .content {
max-width: 720px;
margin: auto;
padding: 10px
}
.site-section-dark h2 {
margin: 1em 0
}
.site-section-dark h3 {
color: white;
}
.in-the-wild {
font-size: 1.25em;
margin: 0 auto;
max-width: 720px
}
.site-footer {
font-size: .875em;
padding: 2em
}
.site-footer a {
color: #ffa000
}
@media only screen and (max-width: 800px) {
.site-logo, .site-nav {
float: none
}
.site-nav li {
margin: 0 .5em
}
.site-header {
padding-top: 40px
}
.site-promo {
padding: 3em 0;
color: white;
}
.site-section {
padding: 0 1em 4em
}
}
@media only screen and (max-width: 600px) {
html {
font-size: 14px
}
.last-update, .site-footer {
font-size: 1em
}
}
@media only screen and (max-width: 460px) {
.grid-cell {
width: 100%
}
}
@media only screen and (max-width: 420px) {
h1 {
font-size: 2.5em
}
html {
font-size: 13px
}
}
@media print {
* {
background-color: transparent !important;
box-shadow: none !important;
color: #000 !important;
text-shadow: none !important
}
a, a:visited {
text-decoration: underline
}
img {
page-break-inside: avoid;
max-width: 100% !important
}
h1 {
padding: 1em 0 0
}
.site-promo {
margin: 1em;
padding: 0;
color: white;
}
.site-section {
padding: 0;
margin: 2em 1em
}
.site-section-dark {
display: none
}
h2, h3, p {
orphans: 3;
widows: 3
}
h2, h3 {
page-break-after: avoid
}
}
</style>
<script>
// --- OPTIONS FOR THE DASHBOARD --
// this section has to appear before loading dashboard.js
// Select a theme.
// uncomment on of the two themes:
// var netdataTheme = 'default'; // this is white
var netdataTheme = 'slate'; // this is dark
var netdataNoBootstrap = true;
// Set the default netdata server.
// on charts without a 'data-host', this one will be used.
// the default is the server that dashboard.js is downloaded from.
// var netdataServer = 'http://my.server:19999/';
</script>
<!--
--- LOAD dashboard.js ---
to host this HTML file on your web server,
you have to load dashboard.js from the netdata server.
So, pick one the two below
If you pick the first, set the server name/IP.
The second assumes you host this file on /usr/share/netdata/web
and that you have chown it to be owned by netdata:netdata
-->
<!-- <script type="text/javascript" src="http://my.server:19999/dashboard.js"></script> -->
<script type="text/javascript" src="dashboard.js?v20190902-0"></script>
<script>
// --- OPTIONS FOR THE CHARTS --
// destroy charts not shown (lowers memory on the browsers)
// set this to 'true' to destroy, 'false' to hide the charts
NETDATA.options.current.destroy_on_hide = false;
// set this to false, to always show all dimensions
NETDATA.options.current.eliminate_zero_dimensions = true;
// set this to false, to lower the pressure on the browser
NETDATA.options.current.concurrent_refreshes = true;
// if you need to support slow mobile phones, set this to false
NETDATA.options.current.parallel_refresher = true;
// set this to false, to always update the charts, even if focus is lost
NETDATA.options.current.stop_updates_when_focus_is_lost = true;
// since we have many servers and limited sockets,
// abort ajax calls when we scroll
NETDATA.options.current.abort_ajax_on_scroll = true;
// do not to give errors on netdata demo servers for 60 seconds
NETDATA.options.current.retries_on_data_failures = 60;
</script>
<style>
.mygauge-combo {
display: inline-block;
}
.mygauge-combo20 {
display: inline-block;
min-width: 150px;
width: 49%;
padding-top: 40px;
text-align: center;
}
.mygauge-combo30 {
display: inline-block;
min-width: 150px;
width: 32%;
padding-top: 40px;
text-align: center;
}
.mygauge {
position: relative;
display: block;
width: 171px;
/* height: 150px; */
}
.mygauge-button {
display: block;
}
.mygauge-legend-button {
font-size: 13px;
}
.mygause-donation {
font-size: 9px;
color: #999;
}
.mysparkline {
position: relative;
display: inline-block;
width: 100%;
height: 50px;
text-align: left;
}
.mysparkline-overchart-label {
position: absolute;
display: block;
top: -15px;
left: 10px;
bottom: 0;
right: 0;
font-size: 14px;
z-index: 1;
pointer-events: none;
}
.mysparkline-overchart-label2 {
position: absolute;
display: block;
top: -15px;
left: 10px;
bottom: 0;
right: 0;
font-size: 8px;
color: #676b70;
z-index: 1;
pointer-events: none;
}
.mysparkline-overchart-value {
position: absolute;
display: block;
top: 0px;
left: 10px;
bottom: 0;
right: 0;
font-size: 40px;
z-index: 2;
text-shadow: #333 0px 0px 2px;
pointer-events: none;
}
.mysparkline-overchart-value-center {
position: absolute;
display: block;
top: 5px;
left: 0px;
bottom: 0;
right: 0;
font-size: 35px;
font-weight: bold;
text-align: center;
z-index: 2;
text-shadow: #333 0px 0px 2px;
pointer-events: none;
}
.fb-share-button span {
top: 0px;
}
.fb-like span {
top: 0px;
}
.fb-follow span {
top: 0px;
}
</style>
</head>
<body>
<div class=container>
<div class="site-header clearfix" role=banner>
<div class=site-logo>my-netdata.io</div>
<ul class="site-nav inline-block-list">
<li><a href=https://github.com/netdata/netdata data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label="Source code" target="_blank">Source code</a>
<li><a href=https://docs.netdata.cloud data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=Docs target="_blank">Docs</a>
</ul>
</div>
<div class=site-promo><h1><span class="title">Monitor your systems and applications, the right way!</span></h1>
<p class=description>
<strong>Unparalleled</strong> insights, in <strong>real-time</strong>,
of <strong>everything</strong> happening on your systems and applications,
with stunning, <strong>interactive</strong> web dashboards
and powerful <strong>performance</strong> and <strong>health</strong> alarms.
<div class=cta-option>
<a class="btn btn-download" href="https://docs.netdata.cloud/packaging/installer/" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=Install><strong>Install netdata now</strong></a>
<a class=last-update href="https://github.com/netdata/netdata/releases" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=Releases>See netdata releases</a></div>
<div class=cta-option>
<a class="btn btn-alt" href="#demosites" data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=Demo>netdata live demo</a>
</div>
</div>
</div>
<div class=site-section>
<div class=container><h2>Enter the world of Netdata!</h2>
<div class="grid-title">
<h3><span class=star>★</span> 1s granularity</h3>
</div>
<div class=grid>
<div class=grid-cell>
<p>
<b>Per second</b> data collection and visualization, for all metrics!
</p>
<p>
Netdata <b>zooms into the problems</b> by providing higher resolution information, compared to any other monitoring solution.
</p>
</div>
<div class=grid-cell>
<p class="quote"><i>
The world goes real-time.
<br/> <br/>
High resolution metrics are required to effectively monitor and troubleshoot systems and applications, especially on virtual environments.
</i></p>
</div>
</div>
</div>
<div>
<a href="https://docs.netdata.cloud/docs/why-netdata/1s-granularity/">Learn more about high resolution metrics</a>
</div>
</div>
<div class="site-section site-section-gray">
<div class=container>
<div class="grid-title">
<h3><span class=star>★</span> Unlimited metrics</h3>
</div>
<div class=grid>
<div class=grid-cell>
<p>
Use all the metrics, from all available sources!
</p>
<p>
Netdata collects all the metrics native console tools do. It has been <b>designed to kill the console</b> for troubleshooting infrastructure slowdowns and outages.
</p>
</div>
<div class=grid-cell>
<p class="quote"><i>
All metrics are important and all should be available when you need them.
<br/> <br/>
Filtering out most metrics is like reading a book by skipping most of its pages.
</i></p>
</div>
</div>
</div>
<div>
<a href="https://docs.netdata.cloud/docs/why-netdata/unlimited-metrics/">Learn more about unlimited metrics</a>
</div>
</div>
<div class="site-section">
<div class=container>
<div class="grid-title">
<h3><span class=star>★</span> Meaningful presentation</h3>
</div>
<div class=grid>
<div class=grid-cell>
<p>
Explore all metrics in a meaningful, easy to understand way!
</p>
<p>
Netdata engineers and experts on our community organize metrics in a meaningful way, so that you can learn and understand them right on the job, while troubleshooting issues of your infrastructure.
</p>
</div>
<div class=grid-cell>
<p class="quote"><i>
Metrics are a lot more than name-value pairs over time.
<br/> <br/>
It is just not practical to require from all users to have a deep understanding of all metrics for monitoring their systems and applications.
</i></p>
</div>
</div>
</div>
<div>
<a href="https://docs.netdata.cloud/docs/why-netdata/meaningful-presentation/">Learn more about meaningful presentation</a>
</div>
</div>
<div class="site-section site-section-gray">
<div class=container>
<div class="grid-title">
<h3><span class=star>★</span> Immediate results</h3>
</div>
<div class=grid>
<div class=grid-cell>
<p>
Install and use immediately! Get fully functional visualization and alarms, in just a couple of seconds after installation!
</p>
<p>
Netdata <b>decouples your skills from your monitoring infrastructure</b>.
No matter how skillful or novice you are, Netdata will apply all the community knowledge and expertise to your monitoring infrastructure.
</p>
</div>
<div class=grid-cell>
<p class="quote"><i>
Most of our infrastructure is based on standardized systems and applications.
<br/> <br/>
It is a tremendous waste of time and effort, in a global scale, to require from all users to configure their infrastructure dashboards and alarms metric by metric.
</i></p>
</div>
</div>
</div>
<div>
<a href="https://docs.netdata.cloud/docs/why-netdata/immediate-results/">Learn more about immediate results</a>
</div>
</div>
<div class="site-section site-section-dark">
<div class=container><h2>How it works</h2>
<div style="padding-bottom: 1em">
<p>
Netdata is a monitoring agent you install on all your systems:
<br/>
<b>physical servers</b>, <b>virtual servers</b>, <b>containers</b>, <b>IoT</b>.
</p>
<p>
Netdata is lightweight, designed to permanently run on all systems without disrupting their core function.
By default, it needs just 1% CPU of a single core, a few MB or RAM and no disk I/O at all.
</p>
<p>
Each Netdata is (by default) autonomous, taking care of all the following.
<br/>But all your Netdata are integrated into one large distributed application.
</p>
</div>
<div class=grid>
<div class=grid-cell><h3><span class=star>★</span> Collect</h3>
<p>
Netdata automatically detects data collection sources on the host it runs.
It comes with hundreds of plugins for collecting system and application metrics,
including databases, web servers, and commonly used application servers.
<br/> <br/>
Netdata is also a high performance, distributed <b>statsd server</b>, allowing custom
application metrics to be collected and visualized.
</p>
</div>
<div class=grid-cell><h3><span class=star>★</span> Check (alarms)</h3>
<p>
Each Netdata spawns a thread that examines the metrics as they get collected,
evaluates pre-configured alarm expressions and triggers alarm notifications.
<br/> <br/>
Netdata comes with hundreds of alarms to detect common system and application issues,
that are automatically attached to the collected metrics,
supporting dozens of alarm notification integrations.
</p>
</div>
<div class=grid-cell><h3><span class=star>★</span> Stream</h3>
<p>
Each Netdata can stream its metrics, in real-time, to any other Netdata.
Streaming allows Netdata to be used in ephemeral nodes and containers in auto-scaled environments,
but it also allows building Netdata hierarchies for aggregating the metrics of multiple Netdata nodes.
</p>
</div>
<div class=grid-cell><h3><span class=star>★</span> Store</h3>
<p>
Each Netdata has its own internal metrics database. This database is optimized
for minimal memory footprint, and due to its lockless design allows one writer
and multiple readers per metric, concurrently, contributing significantly to
the performance of Netdata.
</p>
</div>
<div class=grid-cell><h3><span class=star>★</span> Archive</h3>
<p>
Netdata can archive its metrics to time-series databases (prometheus, graphite, opentsdb, json document dbs, etc)
so that Netdata can be integrated to existing monitoring tool-chains.
</p>
</div>
<div class=grid-cell><h3><span class=star>★</span> Visualize</h3>
<p>
The best part of Netdata is its visualization. Low latency, speedy and snazzy.
<br/> <br/>
Netdata dashboards are optimized for visual anomaly detection, a powerful tool to troubleshoot
performance issues.
</p>
</div>
</div>
</div>
</div>
<div class="site-section">
</div>
<div id="demosites" class="site-section site-section-dark"><h2>netdata live demo sites</h2>
<div class="content">
<div class="container" style="text-align: center;">
<div class="mygauge-combo">
<div class="mygauge">
<div data-netdata="netdata.requests"
data-host="//london.my-netdata.io"
data-title="EU - London"
data-chart-library="gauge"
data-decimal-digits="0"
data-common-max="top-gauges"
data-width="100%"
data-after="-300"
data-points="300"
data-colors="#558855"
></div>
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//london.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoLondon><strong>Enter London!</strong></a>
<div class="mygause-donation">
Donated by DigitalOcean.com
</div>
</div>
</div>
<div class="mygauge-combo">
<div class="mygauge">
<div data-netdata="netdata.requests"
data-host="//atlanta.my-netdata.io"
data-title="US - Atlanta"
data-chart-library="gauge"
data-decimal-digits="0"
data-common-max="top-gauges"
data-width="100%"
data-after="-300"
data-points="300"
data-colors="#AA5555"
></div>
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//atlanta.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoAtlanta><strong>Enter Atlanta!</strong></a>
<div class="mygause-donation">
Donated by CDN77.com
</div>
</div>
</div>
<div class="mygauge-combo">
<div class="mygauge">
<div data-netdata="netdata.requests"
data-host="//sanfrancisco.my-netdata.io"
data-title="US - California"
data-chart-library="gauge"
data-decimal-digits="0"
data-common-max="top-gauges"
data-width="100%"
data-after="-300"
data-points="300"
data-colors="#5555AA"
></div>
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//sanfrancisco.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoSanfrancisco><strong>Enter California!</strong></a>
<div class="mygause-donation">
Donated by DigitalOcean.com
</div>
</div>
</div>
<div class="mygauge-combo">
<div class="mygauge">
<div data-netdata="netdata.requests"
data-host="//toronto.my-netdata.io"
data-title="Canada"
data-chart-library="gauge"
data-decimal-digits="0"
data-common-max="top-gauges"
data-width="100%"
data-after="-300"
data-points="300"
data-colors="#885588"
></div>
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//toronto.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoToronto><strong>Enter Canada!</strong></a>
<div class="mygause-donation">
Donated by DigitalOcean.com
</div>
</div>
</div>
<br/> <br/>
<div class="mygauge-combo">
<div class="mygauge">
<div data-netdata="netdata.requests"
data-host="//frankfurt.my-netdata.io"
data-title="EU - Germany"
data-chart-library="easypiechart"
data-decimal-digits="0"
data-common-max="top-gauges"
data-width="75%"
data-after="-300"
data-points="300"
data-colors="#AAAA55"
></div>
</div>
<div class="mygauge-button">
<a class="btn btn-alt mygauge-legend-button" href=//frankfurt.my-netdata.io/default.html data-ga-category="Outbound links" data-ga-action="Nav click" data-ga-label=DemoFrankfurt><strong>Enter Germany!</strong></a>
<div class="mygause-donation">