code-poltergeist-system-monitor 1.0.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of code-poltergeist-system-monitor might be problematic. Click here for more details.

Files changed (33) hide show
  1. package/index.js +74 -0
  2. package/package.json +21 -0
  3. package/te/node_modules/.package-lock.json +44 -0
  4. package/te/node_modules/code-poltergeist-system-monitor/index.js +74 -0
  5. package/te/node_modules/code-poltergeist-system-monitor/package.json +21 -0
  6. package/te/node_modules/systeminformation/LICENSE +20 -0
  7. package/te/node_modules/systeminformation/README.md +1116 -0
  8. package/te/node_modules/systeminformation/lib/audio.js +222 -0
  9. package/te/node_modules/systeminformation/lib/battery.js +311 -0
  10. package/te/node_modules/systeminformation/lib/bluetooth.js +231 -0
  11. package/te/node_modules/systeminformation/lib/cli.js +91 -0
  12. package/te/node_modules/systeminformation/lib/cpu.js +1834 -0
  13. package/te/node_modules/systeminformation/lib/docker.js +758 -0
  14. package/te/node_modules/systeminformation/lib/dockerSocket.js +327 -0
  15. package/te/node_modules/systeminformation/lib/filesystem.js +1510 -0
  16. package/te/node_modules/systeminformation/lib/graphics.js +1125 -0
  17. package/te/node_modules/systeminformation/lib/index.d.ts +1041 -0
  18. package/te/node_modules/systeminformation/lib/index.js +504 -0
  19. package/te/node_modules/systeminformation/lib/internet.js +237 -0
  20. package/te/node_modules/systeminformation/lib/memory.js +575 -0
  21. package/te/node_modules/systeminformation/lib/network.js +1783 -0
  22. package/te/node_modules/systeminformation/lib/osinfo.js +1179 -0
  23. package/te/node_modules/systeminformation/lib/printer.js +210 -0
  24. package/te/node_modules/systeminformation/lib/processes.js +1296 -0
  25. package/te/node_modules/systeminformation/lib/system.js +742 -0
  26. package/te/node_modules/systeminformation/lib/usb.js +279 -0
  27. package/te/node_modules/systeminformation/lib/users.js +363 -0
  28. package/te/node_modules/systeminformation/lib/util.js +1373 -0
  29. package/te/node_modules/systeminformation/lib/virtualbox.js +107 -0
  30. package/te/node_modules/systeminformation/lib/wifi.js +834 -0
  31. package/te/node_modules/systeminformation/package.json +99 -0
  32. package/te/package-lock.json +52 -0
  33. package/te/package.json +15 -0
