forked from iobroker-community-adapters/ioBroker.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io-package.json
1147 lines (1147 loc) · 41.2 KB
/
io-package.json
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
{
"common": {
"name": "info",
"version": "1.7.8",
"news": {
"1.7.8": {
"en": "Fixed words.js in widget",
"de": "Wörter.js im Widget behoben",
"ru": "Исправлены слова words.js в виджете",
"pt": "Foi corrigido o words.js no widget",
"nl": "Vaste words.js in widget",
"fr": "Correction de words.js dans le widget",
"it": "Words.js risolto nel widget",
"es": "Word.js fijo en el widget",
"pl": "Naprawiono words.js w widgecie",
"zh-cn": "固定小部件中的words.js"
},
"1.7.7": {
"en": "Prevented a crash case (Sentry IOBROKER-INFO-K)",
"de": "Verhinderte einen Absturz (Sentry IOBROKER-INFO-K)",
"ru": "Предотвращен случай аварии (Sentry IOBROKER-INFO-K)",
"pt": "Impediu um caso de falha (Sentry IOBROKER-INFO-K)",
"nl": "Voorkom een crashcase (Sentry IOBROKER-INFO-K)",
"fr": "Empêcher un cas de crash (Sentry IOBROKER-INFO-K)",
"it": "Impedito un caso di crash (Sentry IOBROKER-INFO-K)",
"es": "Se evitó un caso de bloqueo (Sentry IOBROKER-INFO-K)",
"pl": "Zapobiegnięto awariom (Sentry IOBROKER-INFO-K)",
"zh-cn": "防止发生崩溃情况(Sentry IOBROKER-INFO-K)"
},
"1.7.6": {
"en": "Update systeminformation and other deps\nCheck for axios existance and exit adapter if not existing to prevent crashes (Sentry IOBROKER-INFO-C)\nUUID Hash with SHA256",
"de": "Aktualisieren Sie Systeminformationen und andere Deps\nÜberprüfen Sie, ob Axios vorhanden sind, und beenden Sie den Adapter, falls nicht vorhanden, um Abstürze zu vermeiden (Sentry IOBROKER-INFO-C).\nUUID Hash mit SHA256",
"ru": "Обновление системной информации и других депов\nПроверьте наличие осей и выйдите из адаптера, если он не существует, чтобы предотвратить сбои (Sentry IOBROKER-INFO-C)\nUUID хэш с SHA256",
"pt": "Atualizar informações do sistema e outros departamentos\nVerifique a existência de axios e o adaptador de saída, se não existir, para evitar falhas (Sentry IOBROKER-INFO-C)\nHash UUID com SHA256",
"nl": "Systeeminformatie en andere afdelingen bijwerken\nControleer op het bestaan van axios en sluit de adapter af als deze niet bestaat om crashes te voorkomen (Sentry IOBROKER-INFO-C)\nUUID Hash met SHA256",
"fr": "Mettre à jour les informations système et autres deps\nVérifier l'existence d'axios et sortir l'adaptateur s'il n'existe pas pour éviter les plantages (Sentry IOBROKER-INFO-C)\nHash UUID avec SHA256",
"it": "Aggiorna le informazioni di sistema e altri deps\nVerifica l'esistenza degli assi e l'adattatore di uscita se non esistente per evitare arresti anomali (Sentry IOBROKER-INFO-C)\nUUID Hash con SHA256",
"es": "Actualice la información del sistema y otros departamentos\nVerifique la existencia de axios y el adaptador de salida si no existe para evitar accidentes (Sentry IOBROKER-INFO-C)\nHash UUID con SHA256",
"pl": "Zaktualizuj informacje o systemie i inne działy\nSprawdź, czy axios istnieje i adapter wyjścia, jeśli nie istnieje, aby zapobiec awariom (Sentry IOBROKER-INFO-C)\nHash UUID z SHA256",
"zh-cn": "更新系统信息和其他部门\n检查axios是否存在并退出适配器(如果不存在)以防止崩溃(Sentry IOBROKER-INFO-C)\n具有SHA256的UUID哈希"
},
"1.7.5": {
"en": "UUID Check",
"de": "UUID-Prüfung",
"ru": "Проверка UUID",
"pt": "Verificação de UUID",
"nl": "UUID-controle",
"fr": "Vérification UUID",
"it": "Controllo UUID",
"es": "Comprobación de UUID",
"pl": "Kontrola UUID",
"zh-cn": "UUID检查"
},
"1.7.4": {
"en": "Newest version of syteminformation library\nAdded full S.M.A.R.T data when smartmontools >= 7.0 is installed",
"de": "Neueste Version der Systeminformationsbibliothek\nEs wurden vollständige S.M.A.R.T-Daten hinzugefügt, wenn smartmontools> = 7.0 installiert ist",
"ru": "Новейшая версия syteminformation библиотеки\nДобавлены полные данные S.M.A.R.T при установке smartmontools> = 7.0",
"pt": "Versão mais recente da biblioteca de informações de sistemas\nAdicionado dados completos do S.M.A.R.T quando smartmontools> = 7.0 está instalado",
"nl": "Nieuwste versie van sy nietformation-bibliotheek\nVolledige S.M.A.R.T-gegevens toegevoegd wanneer smartmontools> = 7.0 is geïnstalleerd",
"fr": "Nouvelle version de la bibliothèque syteminformation\nAjout de données S.M.A.R.T complètes lorsque smartmontools> = 7.0 est installé",
"it": "La versione più recente della libreria di informazioni sinistrutturali\nAggiunti dati S.M.A.R.T completi quando sono installati smartmontools> = 7.0",
"es": "La versión más reciente de la biblioteca de syteminformation\nSe agregaron datos completos de S.M.A.R.T cuando se instala smartmontools> = 7.0",
"pl": "Najnowsza wersja biblioteki informacji systemowych\nDodano pełne dane S.M.A.R.T po zainstalowaniu smartmontools> = 7.0",
"zh-cn": "最新版本的语法信息库\n当安装smartmontools> = 7.0时添加了完整的S.M.A.R.T数据"
},
"1.7.2": {
"en": "Newest version of syteminformation library\nMessages can be hidden",
"de": "Neueste Version der Systeminformationsbibliothek\nNachrichten können ausgeblendet werden",
"ru": "Новейшая версия syteminformation библиотеки\nСообщения могут быть скрыты",
"pt": "Versão mais recente da biblioteca de informações de sistemas\nAs mensagens podem ser ocultadas",
"nl": "Nieuwste versie van sy nietformation-bibliotheek\nBerichten kunnen worden verborgen",
"fr": "Nouvelle version de la bibliothèque syteminformation\nLes messages peuvent être masqués",
"it": "La versione più recente della libreria di informazioni sulla sinistruttura\nI messaggi possono essere nascosti",
"es": "La versión más reciente de la biblioteca de syteminformation\nLos mensajes pueden estar ocultos",
"pl": "Najnowsza wersja biblioteki informacji systemowych\nWiadomości można ukryć",
"zh-cn": "最新版本的语法信息库\n消息可以隐藏"
},
"1.7.0": {
"en": "REQUIRES node.js 10, js-controller 3.0 warnings prevented, compact mode problems fixed, other optimizations and fixes, Added Sentry for use with js-controller 3.0",
"de": "ERFORDERLICH node.js 10, Warnungen vor js-controller 3.0 verhindert, Probleme mit dem Kompaktmodus behoben, andere Optimierungen und Korrekturen, Sentry zur Verwendung mit js-controller 3.0 hinzugefügt",
"ru": "ТРЕБУЕТСЯ node.js 10, предупреждения js-controller 3.0 предотвращены, исправлены проблемы компактного режима, другие оптимизации и исправления, добавлен Sentry для использования с js-controller 3.0",
"pt": "REQUER Nó.js 10, avisos do js-controller 3.0 impedidos, problemas no modo compacto corrigidos, outras otimizações e correções, Adicionado Sentry para uso com o js-controller 3.0",
"nl": "VEREIST node.js 10, js-controller 3.0-waarschuwingen voorkomen, compacte modusproblemen verholpen, andere optimalisaties en fixes, Sentry toegevoegd voor gebruik met js-controller 3.0",
"fr": "NÉCESSITE node.js 10, avertissements de js-controller 3.0 évités, problèmes de mode compact corrigés, autres optimisations et correctifs, Sentry ajoutée pour une utilisation avec js-controller 3.0",
"it": "RICHIEDE node.js 10, avvisi js-controller 3.0 evitati, problemi di modalità compatta risolti, altre ottimizzazioni e correzioni, Sentry aggiunto per l'uso con js-controller 3.0",
"es": "REQUIERE node.js 10, se evitaron las advertencias de js-controller 3.0, se solucionaron los problemas del modo compacto, otras optimizaciones y correcciones, Sentry agregado para usar con js-controller 3.0",
"pl": "WYMAGA węzła.js 10, zapobiega ostrzeżeniom js-kontrolera 3.0, naprawiono problemy z trybem kompaktowym, inne optymalizacje i poprawki, Dodano Sentry do użytku z js-kontrolerem 3.0",
"zh-cn": "要求node.js 10,防止js-controller 3.0警告,修复紧凑模式问题,其他优化和修复,已添加Sentry与js-controller 3.0一起使用"
},
"1.6.0": {
"en": "Updated Chinese BBS RSS URL\nTabs were added to config\nUpdate translations\nWidget corrected in edit mode",
"de": "Aktualisierte chinesische BBS-RSS-URL\nDer Konfiguration wurden Registerkarten hinzugefügt\nÜbersetzungen aktualisieren\nWidget im Bearbeitungsmodus korrigiert",
"ru": "Обновленный китайский BBS RSS URL\nВкладки были добавлены в конфиг\nОбновить переводы\nИсправлен виджет в режиме редактирования",
"pt": "URL RSS BBS chinês atualizado\nGuias foram adicionadas à configuração\nAtualizar traduções\nWidget corrigido no modo de edição",
"nl": "Chinese BBS RSS-URL bijgewerkt\nTabbladen zijn toegevoegd aan de configuratie\nVertalingen bijwerken\nWidget gecorrigeerd in bewerkingsmodus",
"fr": "URL RSS du BBS chinois mise à jour\nDes onglets ont été ajoutés à la configuration\nMettre à jour les traductions\nWidget corrigé en mode édition",
"it": "URL RSS BBS cinese aggiornato\nLe schede sono state aggiunte alla configurazione\nAggiorna traduzioni\nWidget corretto in modalità modifica",
"es": "URL RSS de BBS chino actualizado\nSe agregaron pestañas a la configuración\nActualizar traducciones\nWidget corregido en modo edición",
"pl": "Zaktualizowany chiński adres URL RSS BBS\nKarty zostały dodane do konfiguracji\nZaktualizuj tłumaczenia\nWidżet poprawiony w trybie edycji",
"zh-cn": "更新了中文BBS RSS URL\n选项卡已添加到配置\n更新翻译\n在编辑模式下修正了小部件"
},
"1.5.7": {
"en": "Event calendar widget for Vis",
"de": "Eventkalender Widget für Vis",
"ru": "Виджет календаря событий для Vis",
"pt": "Widget de calendário de eventos para Vis",
"nl": "Evenementenagenda-widget voor Vis",
"fr": "Widget de calendrier d'événements pour Vis",
"it": "Widget del calendario degli eventi per Vis",
"es": "Widget de calendario de eventos para Vis",
"pl": "Widżet kalendarza wydarzeń dla Vis",
"zh-cn": "Vis的事件日历小部件"
},
"1.4.3": {
"en": "News bug fixed",
"de": "News Bug behoben",
"ru": "Исправлена ошибка новостей",
"pt": "Bug de notícias corrigido",
"nl": "Nieuws bug opgelost",
"fr": "Bogue de nouvelles corrigé",
"it": "Bug delle notizie corretto",
"es": "Error de noticias corregido",
"pl": "Naprawiono błąd wiadomości",
"zh-cn": "新闻错误已修复"
}
},
"title": "Information tab",
"titleLang": {
"en": "ioBroker information tab",
"de": "ioBroker Informationsseite",
"ru": "Информационная страница ioBroker",
"pt": "Página de informações do ioBroker",
"nl": "ioBroker-informatiepagina",
"fr": "Page d'information ioBroker",
"it": "Pagina di informazioni di ioBroker",
"es": "Página de información de ioBroker",
"pl": "Adapter informacyjny ioBroker",
"zh-cn": "ioBroker信息页面"
},
"desc": {
"en": "This is an ioBroker adapter to get informations about your system and some news about ioBroker.",
"de": "Dies ist ein ioBroker-Adapter, um Informationen über Ihr System und Neuigkeiten über ioBroker zu erhalten.",
"ru": "Это адаптер ioBroker для получения информации о вашей системе и некоторых новостях о ioBroker.",
"pt": "Este é um adaptador ioBroker para obter informações sobre o seu sistema e algumas novidades sobre o ioBroker.",
"fr": "Ceci est un adaptateur ioBroker pour obtenir des informations sur votre système et des nouvelles de ioBroker.",
"nl": "Dit is een ioBroker-adapter voor informatie over uw systeem en nieuws over ioBroker.",
"it": "Questo è un adattatore ioBroker per ottenere informazioni sul tuo sistema e alcune notizie su ioBroker.",
"es": "Este es un adaptador ioBroker para obtener información sobre su sistema y algunas noticias sobre ioBroker.",
"pl": "Jest to adapter ioBroker, aby uzyskać informacje o systemie i kilka wiadomości o ioBroker.",
"zh-cn": "这是一个ioBroker适配器,用于获取有关系统的信息以及有关ioBroker的一些新闻。"
},
"authors": [
"ldittmar <[email protected]>"
],
"compact": true,
"platform": "Javascript/Node.js",
"mode": "daemon",
"icon": "info.png",
"materialize": true,
"materializeTab": true,
"enabled": true,
"singleton": true,
"extIcon": "https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.info/master/admin/info.png",
"keywords": [
"info",
"information",
"system",
"github",
"adapters",
"updates",
"news",
"forum"
],
"readme": "https://github.com/iobroker-community-adapters/ioBroker.info/blob/master/README.md",
"docs": {
"en": "docs/en/info.md",
"de": "docs/de/info.md",
"ru": "docs/ru/info.md",
"pt": "docs/pt/info.md",
"nl": "docs/nl/info.md",
"fr": "docs/fr/info.md",
"it": "docs/it/info.md",
"es": "docs/es/info.md",
"pl": "docs/pl/info.md",
"zh-cn": "docs/zh-cn/info.md"
},
"loglevel": "info",
"type": "misc-data",
"license": "MIT",
"messagebox": true,
"connectionType": "cloud",
"dataSource": "poll",
"adminTab": {
"singleton": true,
"name": {
"en": "Info",
"de": "Info",
"ru": "Информация",
"pt": "Informações",
"nl": "Info",
"fr": "Info",
"it": "Informazioni",
"es": "Informacion",
"pl": "Informacje",
"zh-cn": "信息"
},
"fa-icon": "info"
},
"restartAdapters": [
"vis"
],
"dependencies": [
{
"js-controller": ">=2.0.0"
}
],
"globalDependencies": [
{
"admin": ">=3.0.0"
}
],
"plugins": {
"sentry": {
"dsn": "https://[email protected]/32"
}
}
},
"native": {
"news": true,
"forum": true,
"clock": false,
"hide_events": false,
"new_adapters": false,
"new_adapters_sort": "name",
"new_adapters_order": false,
"new_adapters_closed": false,
"adapter_request": true,
"adapter_request_close_hidden": false,
"adapter_request_closed": false,
"adapter_issue": true,
"adapter_issue_closed": false,
"documentation": true,
"doc_langs": [],
"feednami": "",
"noCurrentSysData": true,
"cpuSpeed": 60,
"memSpeed": 60,
"diskSpeed": 120,
"batterySpeed": 120,
"networkSpeed": 60,
"allProcessesUsers": 120,
"github_token": "",
"hide_github_myIssues": false,
"hide_github_myWatched": false,
"hide_github_myStarred": false,
"hide_github_myAssigned": false
},
"objects": [],
"instanceObjects": [
{
"_id": "newsfeed",
"type": "state",
"common": {
"name": "Last Newsfeed",
"type": "string",
"role": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "last_popup",
"type": "state",
"common": {
"name": "Last accepted popup",
"type": "string",
"role": "date",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "newsfeed_filtered",
"type": "state",
"common": {
"name": "Last Newsfeed - filtered",
"type": "string",
"role": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "ignored_news",
"type": "state",
"common": {
"name": "News already read",
"type": "string",
"role": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "uuid",
"type": "state",
"common": {
"name": "UUID",
"type": "string",
"role": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "readTestFile",
"type": "state",
"common": {
"name": "Testdatei für Entwicklung lesen",
"type": "string",
"read": true,
"write": true,
"def": ""
},
"native": {}
},
{
"_id": "sysinfo",
"type": "device",
"common": {
"name": "System Information"
},
"native": {}
},
{
"_id": "sysinfo.system",
"type": "channel",
"common": {
"name": "System",
"role": "info",
"icon": "lib/img/icons/system.png"
},
"native": {}
},
{
"_id": "sysinfo.system.hardware",
"type": "channel",
"common": {
"name": "Hardware info",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.system.bios",
"type": "channel",
"common": {
"name": "BIOS",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.system.baseboard",
"type": "channel",
"common": {
"name": "Baseboard",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.system.chassis",
"type": "channel",
"common": {
"name": "Chassis",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.cpu",
"type": "channel",
"common": {
"name": "CPU",
"role": "info",
"icon": "lib/img/icons/cpu.png"
},
"native": {}
},
{
"_id": "sysinfo.cpu.info",
"type": "channel",
"common": {
"name": "CPU information",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad",
"type": "channel",
"common": {
"name": "CPU current load",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.avgload",
"type": "state",
"common": {
"name": "CPU average load",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload",
"type": "state",
"common": {
"name": "CPU load in %",
"type": "number",
"role": "value",
"min": "0",
"max": "100",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload_hist",
"type": "state",
"common": {
"name": "CPU load (last 30)",
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload_user",
"type": "state",
"common": {
"name": "CPU load user in %",
"type": "number",
"role": "value",
"min": "0",
"max": "100",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload_system",
"type": "state",
"common": {
"name": "CPU load system in %",
"type": "number",
"role": "value",
"min": "0",
"max": "100",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload_nice",
"type": "state",
"common": {
"name": "CPU load nice in %",
"type": "number",
"role": "value",
"min": "0",
"max": "100",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload_idle",
"type": "state",
"common": {
"name": "CPU load idle in %",
"type": "number",
"role": "value",
"min": "0",
"max": "100",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.currentload_irq",
"type": "state",
"common": {
"name": "CPU load irq in %",
"type": "number",
"role": "value",
"min": "0",
"max": "100",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.raw_currentload",
"type": "state",
"common": {
"name": "CPU load raw values",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.raw_currentload_user",
"type": "state",
"common": {
"name": "CPU load user raw values",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.raw_currentload_system",
"type": "state",
"common": {
"name": "CPU load system raw values",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.raw_currentload_nice",
"type": "state",
"common": {
"name": "CPU load nice raw values",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.raw_currentload_idle",
"type": "state",
"common": {
"name": "CPU load idle raw values",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentLoad.raw_currentload_irq",
"type": "state",
"common": {
"name": "CPU load irq raw values",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.temperature",
"type": "channel",
"common": {
"name": "CPU temperature",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.cpu.temperature.main",
"type": "state",
"common": {
"name": "Main temperature (avg)",
"type": "number",
"role": "value",
"unit": "°C",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.temperature.main_hist",
"type": "state",
"common": {
"name": "Temperature (last 30)",
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.temperature.cores",
"type": "state",
"common": {
"name": "CPU temperature/core",
"type": "array",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.temperature.max",
"type": "state",
"common": {
"name": "CPU max temperature",
"type": "number",
"unit": "°C",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentspeed",
"type": "channel",
"common": {
"name": "CPU currentspeed",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentspeed.avgSpeed",
"type": "state",
"common": {
"name": "avg CPU speed (all cores)",
"type": "number",
"unit": "GHz",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentspeed.maxSpeed",
"type": "state",
"common": {
"name": "max CPU speed (all cores)",
"type": "number",
"unit": "GHz",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentspeed.minSpeed",
"type": "state",
"common": {
"name": "min CPU speed (all cores)",
"type": "number",
"unit": "GHz",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.cpu.currentspeed.coresSpeed",
"type": "state",
"common": {
"name": "CPU speed per core",
"type": "array",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory",
"type": "channel",
"common": {
"name": "Memory",
"role": "info",
"icon": "lib/img/icons/memory.png"
},
"native": {}
},
{
"_id": "sysinfo.memory.info",
"type": "channel",
"common": {
"name": "Memory information",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.memory.info.free",
"type": "state",
"common": {
"name": "Memory free",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.used",
"type": "state",
"common": {
"name": "Memory used",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.used_hist",
"type": "state",
"common": {
"name": "Memory used (last 30)",
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.active",
"type": "state",
"common": {
"name": "Memory active",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.available",
"type": "state",
"common": {
"name": "Memory available",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.buffcache",
"type": "state",
"common": {
"name": "Memory buffcache",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.swapused",
"type": "state",
"common": {
"name": "Memory swap used",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.memory.info.swapfree",
"type": "state",
"common": {
"name": "Memory swap free",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os",
"type": "channel",
"common": {
"name": "OS",
"role": "info",
"icon": "lib/img/icons/os.png"
},
"native": {}
},
{
"_id": "sysinfo.os.info",
"type": "channel",
"common": {
"name": "OS informations",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.os.versions",
"type": "channel",
"common": {
"name": "Software versions",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.os.users",
"type": "state",
"common": {
"name": "Users online",
"type": "string",
"role": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os.processes",
"type": "channel",
"common": {
"name": "Running processes",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.os.processes.all",
"type": "state",
"common": {
"name": "# running processes",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os.processes.running",
"type": "state",
"common": {
"name": "# of all processes running",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os.processes.blocked",
"type": "state",
"common": {
"name": "# of all processes blocked",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os.processes.sleeping",
"type": "state",
"common": {
"name": "# of all processes sleeping",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os.processes.unknown",
"type": "state",
"common": {
"name": "# of all processes unknown status",
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.os.processes.list",
"type": "state",
"common": {
"name": "All processes incl. details",
"type": "string",
"role": "json",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "sysinfo.disks",
"type": "channel",
"common": {
"name": "Disks",
"role": "info",
"icon": "lib/img/icons/disk.png"
},
"native": {}
},
{
"_id": "sysinfo.disks.blockDevices",
"type": "channel",
"common": {
"name": "Disks data",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.disks.diskLayout",
"type": "channel",
"common": {
"name": "Physical disk layout",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.disks.fsSize",
"type": "channel",
"common": {
"name": "Mounted file systems",
"role": "info"
},
"native": {}
},
{
"_id": "sysinfo.network",
"type": "channel",
"common": {
"name": "Network",
"role": "info",
"icon": "lib/img/icons/network.png"
},
"native": {}