@@ -0,0 +1,1116 @@
1
+ <p align="center">
2
+ <a href="https://systeminformation.io/">
3
+ <img src="https://systeminformation.io/assets/logo_inv.png" alt="systeminformation logo" width="102" height="72">
4
+ </a>
5
+ </p>
6
+
7
+ <h3 align="center">systeminformation</h3>
8
+
9
+ <p align="center">
10
+ System and OS information library for node.js
11
+ <br>
12
+ <a href="https://systeminformation.io/"><strong>Explore Systeminformation docs »</strong></a>
13
+ <br>
14
+ <br>
15
+ <a href="https://github.com/sebhildebrandt/systeminformation/issues/new?template=bug_report.md">Report bug</a>
16
+ ·
17
+ <a href="https://github.com/sebhildebrandt/systeminformation/issues/new?template=feature_request.md&labels=feature">Request feature</a>
18
+ ·
19
+ <a href="https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md">Changelog</a>
20
+ </p>
21
+
22
+ [![NPM Version][npm-image]][npm-url]
23
+ [![NPM Downloads][downloads-image]][downloads-url]
24
+ [![Git Issues][issues-img]][issues-url]
25
+ [![Closed Issues][closed-issues-img]][closed-issues-url]
26
+ <img src="docs/assets/no-dependencies.svg" alt="no dependencies">
27
+ [![Sponsoring][sponsor-badge]][sponsor-url]
28
+ [![Caretaker][caretaker-image]][caretaker-url]
29
+ [![MIT license][license-img]][license-url]
30
+
31
+ ## The Systeminformation Project
32
+ This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 600 versions published, up to 8 mio downloads per month, > 300 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project!
33
+
34
+ ## Please support this project ... ☕️
35
+
36
+ Over the past few years I spent **more than 2.000 hours** working on this project and invested in hardware to be able to test on different platforms. Currently I am working very hard on the next **new version 6.0** completely rewritten in TypeScript and with a lot of new features. Any support is highly appreciated - [Buy me a coffee](https://www.buymeacoffee.com/systeminfo).
37
+
38
+ **Your contribution** make it possible for me to keep working on this project, add new features and support more platforms. Thank you in advance!
39
+
40
+ ## New Version 5.0
41
+
42
+ The new Version 5 is here - this next major version release 5.0 comes with new functionality and several improvements and changes (some of them are breaking changes!):
43
+
44
+ - added audio: get detailed audio device information
45
+ - added bluetooth: get detailed bluetooth device information
46
+ - added dockerImages, dockerVolumes: get detailed information about docker images and volumes
47
+ - added printer: get information from detected printers
48
+ - added usb: get detailed usb controller and device information
49
+ - added wifi interfaces and connections: extended wifi information
50
+ - better uuid function to get unique hardware and OS UUIDs
51
+ - better/extended cpu info detection
52
+ - better/extended system info detection
53
+ - Apple Silicon M1/M2/M3 support
54
+ - better Raspberry-PI detection
55
+ - systeminformation website updated and extended with full documentation and examples [systeminformation.io][systeminformation-url]
56
+ - lot of minor improvements
57
+
58
+ Breaking Changes in version 5: you will see several breaking changes for the sake of a more consistent API interface and to be future proof. Read the [detailed version 5 changes][changes5-url].
59
+
60
+ I did a lot of testing on different platforms and machines but of course there might be some issues that I am not aware of. I would be happy if you inform me when you discover any issues. Issues can be [opened here][new-issue].
61
+
62
+ ## Quick Start
63
+
64
+ Lightweight collection of 50+ functions to retrieve detailed hardware, system and OS information.
65
+
66
+ - simple to use
67
+ - get detailed information about system, cpu, baseboard, battery, memory, disks/filesystem, network, docker, software, services and processes
68
+ - supports Linux, macOS, partial Windows, FreeBSD, OpenBSD, NetBSD, SunOS and Android support
69
+ - no npm dependencies
70
+
71
+ **Attention**: this is a `node.js` library. It is supposed to be used as a backend/server-side library and will definitely not work within a browser.
72
+
73
+ ### Installation
74
+
75
+ ```bash
76
+ npm install systeminformation --save
77
+ ```
78
+
79
+ or simpler
80
+
81
+ ```bash
82
+ npm i systeminformation
83
+ ```
84
+
85
+ ### Give it a try with `npx`?
86
+
87
+ You just want to give it a try - right from your command line without installing it? Here is how you can call it with `npx`:
88
+
89
+ ```
90
+ # get basic system info (System, OS, CPU)
91
+ npx systeminformation info
92
+
93
+ # obtain all static data - may take up to 30 seconds
94
+ npx systeminformation
95
+ ```
96
+
97
+
98
+ #### Still need Version 4?
99
+
100
+ If you need version 4 (for compatibility reasons), you can install version 4 (latest release) like this
101
+
102
+ ```bash
103
+ npm install systeminformation@4 —save
104
+ ```
105
+
106
+ or simpler
107
+
108
+ ```bash
109
+ npm install systeminformation@4
110
+ ```
111
+
112
+ ### Usage
113
+
114
+ All functions (except `version` and `time`) are implemented as asynchronous functions. Here a small example how to use them:
115
+
116
+ ```js
117
+ const si = require('systeminformation');
118
+
119
+ // promises style - new since version 3
120
+ si.cpu()
121
+ .then(data => console.log(data))
122
+ .catch(error => console.error(error));
123
+ ```
124
+
125
+ ## News and Changes
126
+
127
+ ### Latest Activity
128
+
129
+ (last 7 major and minor version releases)
130
+
131
+ - Version 5.23.0: `usb()` added serial number (linux)
132
+ - Version 5.22.0: `wifiConnections()` added signal quality
133
+ - Version 5.21.0: `graphics()` added subVendor (linux)
134
+ - Version 5.20.0: `mem()` added writeback and dirty (linux)
135
+ - Version 5.19.0: `currentLoad()` added steal and guest time (linux)
136
+ - Version 5.18.0: `fsSize()` added optional drive parameter
137
+ - Version 5.17.0: `graphics()` added positionX, positionY (macOS)
138
+ - Version 5.16.0: `fsSize()` added rw property
139
+ - Version 5.15.0: `blockDevices()` added device
140
+ - Version 5.14.0: `blockDevices()` added raid group member (linux)
141
+ - Version 5.13.0: `networkConnections()` added process name (macOS)
142
+ - Version 5.12.0: `cpu()` added performance and efficiency cores
143
+ - Version 5.11.0: `networkInterfaces()` added default property and default parameter
144
+ - Version 5.10.0: basic `android` support
145
+ - Version 5.9.0: `graphics()` added properties (macOS)
146
+ - Version 5.8.0: `disksIO()` added waitTime, waitPercent (linux)
147
+ - Version 5.7.0: `diskLayout()` added S.M.A.R.T for Windows (if installed)
148
+ - Version 5.6.0: `cpuTemperature()` added socket and chipset temp (linux)
149
+ - Version 5.5.0: `dockerVolumes()` added
150
+ - Version 5.4.0: `dockerImages()` added
151
+ - Version 5.3.0: `osInfo()` added remoteSession (win only)
152
+ - Version 5.2.0: `wifiInterfaces()` and `wifiConnections()` added
153
+ - Version 5.1.0: `memLayout()` added ECC flag, `bios()` added language, features (linux)
154
+ - Version 5.0.0: new version 5 - attention there are some breaking changes. See [detailed version 5 changes here][changes5-url].
155
+ - ...
156
+
157
+ You can find all changes here: [detailed changelog][changelog-url]
158
+
159
+ ## Core concept
160
+
161
+ [Node.js][nodejs-url] comes with some basic OS information, but I always wanted a little more. So I came up to write this little library. This library is still a work in progress. It is supposed to be used as a backend/server-side library (it will definitely not work within a browser). It requires node.js version 4.0 and above.
162
+
163
+ I was able to test it on several Debian, Raspbian, Ubuntu distributions as well as macOS (Mavericks, Yosemite, El Captain, Sierra, High Sierra, Mojave, Catalina, Big Sur) and some Windows 7, Windows 8, Windows 10, FreeBSD, OpenBSD, NetBSD and SunOS machines. Not all functions are supported on all operating systems. Have a look at the function reference in the docs to get further details.
164
+
165
+ If you have comments, suggestions & reports, please feel free to contact me!
166
+
167
+
168
+ I also created a nice little command line tool called [mmon][mmon-github-url] (micro-monitor) for Linux and macOS, also available via [github][mmon-github-url] and [npm][mmon-npm-url]
169
+
170
+
171
+ ## Reference
172
+
173
+ ### Function Reference and OS Support
174
+
175
+ Full function reference with examples can be found at [https://systeminformation.io][systeminformation-url].
176
+
177
+ #### 1. General
178
+
179
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
180
+ | ------------ | ------------- | ----- | --- | --- | --- | --- | --------------------------------- |
181
+ | si.version() | : string | X | X | X | X | X | lib version (no callback/promise) |
182
+ | si.time() | {...} | X | X | X | X | X | (no callback/promise) |
183
+ | | current | X | X | X | X | X | local (server) time |
184
+ | | uptime | X | X | X | X | X | uptime in number of seconds |
185
+ | | timezone | X | X | X | X | X | e.g. GMT+0200 |
186
+ | | timezoneName | X | X | X | X | X | e.g. CEST |
187
+
188
+ #### 2. System (HW)
189
+
190
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
191
+ | ---------------- | ------------- | ----- | --- | --- | --- | --- | -------------------------------- |
192
+ | si.system(cb) | {...} | X | X | X | X | | hardware information |
193
+ | | manufacturer | X | X | X | X | | e.g. 'MSI' |
194
+ | | model | X | X | X | X | | model/product e.g. 'MS-7823' |
195
+ | | version | X | X | X | X | | version e.g. '1.0' |
196
+ | | serial | X | X | X | X | | serial number |
197
+ | | uuid | X | X | X | X | | UUID |
198
+ | | sku | X | X | X | X | | SKU number |
199
+ | | virtual | X | X | | X | | is virtual machine |
200
+ | | virtualHost | X | X | | X | | virtual host (if virtual) |
201
+ | | raspberry | X | | | | | optional raspberry revision data |
202
+ | si.bios(cb) | {...} | X | X | X | X | | bios information |
203
+ | | vendor | X | X | X | X | | e.g. 'AMI' |
204
+ | | version | X | X | X | X | | version |
205
+ | | releaseDate | X | X | | X | | release date |
206
+ | | revision | X | X | | X | | revision |
207
+ | | serial | X | | | X | | serial |
208
+ | si.baseboard(cb) | {...} | X | X | X | X | | baseboard information |
209
+ | | manufacturer | X | X | X | X | | e.g. 'ASUS' |
210
+ | | model | X | X | X | X | | model / product name |
211
+ | | version | X | X | X | X | | version |
212
+ | | serial | X | X | X | X | | serial number |
213
+ | | assetTag | X | X | X | X | | asset tag |
214
+ | | memMax | X | | X | X | | max memory in bytes |
215
+ | | memSlots | X | | X | X | | memory slots on baseboard |
216
+ | si.chassis(cb) | {...} | X | X | X | X | | chassis information |
217
+ | | manufacturer | X | X | X | X | | e.g. 'MSI' |
218
+ | | model | X | X | X | X | | model / product name |
219
+ | | type | X | X | X | X | | model / product name |
220
+ | | version | X | X | X | X | | version |
221
+ | | serial | X | X | X | X | | serial number |
222
+ | | assetTag | X | X | X | X | | asset tag |
223
+ | | sku | | | | X | | SKU number |
224
+
225
+ #### 3. CPU
226
+
227
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
228
+ | ---------------------- | ---------------- | ----- | --- | --- | --- | --- | ----------------------------------- |
229
+ | si.cpu(cb) | {...} | X | X | X | X | | CPU information |
230
+ | | manufacturer | X | X | X | X | | e.g. 'Intel(R)' |
231
+ | | brand | X | X | X | X | | e.g. 'Core(TM)2 Duo' |
232
+ | | speed | X | X | X | X | | in GHz e.g. '3.40' |
233
+ | | speedMin | X | | X | X | | in GHz e.g. '0.80' |
234
+ | | speedMax | X | X | X | X | | in GHz e.g. '3.90' |
235
+ | | governor | X | | | | | e.g. 'powersave' |
236
+ | | cores | X | X | X | X | | # cores |
237
+ | | physicalCores | X | X | X | X | | # physical cores |
238
+ | | efficiencyCores | X | | X | | | # efficiency cores |
239
+ | | performanceCores | X | | X | | | # performance cores |
240
+ | | processors | X | X | X | X | | # processors |
241
+ | | socket | X | X | | X | | socket type e.g. "LGA1356" |
242
+ | | vendor | X | X | X | X | | vendor ID |
243
+ | | family | X | X | X | X | | processor family |
244
+ | | model | X | X | X | X | | processor model |
245
+ | | stepping | X | X | X | X | | processor stepping |
246
+ | | revision | X | | X | X | | revision |
247
+ | | voltage | | X | | | | voltage |
248
+ | | flags | X | X | X | X | | CPU flags |
249
+ | | virtualization | X | X | X | X | | virtualization supported |
250
+ | | cache | X | X | X | X | | cache in bytes (object) |
251
+ | | cache.l1d | X | X | X | X | | L1D (data) size |
252
+ | | cache.l1i | X | X | X | X | | L1I (instruction) size |
253
+ | | cache.l2 | X | X | X | X | | L2 size |
254
+ | | cache.l3 | X | X | X | X | | L3 size |
255
+ | si.cpuFlags(cb) | : string | X | X | X | X | | CPU flags |
256
+ | si.cpuCache(cb) | {...} | X | X | X | X | | CPU cache sizes |
257
+ | | l1d | X | X | X | X | | L1D size |
258
+ | | l1i | X | X | X | X | | L1I size |
259
+ | | l2 | X | X | X | X | | L2 size |
260
+ | | l3 | X | X | X | X | | L3 size |
261
+ | si.cpuCurrentSpeed(cb) | {...} | X | X | X | X | X | current CPU speed (in GHz) |
262
+ | | avg | X | X | X | X | X | avg CPU speed (all cores) |
263
+ | | min | X | X | X | X | X | min CPU speed (all cores) |
264
+ | | max | X | X | X | X | X | max CPU speed (all cores) |
265
+ | | cores | X | X | X | X | X | CPU speed per core (array) |
266
+ | si.cpuTemperature(cb) | {...} | X | X | X* | X | | CPU temperature in C (if supported) |
267
+ | | main | X | X | X | X | | main temperature (avg) |
268
+ | | cores | X | X | X | X | | array of temperatures |
269
+ | | max | X | X | X | X | | max temperature |
270
+ | | socket | X | | | | | array socket temperatures |
271
+ | | chipset | X | | | | | chipset temperature |
272
+
273
+ #### 4. Memory
274
+
275
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
276
+ | ---------------- | --------------------- | ----- | --- | --- | --- | --- | -------------------------------------- |
277
+ | si.mem(cb) | {...} | X | X | X | X | X | Memory information (in bytes) |
278
+ | | total | X | X | X | X | X | total memory in bytes |
279
+ | | free | X | X | X | X | X | not used in bytes |
280
+ | | used | X | X | X | X | X | used (incl. buffers/cache) |
281
+ | | active | X | X | X | X | X | used actively (excl. buffers/cache) |
282
+ | | buffcache | X | X | X | | X | used by buffers+cache |
283
+ | | buffers | X | | | | | used by buffers |
284
+ | | cached | X | | | | | used by cache |
285
+ | | slab | X | | | | | used by slab |
286
+ | | available | X | X | X | X | X | potentially available (total - active) |
287
+ | | swaptotal | X | X | X | X | X | |
288
+ | | swapused | X | X | X | X | X | |
289
+ | | swapfree | X | X | X | X | X | |
290
+ | | writeback | X | | | | | |
291
+ | | dirty | X | | | | | |
292
+ | si.memLayout(cb) | [{...}] | X | X | X | X | | Memory Layout (array) |
293
+ | | [0].size | X | X | X | X | | size in bytes |
294
+ | | [0].bank | X | X | | X | | memory bank |
295
+ | | [0].type | X | X | X | X | | memory type |
296
+ | | [0].clockSpeed | X | X | X | X | | clock speed |
297
+ | | [0].formFactor | X | X | | X | | form factor |
298
+ | | [0].manufacturer | X | X | X | X | | manufacturer |
299
+ | | [0].partNum | X | X | X | X | | part number |
300
+ | | [0].serialNum | X | X | X | X | | serial number |
301
+ | | [0].voltageConfigured | X | X | | X | | voltage conf. |
302
+ | | [0].voltageMin | X | X | | X | | voltage min |
303
+ | | [0].voltageMax | X | X | | X | | voltage max |
304
+
305
+ #### 5. Battery
306
+
307
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
308
+ | -------------- | ---------------- | ----- | --- | --- | --- | --- | --------------------------------- |
309
+ | si.battery(cb) | {...} | X | X | X | X | | battery information |
310
+ | | hasBattery | X | X | X | X | | indicates presence of battery |
311
+ | | cycleCount | X | | X | | | numbers of recharges |
312
+ | | isCharging | X | X | X | X | | indicates if battery is charging |
313
+ | | designedCapacity | X | | X | X | | max capacity of battery (mWh) |
314
+ | | maxCapacity | X | | X | X | | max capacity of battery (mWh) |
315
+ | | currentCapacity | X | | X | X | | current capacity of battery (mWh) |
316
+ | | capacityUnit | X | | X | X | | capacity unit (mWh) |
317
+ | | voltage | X | | X | X | | current voltage of battery (V) |
318
+ | | percent | X | X | X | X | | charging level in percent |
319
+ | | timeRemaining | X | | X | | | minutes left (if discharging) |
320
+ | | acConnected | X | X | X | X | | AC connected |
321
+ | | type | X | | X | | | battery type |
322
+ | | model | X | | X | | | model |
323
+ | | manufacturer | X | | X | | | manufacturer |
324
+ | | serial | X | | X | | | battery serial |
325
+
326
+ * See known issues if you have a problem with macOS temperature or windows temperature
327
+
328
+ #### 6. Graphics
329
+
330
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
331
+ | --------------- | ------------------------- | ----- | --- | --- | --- | --- | ------------------------------------------- |
332
+ | si.graphics(cb) | {...} | X | | X | X | | arrays of graphics controllers and displays |
333
+ | | controllers[] | X | | X | X | | graphics controllers array |
334
+ | | ...[0].vendor | X | | X | X | | e.g. NVIDIA |
335
+ | | ...[0].subVendor | X | | | | | e.g. Gigabyte |
336
+ | | ...[0].vendorId | | | X | | | vendor ID |
337
+ | | ...[0].model | X | | X | X | | graphics controller model |
338
+ | | ...[0].deviceId | | | X | | | device ID |
339
+ | | ...[0].bus | X | | X | X | | on which bus (e.g. PCIe) |
340
+ | | ...[0].vram | X | | X | X | | VRAM size (in MB) |
341
+ | | ...[0].vramDynamic | X | | X | X | | true if dynamically allocated ram |
342
+ | | ...[0].external | | | X | | | is external GPU |
343
+ | | ...[0].cores | | | X | | | Apple silicon only |
344
+ | | ...[0].metalVersion | | | X | | | Apple Metal Version |
345
+ | | displays[] | X | | X | X | | monitor/display array |
346
+ | | ...[0].vendor | | | | X | | monitor/display vendor |
347
+ | | ...[0].vendorId | | | X | | | vendor ID |
348
+ | | ...[0].deviceName | | | | X | | e.g. \\\\.\\DISPLAY1 |
349
+ | | ...[0].model | X | | X | X | | monitor/display model |
350
+ | | ...[0].productionYear | | | X | | | production year |
351
+ | | ...[0].serial | | | X | | | serial number |
352
+ | | ...[0].displayId | | | X | | | display ID |
353
+ | | ...[0].main | X | | X | X | | true if main monitor |
354
+ | | ...[0].builtin | X | | X | | | true if built-in monitor |
355
+ | | ...[0].connection | X | | X | X | | e.g. DisplayPort or HDMI |
356
+ | | ...[0].sizeX | X | | | X | | size in mm horizontal |
357
+ | | ...[0].sizeY | X | | | X | | size in mm vertical |
358
+ | | ...[0].pixelDepth | X | | X | X | | color depth in bits |
359
+ | | ...[0].resolutionX | X | | X | X | | pixel horizontal |
360
+ | | ...[0].resolutionY | X | | X | X | | pixel vertical |
361
+ | | ...[0].currentResX | X | | X | X | | current pixel horizontal |
362
+ | | ...[0].currentResY | X | | X | X | | current pixel vertical |
363
+ | | ...[0].positionX | | | X | X | | display position X |
364
+ | | ...[0].positionY | | | X | X | | display position Y |
365
+ | | ...[0].currentRefreshRate | X | | X | X | | current screen refresh rate |
366
+
367
+ #### 7. Operating System
368
+
369
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
370
+ | --------------------- | ------------- | ----- | --- | --- | --- | --- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
371
+ | si.osInfo(cb) | {...} | X | X | X | X | X | OS information |
372
+ | | platform | X | X | X | X | X | 'linux', 'darwin', 'Windows', ... |
373
+ | | distro | X | X | X | X | X | |
374
+ | | release | X | X | X | X | X | |
375
+ | | codename | X | | X | | | |
376
+ | | kernel | X | X | X | X | X | kernel release - same as os.release() |
377
+ | | arch | X | X | X | X | X | same as os.arch() |
378
+ | | hostname | X | X | X | X | X | same as os.hostname() |
379
+ | | fqdn | X | X | X | X | X | FQDN fully qualified domain name |
380
+ | | codepage | X | X | X | X | | OS build version |
381
+ | | logofile | X | X | X | X | X | e.g. 'apple', 'debian', 'fedora', ... |
382
+ | | serial | X | X | X | X | | OS/Host serial number |
383
+ | | build | X | | X | X | | OS build version |
384
+ | | servicepack | | | | X | | service pack version |
385
+ | | uefi | X | X | X | X | | OS started via UEFI |
386
+ | | hypervisor | | | | X | | hyper-v enabled? (win only) |
387
+ | | remoteSession | | | | X | | runs in remote session (win only) |
388
+ | si.uuid(cb) | {...} | X | X | X | X | X | object of several UUIDs |
389
+ | | os | X | X | X | X | | os specific UUID |
390
+ | | hardware | X | X | X | X | | hardware specific UUID |
391
+ | | macs | X | X | X | X | | MAC addresses |
392
+ | si.versions(apps, cb) | {...} | X | X | X | X | X | version information (kernel, ssl, node, ...)<br />apps param is optional for detecting<br />only specific apps/libs<br />(string, comma separated) |
393
+ | si.shell(cb) | : string | X | X | X | X | | standard shell |
394
+ | si.users(cb) | [{...}] | X | X | X | X | X | array of users online |
395
+ | | [0].user | X | X | X | X | X | user name |
396
+ | | [0].tty | X | X | X | X | X | terminal |
397
+ | | [0].date | X | X | X | X | X | login date |
398
+ | | [0].time | X | X | X | X | X | login time |
399
+ | | [0].ip | X | X | X | | X | ip address (remote login) |
400
+ | | [0].command | X | X | X | | X | last command or shell |
401
+
402
+ #### 8. Current Load, Processes & Services
403
+
404
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
405
+ | ------------------------------------ | ----------------- | ----- | --- | --- | --- | --- | --------------------------------------------------------------------------------------- |
406
+ | si.currentLoad(cb) | {...} | X | | X | X | X | CPU-Load |
407
+ | | avgLoad | X | | X | | X | average load |
408
+ | | currentLoad | X | | X | X | X | CPU load in % |
409
+ | | currentLoadUser | X | | X | X | X | CPU load user in % |
410
+ | | currentLoadSystem | X | | X | X | X | CPU load system in % |
411
+ | | currentLoadNice | X | | X | X | X | CPU load nice in % |
412
+ | | currentLoadIdle | X | | X | X | X | CPU load idle in % |
413
+ | | currentLoadIrq | X | | X | X | X | CPU load system in % |
414
+ | | rawCurrentLoad... | X | | X | X | X | CPU load raw values (ticks) |
415
+ | | cpus[] | X | | X | X | X | current loads per CPU in % + raw ticks |
416
+ | si.fullLoad(cb) | : integer | X | | X | X | | CPU full load since bootup in % |
417
+ | si.processes(cb) | {...} | X | X | X | X | X | # running processes |
418
+ | | all | X | X | X | X | X | # of all processes |
419
+ | | running | X | X | X | | X | # of all processes running |
420
+ | | blocked | X | X | X | | X | # of all processes blocked |
421
+ | | sleeping | X | X | X | | X | # of all processes sleeping |
422
+ | | unknown | | | | X | | # of all processes unknown status |
423
+ | | list[] | X | X | X | X | X | list of all processes incl. details |
424
+ | | ...[0].pid | X | X | X | X | X | process PID |
425
+ | | ...[0].parentPid | X | X | X | X | X | parent process PID |
426
+ | | ...[0].name | X | X | X | X | X | process name |
427
+ | | ...[0].cpu | X | X | X | X | X | process % CPU usage |
428
+ | | ...[0].cpuu | X | X | | X | | process % CPU usage (user) |
429
+ | | ...[0].cpus | X | X | | X | | process % CPU usage (system) |
430
+ | | ...[0].mem | X | X | X | X | X | process memory % |
431
+ | | ...[0].priority | X | X | X | X | X | process priority |
432
+ | | ...[0].memVsz | X | X | X | X | X | process virtual memory size |
433
+ | | ...[0].memRss | X | X | X | X | X | process mem resident set size |
434
+ | | ...[0].nice | X | X | X | | X | process nice value |
435
+ | | ...[0].started | X | X | X | X | X | process start time |
436
+ | | ...[0].state | X | X | X | X | X | process state (e.g. sleeping) |
437
+ | | ...[0].tty | X | X | X | | X | tty from which process was started |
438
+ | | ...[0].user | X | X | X | | X | user who started process |
439
+ | | ...[0].command | X | X | X | X | X | process starting command |
440
+ | | ...[0].params | X | X | X | | X | process params |
441
+ | | ...[0].path | X | X | X | X | X | process path |
442
+ | | proc | X | X | X | X | | process name |
443
+ | | pid | X | X | X | X | | PID |
444
+ | | pids | X | X | X | X | | additional pids |
445
+ | | cpu | X | X | X | X | | process % CPU |
446
+ | | mem | X | X | X | X | | process % MEM |
447
+ | si.services('mysql, apache2', cb) | [{...}] | X | X | X | X | | pass comma separated string of services<br>pass "*" for ALL services (linux/win only) |
448
+ | | [0].name | X | X | X | X | | name of service |
449
+ | | [0].running | X | X | X | X | | true / false |
450
+ | | [0].startmode | | | | X | | manual, automatic, ... |
451
+ | | [0].pids | X | X | X | X | | pids |
452
+ | | [0].cpu | X | X | X | | | process % CPU |
453
+ | | [0].mem | X | X | X | | | process % MEM |
454
+ | si.processLoad('mysql, apache2', cb) | [{...}] | X | X | X | X | | pass comma separated string of processes<br>pass "*" for ALL processes (linux/win only) |
455
+ | | [0].proc | X | X | X | X | | name of process |
456
+ | | [0].pids | X | X | X | X | | pids |
457
+ | | [0].cpu | X | X | X | | | process % CPU |
458
+ | | [0].mem | X | X | X | | | process % MEM |
459
+
460
+ #### 9. File System
461
+
462
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
463
+ | -------------------- | --------------------- | ----- | --- | --- | --- | --- | ------------------------------------------------------------------------ |
464
+ | si.diskLayout(cb) | [{...}] | X | | X | X | | physical disk layout (array) |
465
+ | | [0].device | X | | X | | | e.g. /dev/sda |
466
+ | | [0].type | X | | X | X | | HD, SSD, NVMe |
467
+ | | [0].name | X | | X | X | | disk name |
468
+ | | [0].vendor | X | | | X | | vendor/producer |
469
+ | | [0].size | X | | X | X | | size in bytes |
470
+ | | [0].bytesPerSector | | | | X | | bytes per sector |
471
+ | | [0].totalCylinders | | | | X | | total cylinders |
472
+ | | [0].totalHeads | | | | X | | total heads |
473
+ | | [0].totalSectors | | | | X | | total sectors |
474
+ | | [0].totalTracks | | | | X | | total tracks |
475
+ | | [0].tracksPerCylinder | | | | X | | tracks per cylinder |
476
+ | | [0].sectorsPerTrack | | | | X | | sectors per track |
477
+ | | [0].firmwareRevision | X | | X | X | | firmware revision |
478
+ | | [0].serialNum | X | | X | X | | serial number |
479
+ | | [0].interfaceType | X | | X | X | | SATA, PCIe, ... |
480
+ | | [0].smartStatus | X | | X | X | | S.M.A.R.T Status (see Known Issues) |
481
+ | | [0].temperature | X | | | | | S.M.A.R.T temperature |
482
+ | | [0].smartData | X | | | X | | full S.M.A.R.T data from smartctl<br>requires at least smartmontools 7.0 |
483
+ | si.blockDevices(cb) | [{...}] | X | | X | X | | returns array of disks, partitions,<br>raids and roms |
484
+ | | [0].name | X | | X | X | | name |
485
+ | | [0].type | X | | X | X | | type |
486
+ | | [0].fstype | X | | X | X | | file system type (e.g. ext4) |
487
+ | | [0].mount | X | | X | X | | mount point |
488
+ | | [0].size | X | | X | X | | size in bytes |
489
+ | | [0].physical | X | | X | X | | physical type (HDD, SSD, CD/DVD) |
490
+ | | [0].uuid | X | | X | X | | UUID |
491
+ | | [0].label | X | | X | X | | label |
492
+ | | [0].model | X | | X | | | model |
493
+ | | [0].serial | X | | | X | | serial |
494
+ | | [0].removable | X | | X | X | | serial |
495
+ | | [0].protocol | X | | X | | | protocol (SATA, PCI-Express, ...) |
496
+ | | [0].group | X | | | | | Raid group member (e.g. md1) |
497
+ | | [0].device | X | | X | X | | physical device mapped to (e.g. /dev/sda) |
498
+ | si.disksIO(cb) | {...} | X | | X | | | current transfer stats |
499
+ | | rIO | X | | X | | | read IOs on all mounted drives |
500
+ | | wIO | X | | X | | | write IOs on all mounted drives |
501
+ | | tIO | X | | X | | | write IOs on all mounted drives |
502
+ | | rIO_sec | X | | X | | | read IO per sec (* see notes) |
503
+ | | wIO_sec | X | | X | | | write IO per sec (* see notes) |
504
+ | | tIO_sec | X | | X | | | total IO per sec (* see notes) |
505
+ | | rWaitTime | X | | | | | read IO request time (* see notes) |
506
+ | | wWaitTime | X | | | | | write IO request time (* see notes) |
507
+ | | tWaitTime | X | | | | | total IO request time (* see notes) |
508
+ | | rWaitPercent | X | | | | | read IO request time percent (* see notes) |
509
+ | | wWaitPercent | X | | | | | write IO request time percent (* see notes) |
510
+ | | tWaitPercent | X | | | | | total IO request time percent (* see notes) |
511
+ | | ms | X | | X | | | interval length (for per second values) |
512
+ | si.fsSize(drive, cb) | [{...}] | X | X | X | X | | returns array of mounted file systems<br>drive param is optional |
513
+ | | [0].fs | X | X | X | X | | name of file system |
514
+ | | [0].type | X | X | X | X | | type of file system |
515
+ | | [0].size | X | X | X | X | | sizes in bytes |
516
+ | | [0].used | X | X | X | X | | used in bytes |
517
+ | | [0].available | X | X | X | X | | used in bytes |
518
+ | | [0].use | X | X | X | X | | used in % |
519
+ | | [0].mount | X | X | X | X | | mount point |
520
+ | | [0].rw | X | X | X | X | | read and write (false if read only) |
521
+ | si.fsOpenFiles(cb) | {...} | X | X | X | | | count max/allocated file descriptors |
522
+ | | max | X | X | X | | | max file descriptors |
523
+ | | allocated | X | X | X | | | current open files count |
524
+ | | available | X | X | X | | | count available |
525
+ | si.fsStats(cb) | {...} | X | | X | | | current transfer stats |
526
+ | | rx | X | | X | | | bytes read since startup |
527
+ | | wx | X | | X | | | bytes written since startup |
528
+ | | tx | X | | X | | | total bytes read + written since startup |
529
+ | | rx_sec | X | | X | | | bytes read / second (* see notes) |
530
+ | | wx_sec | X | | X | | | bytes written / second (* see notes) |
531
+ | | tx_sec | X | | X | | | total bytes reads + written / second |
532
+ | | ms | X | | X | | | interval length (for per second values) |
533
+
534
+ #### 10. USB
535
+
536
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
537
+ | ---------- | ---------------- | ----- | --- | --- | --- | --- | ------------------------ |
538
+ | si.usb(cb) | [{...}] | X | X | X | X | | get detected USB devices |
539
+ | | [0].bus | X | | | | | USB bus |
540
+ | | [0].deviceId | X | | | | | bus device id |
541
+ | | [0].id | X | | X | X | | internal id |
542
+ | | [0].name | X | | X | X | | name |
543
+ | | [0].type | X | | X | X | | name |
544
+ | | [0].removable | | | X | | | is removable |
545
+ | | [0].vendor | X | | X | | | vendor |
546
+ | | [0].manufacturer | X | | X | X | | manufacturer |
547
+ | | [0].maxPower | X | | | | | max power |
548
+ | | [0].default | X | | X | X | | is default printer |
549
+ | | [0].serialNumber | X | | X | | | serial number |
550
+
551
+ #### 11. Printer
552
+
553
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
554
+ | -------------- | ------------- | ----- | --- | --- | --- | --- | -------------------------- |
555
+ | si.printer(cb) | [{...}] | X | X | X | X | | get printer information |
556
+ | | [0].id | X | | X | X | | internal id |
557
+ | | [0].name | X | | X | X | | name |
558
+ | | [0].model | X | | X | X | | model |
559
+ | | [0].uri | X | | X | | | printer URI |
560
+ | | [0].uuid | X | | | | | printer UUID |
561
+ | | [0].status | X | | X | X | | printer status (e.g. idle) |
562
+ | | [0].local | X | | X | X | | is local printer |
563
+ | | [0].default | | | X | X | | is default printer |
564
+ | | [0].shared | X | | X | X | | is shared printer |
565
+
566
+ #### 12. Audio
567
+
568
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
569
+ | ------------ | ----------------- | ----- | --- | --- | --- | --- | ------------------------------------- |
570
+ | si.audio(cb) | [{...}] | X | X | X | X | | get printer information |
571
+ | | [0].id | X | | X | X | | internal id |
572
+ | | [0].name | X | | X | X | | name |
573
+ | | [0].manufacturer | X | | X | X | | manufacturer |
574
+ | | [0].revision | X | | | | | revision |
575
+ | | [0].driver | X | | | | | driver |
576
+ | | [0].default | | | X | X | | is default |
577
+ | | [0].channel | X | | X | | | channel e.g. USB, HDMI, ... |
578
+ | | [0].type | X | | X | X | | type e.g. Speaker |
579
+ | | [0].in | | | X | X | | is input channel |
580
+ | | [0].out | | | X | X | | is output channel |
581
+ | | [0].interfaceType | X | | X | X | | interface type (PCIe, USB, HDMI, ...) |
582
+ | | [0].status | X | | X | X | | printer status (e.g. idle) |
583
+
584
+ #### 13. Network related functions
585
+
586
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
587
+ | ------------------------------ | ------------------ | ----- | --- | --- | --- | --- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
588
+ | si.networkInterfaces(cb) | [{...}] | X | X | X | X | X | array of network interfaces<br>With the 'default' parameter it returns<br>only the default interface |
589
+ | | [0].iface | X | X | X | X | X | interface |
590
+ | | [0].ifaceName | X | X | X | X | X | interface name (differs on Windows) |
591
+ | | [0].default | X | X | X | X | X | true if this is the default interface |
592
+ | | [0].ip4 | X | X | X | X | X | ip4 address |
593
+ | | [0].ip4subnet | X | X | X | X | X | ip4 subnet mask |
594
+ | | [0].ip6 | X | X | X | X | X | ip6 address |
595
+ | | [0].ip6subnet | X | X | X | X | X | ip6 subnet mask |
596
+ | | [0].mac | X | X | X | X | X | MAC address |
597
+ | | [0].internal | X | X | X | X | X | true if internal interface |
598
+ | | [0].virtual | X | X | X | X | X | true if virtual interface |
599
+ | | [0].operstate | X | | X | X | | up / down |
600
+ | | [0].type | X | | X | X | | wireless / wired |
601
+ | | [0].duplex | X | | X | | | duplex |
602
+ | | [0].mtu | X | | X | | | maximum transmission unit |
603
+ | | [0].speed | X | | X | X | | speed in MBit / s |
604
+ | | [0].dhcp | X | | X | X | | IP address obtained by DHCP |
605
+ | | [0].dnsSuffix | X | | | X | | DNS suffix |
606
+ | | [0].ieee8021xAuth | X | | | X | | IEEE 802.1x auth |
607
+ | | [0].ieee8021xState | X | | | X | | IEEE 802.1x state |
608
+ | | [0].carrierChanges | X | | | | | # changes up/down |
609
+ | si.networkInterfaceDefault(cb) | : string | X | X | X | X | X | get name of default network interface |
610
+ | si.networkGatewayDefault(cb) | : string | X | X | X | X | X | get default network gateway |
611
+ | si.networkStats(ifaces,cb) | [{...}] | X | X | X | X | | current network stats of given interfaces<br>iface list: space or comma separated<br>iface parameter is optional<br>defaults to first external network interface,<br />Pass '*' for all interfaces |
612
+ | | [0].iface | X | X | X | X | | interface |
613
+ | | [0].operstate | X | X | X | X | | up / down |
614
+ | | [0].rx_bytes | X | X | X | X | | received bytes overall |
615
+ | | [0].rx_dropped | X | X | X | X | | received dropped overall |
616
+ | | [0].rx_errors | X | X | X | X | | received errors overall |
617
+ | | [0].tx_bytes | X | X | X | X | | transferred bytes overall |
618
+ | | [0].tx_dropped | X | X | X | X | | transferred dropped overall |
619
+ | | [0].tx_errors | X | X | X | X | | transferred errors overall |
620
+ | | [0].rx_sec | X | X | X | X | | received bytes / second (* see notes) |
621
+ | | [0].tx_sec | X | X | X | X | | transferred bytes per second (* see notes) |
622
+ | | [0].ms | X | X | X | X | | interval length (for per second values) |
623
+ | si.networkConnections(cb) | [{...}] | X | X | X | X | | current network network connections<br>returns an array of all connections |
624
+ | | [0].protocol | X | X | X | X | | tcp or udp |
625
+ | | [0].localAddress | X | X | X | X | | local address |
626
+ | | [0].localPort | X | X | X | X | | local port |
627
+ | | [0].peerAddress | X | X | X | X | | peer address |
628
+ | | [0].peerPort | X | X | X | X | | peer port |
629
+ | | [0].state | X | X | X | X | | like ESTABLISHED, TIME_WAIT, ... |
630
+ | | [0].pid | X | X | X | X | | process ID |
631
+ | | [0].process | X | X | X | | | process name |
632
+ | si.inetChecksite(url, cb) | {...} | X | X | X | X | X | response-time (ms) to fetch given URL |
633
+ | | url | X | X | X | X | X | given url |
634
+ | | ok | X | X | X | X | X | status code OK (2xx, 3xx) |
635
+ | | status | X | X | X | X | X | status code |
636
+ | | ms | X | X | X | X | X | response time in ms |
637
+ | si.inetLatency(host, cb) | : number | X | X | X | X | X | response-time (ms) to external resource<br>host parameter is optional (default 8.8.8.8) |
638
+
639
+ #### 14. Wifi
640
+
641
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
642
+ | ---------------------- | --------------- | ----- | --- | --- | --- | --- | --------------------------------------------- |
643
+ | si.wifiNetworks(cb) | [{...}] | X | | X | X | | array of available wifi networks |
644
+ | | [0].ssid | X | | X | X | | Wifi network SSID |
645
+ | | [0].bssid | X | | X | X | | BSSID (mac) |
646
+ | | [0].mode | X | | | | | mode |
647
+ | | [0].channel | X | | X | X | | channel |
648
+ | | [0].frequency | X | | X | X | | frequency in MHz |
649
+ | | [0].signalLevel | X | | X | X | | signal level in dB |
650
+ | | [0].quality | X | | X | X | | quality in % |
651
+ | | [0].security | X | | X | X | | array e.g. WPA, WPA-2 |
652
+ | | [0].wpaFlags | X | | X | X | | array of WPA flags |
653
+ | | [0].rsnFlags | X | | | | | array of RDN flags |
654
+ | si.wifiInterfaces(cb) | [{...}] | X | | X | X | | array of detected wifi interfaces |
655
+ | | [0].id | X | | X | X | | ID |
656
+ | | [0].iface | X | | X | X | | interface |
657
+ | | [0].model | X | | X | X | | model |
658
+ | | [0].vendor | X | | X | X | | vendor |
659
+ | | [0].mac | X | | X | X | | MAC address |
660
+ | si.wifiConnections(cb) | [{...}] | X | | X | X | | array of active wifi connections |
661
+ | | [0].id | X | | X | X | | ID |
662
+ | | [0].iface | X | | X | X | | interface |
663
+ | | [0].model | X | | X | X | | model |
664
+ | | [0].ssid | X | | X | X | | SSID |
665
+ | | [0].bssid | X | | (X) | X | | BSSID (mac) - macOS only on older os versions |
666
+ | | [0].channel | X | | X | X | | channel |
667
+ | | [0].frequency | X | | X | X | | frequency in MHz |
668
+ | | [0].type | X | | X | X | | e.g. 802.11 |
669
+ | | [0].security | X | | X | X | | array e.g. WPA, WPA-2 |
670
+ | | [0].signalLevel | X | | X | X | | signal level in dB |
671
+ | | [0].quality | X | | X | X | | quality in % |
672
+ | | [0].txRate | X | | X | X | | transfer rate MBit/s |
673
+
674
+ #### 15. Bluetooth
675
+
676
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
677
+ | ----------------------- | ------------------ | ----- | --- | --- | --- | --- | ------------------------ |
678
+ | si.bluetoothDevices(cb) | [{...}] | X | | X | X | | ... |
679
+ | | [0].device | | | X | | | device name |
680
+ | | [0].name | X | | X | X | | name |
681
+ | | [0].macDevice | X | | X | | | MAC address device |
682
+ | | [0].macHost | X | | X | | | MAC address host |
683
+ | | [0].batteryPercent | | | X | | | battery level percent |
684
+ | | [0].manufacturer | | | X | X | | manufacturer |
685
+ | | [0].type | X | | X | X | | type of bluetooth device |
686
+ | | [0].connected | X | | X | | | is connected |
687
+
688
+ #### 16. Docker
689
+
690
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
691
+ | ----------------------------------- | ------------------- | ----------------------------------- | --- | --- | --- | --- | ------------------------------------------------------------------------------------------------------------- |
692
+ | si.dockerInfo(cb) | {...} | X | X | X | X | X | returns general docker info |
693
+ | | id | X | X | X | X | X | Docker ID |
694
+ | | containers | X | X | X | X | X | number of containers |
695
+ | | containersRunning | X | X | X | X | X | number of running containers |
696
+ | | containersPaused | X | X | X | X | X | number of paused containers |
697
+ | | containersStopped | X | X | X | X | X | number of stopped containers |
698
+ | | images | X | X | X | X | X | number of images |
699
+ | | driver | X | X | X | X | X | driver (e.g. 'devicemapper', 'overlay2') |
700
+ | | memoryLimit | X | X | X | X | X | has memory limit |
701
+ | | swapLimit | X | X | X | X | X | has swap limit |
702
+ | | kernelMemory | X | X | X | X | X | has kernel memory |
703
+ | | cpuCfsPeriod | X | X | X | X | X | has CpuCfsPeriod |
704
+ | | cpuCfsQuota | X | X | X | X | X | has CpuCfsQuota |
705
+ | | cpuShares | X | X | X | X | X | has CPUShares |
706
+ | | cpuSet | X | X | X | X | X | has CPUShares |
707
+ | | ipv4Forwarding | X | X | X | X | X | has IPv4Forwarding |
708
+ | | bridgeNfIptables | X | X | X | X | X | has BridgeNfIptables |
709
+ | | bridgeNfIp6tables | X | X | X | X | X | has BridgeNfIp6tables |
710
+ | | debug | X | X | X | X | X | Debug on |
711
+ | | nfd | X | X | X | X | X | named data networking forwarding daemon |
712
+ | | oomKillDisable | X | X | X | X | X | out-of-memory kill disabled |
713
+ | | ngoroutines | X | X | X | X | X | number NGoroutines |
714
+ | | systemTime | X | X | X | X | X | docker SystemTime |
715
+ | | loggingDriver | X | X | X | X | X | logging driver e.g. 'json-file' |
716
+ | | cgroupDriver | X | X | X | X | X | cgroup driver e.g. 'cgroupfs' |
717
+ | | nEventsListener | X | X | X | X | X | number NEventsListeners |
718
+ | | kernelVersion | X | X | X | X | X | docker kernel version |
719
+ | | operatingSystem | X | X | X | X | X | docker OS e.g. 'Docker for Mac' |
720
+ | | osType | X | X | X | X | X | OSType e.g. 'linux' |
721
+ | | architecture | X | X | X | X | X | architecture e.g. x86_64 |
722
+ | | ncpu | X | X | X | X | X | number of CPUs |
723
+ | | memTotal | X | X | X | X | X | memory total |
724
+ | | dockerRootDir | X | X | X | X | X | docker root directory |
725
+ | | httpProxy | X | X | X | X | X | http proxy |
726
+ | | httpsProxy | X | X | X | X | X | https proxy |
727
+ | | noProxy | X | X | X | X | X | NoProxy |
728
+ | | name | X | X | X | X | X | Name |
729
+ | | labels | X | X | X | X | X | array of labels |
730
+ | | experimentalBuild | X | X | X | X | X | is experimental build |
731
+ | | serverVersion | X | X | X | X | X | server version |
732
+ | | clusterStore | X | X | X | X | X | cluster store |
733
+ | | clusterAdvertise | X | X | X | X | X | cluster advertise |
734
+ | | defaultRuntime | X | X | X | X | X | default runtime e.g. 'runc' |
735
+ | | liveRestoreEnabled | X | X | X | X | X | live store enabled |
736
+ | | isolation | X | X | X | X | X | isolation |
737
+ | | initBinary | X | X | X | X | X | init binary |
738
+ | | productLicense | X | X | X | X | X | product license |
739
+ | si.dockerImages(all, cb) | [{...}] | X | X | X | X | X | returns array of top level/all docker images |
740
+ | | [0].id | X | X | X | X | X | image ID |
741
+ | | [0].container | X | X | X | X | X | container ID |
742
+ | | [0].comment | X | X | X | X | X | comment |
743
+ | | [0].os | X | X | X | X | X | OS |
744
+ | | [0].architecture | X | X | X | X | X | architecture |
745
+ | | [0].parent | X | X | X | X | X | parent ID |
746
+ | | [0].dockerVersion | X | X | X | X | X | docker version |
747
+ | | [0].size | X | X | X | X | X | image size |
748
+ | | [0].sharedSize | X | X | X | X | X | shared size |
749
+ | | [0].virtualSize | X | X | X | X | X | virtual size |
750
+ | | [0].author | X | X | X | X | X | author |
751
+ | | [0].created | X | X | X | X | X | created date / time |
752
+ | | [0].containerConfig | X | X | X | X | X | container config object |
753
+ | | [0].graphDriver | X | X | X | X | X | graph driver object |
754
+ | | [0].repoDigests | X | X | X | X | X | repo digests array |
755
+ | | [0].repoTags | X | X | X | X | X | repo tags array |
756
+ | | [0].config | X | X | X | X | X | config object |
757
+ | | [0].rootFS | X | X | X | X | X | root fs object |
758
+ | si.dockerContainers(all, cb) | [{...}] | X | X | X | X | X | returns array of active/all docker containers |
759
+ | | [0].id | X | X | X | X | X | ID of container |
760
+ | | [0].name | X | X | X | X | X | name of container |
761
+ | | [0].image | X | X | X | X | X | name of image |
762
+ | | [0].imageID | X | X | X | X | X | ID of image |
763
+ | | [0].command | X | X | X | X | X | command |
764
+ | | [0].created | X | X | X | X | X | creation time (unix) |
765
+ | | [0].started | X | X | X | X | X | creation time (unix) |
766
+ | | [0].finished | X | X | X | X | X | creation time (unix) |
767
+ | | [0].createdAt | X | X | X | X | X | creation date time string |
768
+ | | [0].startedAt | X | X | X | X | X | creation date time string |
769
+ | | [0].finishedAt | X | X | X | X | X | creation date time string |
770
+ | | [0].state | X | X | X | X | X | created, running, exited |
771
+ | | [0].ports | X | X | X | X | X | array of ports |
772
+ | | [0].mounts | X | X | X | X | X | array of mounts |
773
+ | si.dockerContainerStats(ids, cb) | [{...}] | X | X | X | X | X | statistics for specific containers<br>container IDs: space or comma separated,<br>pass '*' for all containers |
774
+ | | [0].id | X | X | X | X | X | Container ID |
775
+ | | [0].memUsage | X | X | X | X | X | memory usage in bytes |
776
+ | | [0].memLimit | X | X | X | X | X | memory limit (max mem) in bytes |
777
+ | | [0].memPercent | X | X | X | X | X | memory usage in percent |
778
+ | | [0].cpuPercent | X | X | X | X | X | cpu usage in percent |
779
+ | | [0].pids | X | X | X | X | X | number of processes |
780
+ | | [0].netIO.rx | X | X | X | X | X | received bytes via network |
781
+ | | [0].netIO.wx | X | X | X | X | X | sent bytes via network |
782
+ | | [0].blockIO.r | X | X | X | X | X | bytes read from BlockIO |
783
+ | | [0].blockIO.w | X | X | X | X | X | bytes written to BlockIO |
784
+ | | [0].cpuStats | X | X | X | X | X | detailed cpu stats |
785
+ | | [0].percpuStats | X | X | X | X | X | detailed per cpu stats |
786
+ | | [0].memoryStats | X | X | X | X | X | detailed memory stats |
787
+ | | [0].networks | X | X | X | X | X | detailed network stats per interface |
788
+ | si.dockerContainerProcesses(id, cb) | [{...}] | X | X | X | X | X | array of processes inside a container |
789
+ | | [0].pidHost | X | X | X | X | X | process ID (host) |
790
+ | | [0].ppid | X | X | X | X | X | parent process ID |
791
+ | | [0].pgid | X | X | X | X | X | process group ID |
792
+ | | [0].user | X | X | X | X | X | effective user name |
793
+ | | [0].ruser | X | X | X | X | X | real user name |
794
+ | | [0].group | X | X | X | X | X | effective group name |
795
+ | | [0].rgroup | X | X | X | X | X | real group name |
796
+ | | [0].stat | X | X | X | X | X | process state |
797
+ | | [0].time | X | X | X | X | X | accumulated CPU time |
798
+ | | [0].elapsed | X | X | X | X | X | elapsed running time |
799
+ | | [0].nice | X | X | X | X | X | nice value |
800
+ | | [0].rss | X | X | X | X | X | resident set size |
801
+ | | [0].vsz | X | X | X | X | X | virtual size in Kbytes |
802
+ | | [0].command | X | X | X | X | X | command and arguments |
803
+ | si.dockerVolumes(cb) | [{...}] | returns array of all docker volumes |
804
+ | | [0].name | X | X | X | X | X | volume name |
805
+ | | [0].driver | X | X | X | X | X | driver |
806
+ | | [0].labels | X | X | X | X | X | labels object |
807
+ | | [0].mountpoint | X | X | X | X | X | mountpoint |
808
+ | | [0].options | X | X | X | X | X | options |
809
+ | | [0].scope | X | X | X | X | X | scope |
810
+ | | [0].created | X | X | X | X | X | created at |
811
+ | si.dockerAll(cb) | {...} | X | X | X | X | X | list of all containers including their stats<br>and processes in one single array |
812
+
813
+ #### 17. Virtual Box
814
+
815
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
816
+ | --------------- | -------------------- | ----- | --- | --- | --- | --- | -------------------------------------- |
817
+ | si.vboxInfo(cb) | [{...}] | X | X | X | X | X | returns array general virtual box info |
818
+ | | [0].id | X | X | X | X | X | virtual box ID |
819
+ | | [0].name | X | X | X | X | X | name |
820
+ | | [0].running | X | X | X | X | X | vbox is running |
821
+ | | [0].started | X | X | X | X | X | started date time |
822
+ | | [0].runningSince | X | X | X | X | X | running since (secs) |
823
+ | | [0].stopped | X | X | X | X | X | stopped date time |
824
+ | | [0].stoppedSince | X | X | X | X | X | stopped since (secs) |
825
+ | | [0].guestOS | X | X | X | X | X | Guest OS |
826
+ | | [0].hardwareUUID | X | X | X | X | X | Hardware UUID |
827
+ | | [0].memory | X | X | X | X | X | Memory in MB |
828
+ | | [0].vram | X | X | X | X | X | VRAM in MB |
829
+ | | [0].cpus | X | X | X | X | X | CPUs |
830
+ | | [0].cpuExepCap | X | X | X | X | X | CPU exec cap |
831
+ | | [0].cpuProfile | X | X | X | X | X | CPU profile |
832
+ | | [0].chipset | X | X | X | X | X | chipset |
833
+ | | [0].firmware | X | X | X | X | X | firmware |
834
+ | | [0].pageFusion | X | X | X | X | X | page fusion |
835
+ | | [0].configFile | X | X | X | X | X | config file |
836
+ | | [0].snapshotFolder | X | X | X | X | X | snapshot folder |
837
+ | | [0].logFolder | X | X | X | X | X | log folder path |
838
+ | | [0].hpet | X | X | X | X | X | HPET |
839
+ | | [0].pae | X | X | X | X | X | PAE |
840
+ | | [0].longMode | X | X | X | X | X | long mode |
841
+ | | [0].tripleFaultReset | X | X | X | X | X | triple fault reset |
842
+ | | [0].apic | X | X | X | X | X | APIC |
843
+ | | [0].x2Apic | X | X | X | X | X | X2APIC |
844
+ | | [0].acpi | X | X | X | X | X | ACPI |
845
+ | | [0].ioApic | X | X | X | X | X | IOAPIC |
846
+ | | [0].biosApicMode | X | X | X | X | X | BIOS APIC mode |
847
+ | | [0].bootMenuMode | X | X | X | X | X | boot menu Mode |
848
+ | | [0].bootDevice1 | X | X | X | X | X | bootDevice1 |
849
+ | | [0].bootDevice2 | X | X | X | X | X | bootDevice2 |
850
+ | | [0].bootDevice3 | X | X | X | X | X | bootDevice3 |
851
+ | | [0].bootDevice4 | X | X | X | X | X | bootDevice4 |
852
+ | | [0].timeOffset | X | X | X | X | X | time Offset |
853
+ | | [0].rtc | X | X | X | X | X | RTC |
854
+
855
+ #### 16. "Get All / Observe" - functions
856
+
857
+ | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
858
+ | ----------------------------------- | ------------- | ----- | --- | --- | --- | --- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
859
+ | si.getStaticData(cb) | {...} | X | X | X | X | X | all static data at once |
860
+ | si.getDynamicData(srv,iface,cb) | {...} | X | X | X | X | X | all dynamic data at once<br>Specify services and interfaces to monitor<br>Defaults to first external network interface<br>Pass "*" for ALL services (linux/win only)<br>Pass "*" for ALL network interfaces |
861
+ | si.getAllData(srv,iface,cb) | {...} | X | X | X | X | X | all data at once<br>Specify services and interfaces to monitor<br>Defaults to first external network interface<br>Pass "*" for ALL services (linux/win only)<br>Pass "*" for ALL network interfaces |
862
+ | si.get(valueObject,cb) | {...} | X | X | X | X | X | get partial system info data at once<br>In valueObject you can define<br>all values, you want to get back <br>(see documentation for details) |
863
+ | si.observe(valueObject,interval,cb) | - | X | X | X | X | X | Observe a defined value object<br>call callback on changes<br>polling interval in milliseconds |
864
+
865
+ ### cb: Asynchronous Function Calls (callback)
866
+
867
+ Remember: all functions (except `version` and `time`) are implemented as asynchronous functions! There are now three ways to consume them:
868
+
869
+ **Callback Style**
870
+
871
+ ```js
872
+ const si = require('systeminformation');
873
+
874
+ si.cpu(function(data) {
875
+ console.log('CPU Information:');
876
+ console.log('- manufacturer: ' + data.manufacturer);
877
+ console.log('- brand: ' + data.brand);
878
+ console.log('- speed: ' + data.speed);
879
+ console.log('- cores: ' + data.cores);
880
+ console.log('- physical cores: ' + data.physicalCores);
881
+ console.log('...');
882
+ })
883
+ ```
884
+
885
+ ### Promises
886
+
887
+ **Promises Style** is new in version 3.0.
888
+
889
+ When omitting callback parameter (cb), then you can use all function in a promise oriented way. All functions (except of `version` and `time`) are returning a promise, that you can consume:
890
+
891
+ ```js
892
+ const si = require('systeminformation');
893
+
894
+ si.cpu()
895
+ .then(data => {
896
+ console.log('CPU Information:');
897
+ console.log('- manufacturer: ' + data.manufacturer);
898
+ console.log('- brand: ' + data.brand);
899
+ console.log('- speed: ' + data.speed);
900
+ console.log('- cores: ' + data.cores);
901
+ console.log('- physical cores: ' + data.physicalCores);
902
+ console.log('...');
903
+ })
904
+ .catch(error => console.error(error));
905
+ ```
906
+
907
+ ### Async / Await
908
+
909
+ **Using async / await** (available since node v7.6)
910
+
911
+ Since node v7.6 you can also use the `async` / `await` pattern. The above example would then look like this:
912
+
913
+ ```js
914
+ const si = require('systeminformation');
915
+
916
+ async function cpuData() {
917
+ try {
918
+ const data = await si.cpu();
919
+ console.log('CPU Information:');
920
+ console.log('- manufacturer: ' + data.manufacturer);
921
+ console.log('- brand: ' + data.brand);
922
+ console.log('- speed: ' + data.speed);
923
+ console.log('- cores: ' + data.cores);
924
+ console.log('- physical cores: ' + data.physicalCores);
925
+ console.log('...');
926
+ } catch (e) {
927
+ console.log(e)
928
+ }
929
+ }
930
+ ```
931
+
932
+ ## Known Issues
933
+
934
+ #### macOS - Temperature Sensor
935
+
936
+ To be able to measure temperature on macOS I created a little additional package. Due to some difficulties
937
+ in NPM with `optionalDependencies` I unfortunately was getting unexpected warnings on other platforms.
938
+ So I decided to drop this optional dependency for macOS - so by default, you will not get correct values.
939
+
940
+ This additional package is now also supporting Apple Silicon M1/M2/M3 machines.
941
+
942
+ But if you need to detect macOS temperature just run the following additional
943
+ installation command:
944
+
945
+ ```bash
946
+ $ npm install osx-temperature-sensor --save
947
+ ```
948
+
949
+ `systeminformation` will then detect this additional library and return the temperature when calling systeminformations standard function `cpuTemperature()`
950
+
951
+ #### Windows Temperature, Battery, ...
952
+
953
+ `get-WmiObject` - which is used to determine temperature and battery sometimes needs to be run with admin
954
+ privileges. So if you do not get any values, try to run it again with according
955
+ privileges. If you still do not get any values, your system might not support this feature.
956
+ In some cases we also discovered that `get-WmiObject` returned incorrect temperature values.
957
+
958
+ #### Linux Temperature
959
+
960
+ In some cases you need to install the Linux `sensors` package to be able to measure temperature
961
+ e.g. on DEBIAN based systems by running `sudo apt-get install lm-sensors`
962
+
963
+ #### Linux S.M.A.R.T. Status
964
+
965
+ To be able to detect S.M.A.R.T. status on Linux you need to install `smartmontools`. On DEBIAN based Linux distributions you can install it by running `sudo apt-get install smartmontools`
966
+
967
+ #### Windows Encoding Issues
968
+ I now reimplemented all windows functions to avoid encoding problems (special chacarters). And as Windows 11 now dropped `wmic` support, I had to move completely to `powershell`. Be sure that powershell version 5+ is installed on your machine. On older Windows versions (7, 8) you might still see encoding problems due to the old powershell version.
969
+ ## *: Additional Notes
970
+
971
+ In `fsStats()`, `disksIO()` and `networkStats()` the results / sec. values (rx_sec, IOPS, ...) are calculated correctly beginning
972
+ with the second call of the function. It is determined by calculating the difference of transferred bytes / IOs
973
+ divided by the time between two calls of the function.
974
+
975
+ The first time you are calling one of these functions, you will get `null` for transfer rates. The second time, you should then get statistics based on the time between the two calls ...
976
+
977
+ So basically, if you e.g. need a value for network stats every second, your code should look like this:
978
+
979
+ ```js
980
+ const si = require('systeminformation');
981
+
982
+ setInterval(function() {
983
+ si.networkStats().then(data => {
984
+ console.log(data);
985
+ })
986
+ }, 1000)
987
+ ```
988
+
989
+ Beginning with the second call, you get network transfer values per second.
990
+
991
+ ## Finding new issues
992
+
993
+ I am happy to discuss any comments and suggestions. Please feel free to contact me if you see any possibility of improvement!
994
+
995
+
996
+ ## Comments
997
+
998
+ If you have ideas or comments, please do not hesitate to contact me.
999
+
1000
+
1001
+ Happy monitoring!
1002
+
1003
+ Sincerely,
1004
+
1005
+ Sebastian Hildebrandt, [+innovations](http://www.plus-innovations.com)
1006
+
1007
+ ## Credits
1008
+
1009
+ Written by Sebastian Hildebrandt [sebhildebrandt](https://github.com/sebhildebrandt)
1010
+
1011
+ #### Contributors
1012
+
1013
+ - Guillaume Legrain [glegrain](https://github.com/glegrain)
1014
+ - Riccardo Novaglia [richy24](https://github.com/richy24)
1015
+ - Quentin Busuttil [Buzut](https://github.com/Buzut)
1016
+ - lapsio [lapsio](https://github.com/lapsio)
1017
+ - csy [csy](https://github.com/csy1983)
1018
+ - Tiago Roldão [tiagoroldao](https://github.com/tiagoroldao)
1019
+ - dragonjet [dragonjet](https://github.com/dragonjet)
1020
+ - Adam Reis [adamreisnz](https://github.com/adamreisnz)
1021
+ - Jimi M [ItsJimi](https://github.com/ItsJimi)
1022
+ - Git² [GitSquared](https://github.com/GitSquared)
1023
+ - weiyin [weiyin](https://github.com/weiyin)
1024
+ - Jorai Rijsdijk [Erackron](https://github.com/Erackron)
1025
+ - Rasmus Porsager [porsager](https://github.com/porsager)
1026
+ - Nathan Patten [nrpatten](https://github.com/nrpatten)
1027
+ - Juan Campuzano [juancampuzano](https://github.com/juancampuzano)
1028
+ - Ricardo Polo [ricardopolo](https://github.com/ricardopolo)
1029
+ - Miłosz Dźwigała [mily20001](https://github.com/mily20001)
1030
+ - cconley717 [cconley717](https://github.com/cconley717)
1031
+ - Maria Camila Cubides [MariaCamilaCubides](https://github.com/MariaCamilaCubides)
1032
+ - Aleksander Krasnicki [plakak](https://github.com/plakak)
1033
+ - Alexis Tyler [OmgImAlexis](https://github.com/OmgImAlexis)
1034
+ - Simon Smith [si458](https://github.com/si458)
1035
+
1036
+ OSX Temperature: credits here are going to:
1037
+
1038
+ - Frank Stock [pcafstockf](https://github.com/pcafstockf) - for his work on [smc-code][smc-code-url]
1039
+
1040
+ ## Copyright Information
1041
+
1042
+ Linux is a registered trademark of Linus Torvalds. Apple, macOS, OS X are registered trademarks of Apple Inc.,
1043
+ Windows is a registered trademark of Microsoft Corporation. Node.js is a trademark of Joyent Inc.,
1044
+ Intel is a trademark of Intel Corporation, AMD is a trademark of Advanced Micro Devices Inc.,
1045
+ Raspberry Pi is a trademark of the Raspberry Pi Foundation, Debian is a trademark owned by Software in the Public Interest, Inc.,
1046
+ Ubuntu is a trademark of Canonical Ltd., FreeBSD is a registered trademark of The FreeBSD Foundation,
1047
+ NetBSD is a registered trademark of The NetBSD Foundation, Docker is a trademark of Docker, Inc., Sun,
1048
+ Solaris, OpenSolaris and registered trademarks of Sun Microsystems, VMware is a trademark of VMware Inc,
1049
+ Virtual Box is a trademark of Oracle Corporation, Xen is a registered trademark of Xen Project,
1050
+ QEMU is a trademark of Fabrice Bellard, bochs is a trademark of The Bochs Project, USB and USB Logo
1051
+ are trademarks of USB Implementation Forum, Bluetooth and Bluetooth Logo are trademarks of Bluetooth SIG,
1052
+ Android is a trademark of Google LLC, Parallels is a trademarks of Parallels International GmbH.
1053
+
1054
+ All other trademarks are the property of their respective owners.
1055
+
1056
+ ## License [![MIT license][license-img]][license-url]
1057
+
1058
+ >The [`MIT`][license-url] License (MIT)
1059
+ >
1060
+ >Copyright &copy; 2014-2024 Sebastian Hildebrandt, [+innovations](http://www.plus-innovations.com).
1061
+ >
1062
+ >Permission is hereby granted, free of charge, to any person obtaining a copy
1063
+ >of this software and associated documentation files (the "Software"), to deal
1064
+ >in the Software without restriction, including without limitation the rights
1065
+ >to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1066
+ >copies of the Software, and to permit persons to whom the Software is
1067
+ >furnished to do so, subject to the following conditions:
1068
+ >
1069
+ >The above copyright notice and this permission notice shall be included in
1070
+ >all copies or substantial portions of the Software.
1071
+ >
1072
+ >THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1073
+ >IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1074
+ >FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1075
+ >AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1076
+ >LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1077
+ >OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1078
+ >THE SOFTWARE.
1079
+ >
1080
+ >Further details see [LICENSE](LICENSE) file.
1081
+
1082
+
1083
+ [npm-image]: https://img.shields.io/npm/v/systeminformation.svg?style=flat-square
1084
+ [npm-url]: https://npmjs.org/package/systeminformation
1085
+ [downloads-image]: https://img.shields.io/npm/dm/systeminformation.svg?style=flat-square
1086
+ [downloads-url]: https://npmjs.org/package/systeminformation
1087
+
1088
+ [sponsor-badge]: https://img.shields.io/badge/Support-Buy%20me%20a%20coffee-brightgreen?style=flat-square
1089
+ [sponsor-url]: https://www.buymeacoffee.com/systeminfo
1090
+
1091
+ [license-url]: https://github.com/sebhildebrandt/systeminformation/blob/master/LICENSE
1092
+ [license-img]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
1093
+ [npmjs-license]: https://img.shields.io/npm/l/systeminformation.svg?style=flat-square
1094
+ [changelog-url]: https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md
1095
+ [changes5-url]: https://systeminformation.io/changes.html
1096
+ [caretaker-url]: https://github.com/sebhildebrandt
1097
+ [caretaker-image]: https://img.shields.io/badge/caretaker-sebhildebrandt-blue.svg?style=flat-square
1098
+
1099
+ [nodejs-url]: https://nodejs.org/en/
1100
+ [docker-url]: https://www.docker.com/
1101
+ [systeminformation-url]: https://systeminformation.io
1102
+
1103
+ [daviddm-img]: https://img.shields.io/david/sebhildebrandt/systeminformation.svg?style=flat-square
1104
+ [daviddm-url]: https://david-dm.org/sebhildebrandt/systeminformation
1105
+
1106
+ [issues-img]: https://img.shields.io/github/issues/sebhildebrandt/systeminformation.svg?style=flat-square
1107
+ [issues-url]: https://github.com/sebhildebrandt/systeminformation/issues
1108
+ [closed-issues-img]: https://img.shields.io/github/issues-closed-raw/sebhildebrandt/systeminformation.svg?style=flat-square&color=brightgreen
1109
+ [closed-issues-url]: https://github.com/sebhildebrandt/systeminformation/issues?q=is%3Aissue+is%3Aclosed
1110
+
1111
+ [new-issue]: https://github.com/sebhildebrandt/systeminformation/issues/new/choose
1112
+
1113
+ [mmon-npm-url]: https://npmjs.org/package/mmon
1114
+ [mmon-github-url]: https://github.com/sebhildebrandt/mmon
1115
+
1116
+ [smc-code-url]: https://github.com/pcafstockf/smc-reader