linux_stat 1.2.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c84445d23c56692a85aa620d8529099e4466721d004218ae33c8ae28abdb0980
4
- data.tar.gz: e69b74b0b906a8ed3c479c73056ffbf1a2c904deab896ea0fa99fccdc992af9d
3
+ metadata.gz: 7aac48f43d2e992c880104a6a4999033015864cba6b29da049551865c1b88d0a
4
+ data.tar.gz: ba6032aedb266b20bdd77755f7e436420f6c00a8216d2a93d7b3b1be1400f68d
5
5
  SHA512:
6
- metadata.gz: 1b54691d6ed08d6de27e8040149c61174755dc28be706289228800f399d3b71b73ddbdc13e68bd87be1f78370964e7fecb6c0ad2d764f7d9660fbcebc0318b0b
7
- data.tar.gz: 91a45ff49fd6f633acc768fc23d03b6f10b0b47bb56db40a05568ad3ca43b29204fed27a233fc6da45bd3017ad4dc316a66488c71a3aaad78c7fc1a620f6c257
6
+ metadata.gz: 4a4c09eb48782bdcec010a9af8c4690c0def5d1c422449a693595272d9f5345216ac5c7c17225af2b8fcdfba371f2c68f8b2cd84791fd27ee5afe43041026de1
7
+ data.tar.gz: 536043d49a324a9d536acd473e5c6c7c0d581005ead2e56e73c791ffd570e5b1dff0f782cc9ff3f9cd1f336b9d24e1894313531228a69719f6c66df6a4e27148
data/README.md CHANGED
@@ -87,22 +87,22 @@ For ease of use, LinuxStat is also assigned to the LS constant.
87
87
 
88
88
  ### LinuxStat::BIOS
89
89
  ```
90
- # File: bios.rb | Line: 56
90
+ # File: bios.rb | Line: 58
91
91
  # Definition: def date
92
92
  LinuxStat::BIOS.date()
93
93
  => "04/10/2017"
94
94
 
95
- # File: bios.rb | Line: 10
95
+ # File: bios.rb | Line: 12
96
96
  # Definition: def model
97
97
  LinuxStat::BIOS.model()
98
98
  => "Inspiron 5567"
99
99
 
100
- # File: bios.rb | Line: 27
100
+ # File: bios.rb | Line: 29
101
101
  # Definition: def vendor
102
102
  LinuxStat::BIOS.vendor()
103
103
  => "Dell Inc."
104
104
 
105
- # File: bios.rb | Line: 42
105
+ # File: bios.rb | Line: 44
106
106
  # Definition: def version
107
107
  LinuxStat::BIOS.version()
108
108
  => "1.1.2"
@@ -111,417 +111,417 @@ LinuxStat::BIOS.version()
111
111
 
112
112
  ### LinuxStat::Battery
113
113
  ```
114
- # File: battery.rb | Line: 105
114
+ # File: battery.rb | Line: 107
115
115
  # Definition: def charge
116
116
  LinuxStat::Battery.charge()
117
117
  => 100.0
118
118
 
119
- # File: battery.rb | Line: 122
119
+ # File: battery.rb | Line: 124
120
120
  # Definition: def charge_full_design_wh
121
121
  LinuxStat::Battery.charge_full_design_wh()
122
122
  => 42.0
123
123
 
124
- # File: battery.rb | Line: 141
124
+ # File: battery.rb | Line: 143
125
125
  # Definition: def charge_full_wh
126
126
  LinuxStat::Battery.charge_full_wh()
127
127
  => 23.79
128
128
 
129
- # File: battery.rb | Line: 78
129
+ # File: battery.rb | Line: 80
130
130
  # Definition: def charging?
131
131
  LinuxStat::Battery.charging?()
132
132
  => true
133
133
 
134
- # File: battery.rb | Line: 184
134
+ # File: battery.rb | Line: 186
135
135
  # Definition: def devices_stat
136
136
  LinuxStat::Battery.devices_stat()
137
137
  => {:AC=>{:type=>"Mains", :online=>1}, :BAT0=>{:model=>"DELL CYMGM77", :manufacturer=>"Samsung SDI", :type=>"Battery", :status=>"Full", :capacity=>100, :voltage_min_design=>11.4, :charge_full_design=>3.684, :charge_full_design_wh=>42.0, :voltage_now=>12....
138
138
 
139
- # File: battery.rb | Line: 87
139
+ # File: battery.rb | Line: 89
140
140
  # Definition: def discharging?
141
141
  LinuxStat::Battery.discharging?()
142
142
  => false
143
143
 
144
- # File: battery.rb | Line: 96
144
+ # File: battery.rb | Line: 98
145
145
  # Definition: def full?
146
146
  LinuxStat::Battery.full?()
147
147
  => true
148
148
 
149
- # File: battery.rb | Line: 47
149
+ # File: battery.rb | Line: 49
150
150
  # Definition: def manufacturer
151
151
  LinuxStat::Battery.manufacturer()
152
152
  => "Samsung SDI"
153
153
 
154
- # File: battery.rb | Line: 36
154
+ # File: battery.rb | Line: 38
155
155
  # Definition: def model
156
156
  LinuxStat::Battery.model()
157
157
  => "DELL CYMGM77"
158
158
 
159
- # File: battery.rb | Line: 8
159
+ # File: battery.rb | Line: 10
160
160
  # Definition: def present?
161
161
  LinuxStat::Battery.present?()
162
162
  => true
163
163
 
164
- # File: battery.rb | Line: 16
164
+ # File: battery.rb | Line: 18
165
165
  # Definition: def stat
166
166
  LinuxStat::Battery.stat()
167
167
  => {:model=>"DELL CYMGM77", :manufacturer=>"Samsung SDI", :technology=>"Li-ion", :status=>"Full", :charge=>100.0, :charging=>true, :discharging=>false, :full=>true}
168
168
 
169
- # File: battery.rb | Line: 68
169
+ # File: battery.rb | Line: 70
170
170
  # Definition: def status
171
171
  LinuxStat::Battery.status()
172
172
  => "Full"
173
173
 
174
- # File: battery.rb | Line: 57
174
+ # File: battery.rb | Line: 59
175
175
  # Definition: def technology
176
176
  LinuxStat::Battery.technology()
177
177
  => "Li-ion"
178
178
 
179
- # File: battery.rb | Line: 160
179
+ # File: battery.rb | Line: 162
180
180
  # Definition: def voltage_now
181
181
  LinuxStat::Battery.voltage_now()
182
- => 12.625
182
+ => 12.568
183
183
 
184
184
  ```
185
185
 
186
186
  ### LinuxStat::CPU
187
187
  ```
188
- # File: cpu.rb | Line: 287
188
+ # File: cpu.rb | Line: 289
189
189
  # Definition: def available_governors
190
190
  LinuxStat::CPU.available_governors()
191
191
  => {"cpu0"=>["performance", "powersave"], "cpu1"=>["performance", "powersave"], "cpu2"=>["performance", "powersave"], "cpu3"=>["performance", "powersave"]}
192
192
 
193
- # File: cpu.rb | Line: 86
193
+ # File: cpu.rb | Line: 88
194
194
  # Definition: def count
195
195
  LinuxStat::CPU.count()
196
196
  => 4
197
197
 
198
- # File: cpu.rb | Line: 103
198
+ # File: cpu.rb | Line: 105
199
199
  # Definition: def count_online
200
200
  LinuxStat::CPU.count_online()
201
201
  => 4
202
202
 
203
- # File: cpu.rb | Line: 197
203
+ # File: cpu.rb | Line: 199
204
204
  # Definition: def cur_freq
205
205
  LinuxStat::CPU.cur_freq()
206
- => {"cpu0"=>1999999, "cpu1"=>2000045, "cpu2"=>2000144, "cpu3"=>2000034}
206
+ => {"cpu0"=>2000039, "cpu1"=>1974506, "cpu2"=>2000003, "cpu3"=>2000119}
207
207
 
208
- # File: cpu.rb | Line: 265
208
+ # File: cpu.rb | Line: 267
209
209
  # Definition: def governor
210
210
  LinuxStat::CPU.governor()
211
211
  => {"cpu0"=>"performance", "cpu1"=>"performance", "cpu2"=>"performance", "cpu3"=>"performance"}
212
212
 
213
- # File: cpu.rb | Line: 241
213
+ # File: cpu.rb | Line: 243
214
214
  # Definition: def max_freq
215
215
  LinuxStat::CPU.max_freq()
216
216
  => {"cpu0"=>2000000, "cpu1"=>2000000, "cpu2"=>2000000, "cpu3"=>2000000}
217
217
 
218
- # File: cpu.rb | Line: 219
218
+ # File: cpu.rb | Line: 221
219
219
  # Definition: def min_freq
220
220
  LinuxStat::CPU.min_freq()
221
221
  => {"cpu0"=>2000000, "cpu1"=>2000000, "cpu2"=>2000000, "cpu3"=>2000000}
222
222
 
223
- # File: cpu.rb | Line: 184
223
+ # File: cpu.rb | Line: 186
224
224
  # Definition: def model
225
225
  LinuxStat::CPU.model()
226
226
  => "Intel(R) Core(TM) i3-6006U CPU @ 2.00GHz"
227
227
 
228
- # File: cpu.rb | Line: 163
228
+ # File: cpu.rb | Line: 165
229
229
  # Definition: def offline
230
230
  LinuxStat::CPU.offline()
231
231
  => []
232
232
 
233
- # File: cpu.rb | Line: 132
233
+ # File: cpu.rb | Line: 134
234
234
  # Definition: def online
235
235
  LinuxStat::CPU.online()
236
236
  => [0, 1, 2, 3]
237
237
 
238
- # File: cpu.rb | Line: 23
238
+ # File: cpu.rb | Line: 25
239
239
  # Definition: def stat(sleep = ticks_to_ms_t5)
240
240
  LinuxStat::CPU.stat(sleep)
241
- => {0=>10.0, 1=>0.0, 2=>0.0, 3=>16.67, 4=>0.0}
241
+ => {0=>10.0, 1=>20.0, 2=>0.0, 3=>0.0, 4=>0.0}
242
242
 
243
- # File: cpu.rb | Line: 63
243
+ # File: cpu.rb | Line: 65
244
244
  # Definition: def total_usage(sleep = ticks_to_ms_t5)
245
245
  LinuxStat::CPU.total_usage(sleep)
246
- => 19.05
246
+ => 10.53
247
247
 
248
- # File: cpu.rb | Line: 63
248
+ # File: cpu.rb | Line: 65
249
249
  # Definition: def total_usage(sleep = ticks_to_ms_t5)
250
250
  LinuxStat::CPU.usage(sleep)
251
251
  => 5.26
252
252
 
253
- # File: cpu.rb | Line: 23
253
+ # File: cpu.rb | Line: 25
254
254
  # Definition: def stat(sleep = ticks_to_ms_t5)
255
255
  LinuxStat::CPU.usages(sleep)
256
- => {0=>5.26, 1=>0.0, 2=>0.0, 3=>33.33, 4=>20.0}
256
+ => {0=>19.05, 1=>16.67, 2=>20.0, 3=>16.67, 4=>20.0}
257
257
 
258
258
  ```
259
259
 
260
260
  ### LinuxStat::FS
261
261
  ```
262
262
  LinuxStat::FS.stat(arg = "/")
263
- => {:block_size=>4096, :fragment_size=>4096, :blocks=>29292283, :block_free=>10846968, :block_avail_unpriv=>10846968, :inodes=>58612160, :free_inodes=>56825184, :filesystem_id=>2050, :mount_flags=>1024, :max_filename_length=>255}
263
+ => {:block_size=>4096, :fragment_size=>4096, :blocks=>29292283, :block_free=>7973766, :block_avail_unpriv=>7973766, :inodes=>58612160, :free_inodes=>57034519, :filesystem_id=>2050, :mount_flags=>1024, :max_filename_length=>255}
264
264
 
265
265
  ```
266
266
 
267
267
  ### LinuxStat::Filesystem
268
268
  ```
269
- # File: filesystem.rb | Line: 92
269
+ # File: filesystem.rb | Line: 94
270
270
  # Definition: def available(fs = ?..freeze)
271
271
  LinuxStat::Filesystem.available(fs)
272
- => 44429180928
272
+ => 32660545536
273
273
 
274
- # File: filesystem.rb | Line: 58
274
+ # File: filesystem.rb | Line: 60
275
275
  # Definition: def free(fs = ?..freeze)
276
276
  LinuxStat::Filesystem.free(fs)
277
- => 44429180928
277
+ => 32660545536
278
278
 
279
- # File: filesystem.rb | Line: 19
279
+ # File: filesystem.rb | Line: 21
280
280
  # Definition: def stat(fs = ?..freeze)
281
281
  LinuxStat::Filesystem.stat(fs)
282
- => {:total=>119981191168, :free=>44429180928, :used=>75552010240}
282
+ => {:total=>119981191168, :free=>32660545536, :used=>87320645632}
283
283
 
284
- # File: filesystem.rb | Line: 108
284
+ # File: filesystem.rb | Line: 110
285
285
  # Definition: def stat_raw(fs = ?..freeze)
286
286
  LinuxStat::Filesystem.stat_raw(fs)
287
- => {:block_size=>4096, :fragment_size=>4096, :blocks=>29292283, :block_free=>10846968, :block_avail_unpriv=>10846968, :inodes=>58612160, :free_inodes=>56825184, :filesystem_id=>2050, :mount_flags=>1024, :max_filename_length=>255}
287
+ => {:block_size=>4096, :fragment_size=>4096, :blocks=>29292283, :block_free=>7973766, :block_avail_unpriv=>7973766, :inodes=>58612160, :free_inodes=>57034519, :filesystem_id=>2050, :mount_flags=>1024, :max_filename_length=>255}
288
288
 
289
- # File: filesystem.rb | Line: 39
289
+ # File: filesystem.rb | Line: 41
290
290
  # Definition: def total(fs = ?..freeze)
291
291
  LinuxStat::Filesystem.total(fs)
292
292
  => 119981191168
293
293
 
294
- # File: filesystem.rb | Line: 73
294
+ # File: filesystem.rb | Line: 75
295
295
  # Definition: def used(fs = ?..freeze)
296
296
  LinuxStat::Filesystem.used(fs)
297
- => 75552010240
297
+ => 87320645632
298
298
 
299
299
  ```
300
300
 
301
301
  ### LinuxStat::Kernel
302
302
  ```
303
- # File: kernel.rb | Line: 86
303
+ # File: kernel.rb | Line: 88
304
304
  # Definition: def build_date
305
305
  LinuxStat::Kernel.build_date()
306
- => 2020-12-24 18:28:16 +0000
306
+ => 2020-11-20 07:44:55 +0000
307
307
 
308
- # File: kernel.rb | Line: 140
308
+ # File: kernel.rb | Line: 142
309
309
  # Definition: def build_date_string
310
310
  LinuxStat::Kernel.build_date_string()
311
- => "24 Dec 2020 18:28:16 +0000"
311
+ => "20 Nov 2020 07:44:55 +0000"
312
312
 
313
- # File: kernel.rb | Line: 21
313
+ # File: kernel.rb | Line: 23
314
314
  # Definition: def build_user
315
315
  LinuxStat::Kernel.build_user()
316
316
  => "souravgoswami@archlinux"
317
317
 
318
- # File: kernel.rb | Line: 179
318
+ # File: kernel.rb | Line: 181
319
319
  # Definition: def ticks
320
320
  LinuxStat::Kernel.clk_tck()
321
321
  => 100
322
322
 
323
- # File: kernel.rb | Line: 33
323
+ # File: kernel.rb | Line: 35
324
324
  # Definition: def compiler
325
325
  LinuxStat::Kernel.compiler()
326
326
  => [:gcc, "10.2.0"]
327
327
 
328
- # File: kernel.rb | Line: 55
328
+ # File: kernel.rb | Line: 57
329
329
  # Definition: def compiler_version
330
330
  LinuxStat::Kernel.compiler_version()
331
331
  => "10.2.0"
332
332
 
333
- # File: kernel.rb | Line: 10
333
+ # File: kernel.rb | Line: 12
334
334
  # Definition: def version
335
335
  LinuxStat::Kernel.release()
336
- => "5.10.2-xanmod1-cacule-1-cacule"
336
+ => "5.9.9-xanmod1-1"
337
337
 
338
- # File: kernel.rb | Line: 169
338
+ # File: kernel.rb | Line: 171
339
339
  # Definition: def string
340
340
  LinuxStat::Kernel.string()
341
- => "Linux version 5.10.2-xanmod1-cacule-1-cacule (souravgoswami@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Thu, 24 Dec 2020 18:28:16 +0000"
341
+ => "Linux version 5.9.9-xanmod1-1 (souravgoswami@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Fri, 20 Nov 2020 07:44:55 +0000"
342
342
 
343
- # File: kernel.rb | Line: 179
343
+ # File: kernel.rb | Line: 181
344
344
  # Definition: def ticks
345
345
  LinuxStat::Kernel.ticks()
346
346
  => 100
347
347
 
348
- # File: kernel.rb | Line: 10
348
+ # File: kernel.rb | Line: 12
349
349
  # Definition: def version
350
350
  LinuxStat::Kernel.version()
351
- => "5.10.2-xanmod1-cacule-1-cacule"
351
+ => "5.9.9-xanmod1-1"
352
352
 
353
353
  ```
354
354
 
355
355
  ### LinuxStat::Memory
356
356
  ```
357
- # File: memory.rb | Line: 50
357
+ # File: memory.rb | Line: 52
358
358
  # Definition: def available
359
359
  LinuxStat::Memory.available()
360
- => 375384
360
+ => 234436
361
361
 
362
- # File: memory.rb | Line: 81
362
+ # File: memory.rb | Line: 83
363
363
  # Definition: def percent_available
364
364
  LinuxStat::Memory.percent_available()
365
- => 9.79
365
+ => 6.11
366
366
 
367
- # File: memory.rb | Line: 70
367
+ # File: memory.rb | Line: 72
368
368
  # Definition: def percent_used
369
369
  LinuxStat::Memory.percent_used()
370
- => 90.21
370
+ => 93.89
371
371
 
372
- # File: memory.rb | Line: 11
372
+ # File: memory.rb | Line: 13
373
373
  # Definition: def stat
374
374
  LinuxStat::Memory.stat()
375
- => {:total=>3836036, :used=>3460652, :available=>375384, :percent_used=>90.21, :percent_available=>9.79}
375
+ => {:total=>3836236, :used=>3601552, :available=>234684, :percent_used=>93.88, :percent_available=>6.12}
376
376
 
377
- # File: memory.rb | Line: 40
377
+ # File: memory.rb | Line: 42
378
378
  # Definition: def total
379
379
  LinuxStat::Memory.total()
380
- => 3836036
380
+ => 3836236
381
381
 
382
- # File: memory.rb | Line: 60
382
+ # File: memory.rb | Line: 62
383
383
  # Definition: def used
384
384
  LinuxStat::Memory.used()
385
- => 3460652
385
+ => 3601552
386
386
 
387
387
  ```
388
388
 
389
389
  ### LinuxStat::Mounts
390
390
  ```
391
- # File: mounts.rb | Line: 179
391
+ # File: mounts.rb | Line: 181
392
392
  # Definition: def device_stat(dev = root)
393
393
  LinuxStat::Mounts.device_stat(dev)
394
- => {:mountpoint=>"/", :total=>119981191168, :free=>44429180928, :available=>44429180928, :used=>75552010240, :percent_used=>62.97, :percent_free=>37.03, :percent_available=>37.03}
394
+ => {:mountpoint=>"/", :total=>119981191168, :free=>32660545536, :available=>32660545536, :used=>87320645632, :percent_used=>72.78, :percent_free=>27.22, :percent_available=>27.22}
395
395
 
396
- # File: mounts.rb | Line: 137
396
+ # File: mounts.rb | Line: 139
397
397
  # Definition: def devices_stat
398
398
  LinuxStat::Mounts.devices_stat()
399
399
  => {"proc"=>{:mountpoint=>"/proc", :total=>0, :free=>0, :available=>0, :used=>0, :percent_used=>NaN, :percent_free=>NaN, :percent_available=>NaN}, "sys"=>{:mountpoint=>"/sys", :total=>0, :free=>0, :available=>0, :used=>0, :percent_used=>NaN, :percent_fre...
400
400
 
401
- # File: mounts.rb | Line: 11
401
+ # File: mounts.rb | Line: 13
402
402
  # Definition: def list
403
403
  LinuxStat::Mounts.list()
404
- => ["proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0", "sys /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0", "dev /dev devtmpfs rw,nosuid,relatime,size=1909248k,nr_inodes=477312,mode=755,inode64 0 0", "run /run tmpfs rw,nosuid,nodev,relatime,mode=755...
404
+ => ["proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0", "sys /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0", "dev /dev devtmpfs rw,nosuid,relatime,size=1892892k,nr_inodes=473223,mode=755 0 0", "run /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0", "...
405
405
 
406
- # File: mounts.rb | Line: 20
406
+ # File: mounts.rb | Line: 22
407
407
  # Definition: def list_devices
408
408
  LinuxStat::Mounts.list_devices()
409
- => ["proc", "sys", "dev", "run", "/dev/sda2", "securityfs", "tmpfs", "devpts", "tmpfs", "cgroup2", "cgroup", "pstore", "none", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "systemd-1", "hug...
409
+ => ["proc", "sys", "dev", "run", "/dev/sda2", "securityfs", "tmpfs", "devpts", "tmpfs", "cgroup2", "cgroup", "pstore", "none", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "cgroup", "systemd-1", "deb...
410
410
 
411
- # File: mounts.rb | Line: 109
411
+ # File: mounts.rb | Line: 111
412
412
  # Definition: def list_devices_mount_point
413
413
  LinuxStat::Mounts.list_devices_mount_point()
414
- => {"proc"=>"/proc", "sys"=>"/sys", "dev"=>"/dev", "run"=>"/run", "/dev/sda2"=>"/", "securityfs"=>"/sys/kernel/security", "tmpfs"=>"/run/user/0", "devpts"=>"/dev/pts", "cgroup2"=>"/sys/fs/cgroup/unified", "cgroup"=>"/sys/fs/cgroup/cpuset", "pstore"=>"/sy...
414
+ => {"proc"=>"/proc", "sys"=>"/sys", "dev"=>"/dev", "run"=>"/run", "/dev/sda2"=>"/", "securityfs"=>"/sys/kernel/security", "tmpfs"=>"/run/user/1000", "devpts"=>"/dev/pts", "cgroup2"=>"/sys/fs/cgroup/unified", "cgroup"=>"/sys/fs/cgroup/rdma", "pstore"=>"/s...
415
415
 
416
- # File: mounts.rb | Line: 80
416
+ # File: mounts.rb | Line: 82
417
417
  # Definition: def mount_point(dev = root)
418
418
  LinuxStat::Mounts.mount_point(dev)
419
419
  => "/"
420
420
 
421
- # File: mounts.rb | Line: 29
421
+ # File: mounts.rb | Line: 31
422
422
  # Definition: def root
423
423
  LinuxStat::Mounts.root()
424
424
  => "/dev/sda2"
425
425
 
426
- # File: mounts.rb | Line: 38
426
+ # File: mounts.rb | Line: 40
427
427
  # Definition: def root_fs
428
428
  LinuxStat::Mounts.root_fs()
429
429
  => "xfs"
430
430
 
431
- # File: mounts.rb | Line: 47
431
+ # File: mounts.rb | Line: 49
432
432
  # Definition: def root_mount_options
433
433
  LinuxStat::Mounts.root_mount_options()
434
434
  => "rw,noatime,attr2,inode64,logbufs=8,logbsize=32k,noquota"
435
435
 
436
- # File: mounts.rb | Line: 56
436
+ # File: mounts.rb | Line: 58
437
437
  # Definition: def tmpfs
438
438
  LinuxStat::Mounts.tmpfs()
439
- => {"/dev/shm"=>"tmpfs /dev/shm tmpfs rw,nosuid,nodev,inode64 0 0", "/sys/fs/cgroup"=>"tmpfs /sys/fs/cgroup tmpfs ro,nosuid,nodev,noexec,size=4096k,nr_inodes=1024,mode=755,inode64 0 0", "/ramdisk"=>"tmpfs /ramdisk tmpfs rw,nosuid,nodev,relatime,size=6291...
439
+ => {"/dev/shm"=>"tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0", "/sys/fs/cgroup"=>"tmpfs /sys/fs/cgroup tmpfs ro,nosuid,nodev,noexec,size=4096k,nr_inodes=1024,mode=755 0 0", "/cache"=>"tmpfs /cache tmpfs rw,nosuid,nodev,relatime,size=2097152k 0 0", "/ramdisk...
440
440
 
441
441
  ```
442
442
 
443
443
  ### LinuxStat::Net
444
444
  ```
445
- # File: net.rb | Line: 84
445
+ # File: net.rb | Line: 86
446
446
  # Definition: def usage(interval = 0.1)
447
447
  LinuxStat::Net.current_usage(interval)
448
- => {:received=>279000.0, :transmitted=>5640.0}
448
+ => {:received=>0.0, :transmitted=>0.0}
449
449
 
450
- # File: net.rb | Line: 10
450
+ # File: net.rb | Line: 12
451
451
  # Definition: def ipv4_private
452
452
  LinuxStat::Net.ipv4_private()
453
- => "192.168.0.102"
453
+ => "192.168.0.103"
454
454
 
455
- # File: net.rb | Line: 25
455
+ # File: net.rb | Line: 27
456
456
  # Definition: def total_bytes
457
457
  LinuxStat::Net.total_bytes()
458
- => {:received=>2093813713, :transmitted=>138899807}
458
+ => {:received=>397930237, :transmitted=>54027033}
459
459
 
460
- # File: net.rb | Line: 43
460
+ # File: net.rb | Line: 45
461
461
  # Definition: def total_bytes_received
462
462
  LinuxStat::Net.total_bytes_received()
463
- => 2093813713
463
+ => 397930237
464
464
 
465
- # File: net.rb | Line: 56
465
+ # File: net.rb | Line: 58
466
466
  # Definition: def total_bytes_transmitted
467
467
  LinuxStat::Net.total_bytes_transmitted()
468
- => 138899807
468
+ => 54027033
469
469
 
470
- # File: net.rb | Line: 84
470
+ # File: net.rb | Line: 86
471
471
  # Definition: def usage(interval = 0.1)
472
472
  LinuxStat::Net.usage(interval)
473
- => {:received=>419320.0, :transmitted=>10340.0}
473
+ => {:received=>0.0, :transmitted=>0.0}
474
474
 
475
475
  ```
476
476
 
477
477
  ### LinuxStat::OS
478
478
  ```
479
- # File: os.rb | Line: 127
479
+ # File: os.rb | Line: 129
480
480
  # Definition: def bits
481
481
  LinuxStat::OS.bits()
482
482
  => 64
483
483
 
484
- # File: os.rb | Line: 82
484
+ # File: os.rb | Line: 84
485
485
  # Definition: def version
486
486
  LinuxStat::OS.distrib_version()
487
487
  => "rolling"
488
488
 
489
- # File: os.rb | Line: 44
489
+ # File: os.rb | Line: 46
490
490
  # Definition: def distribution
491
491
  LinuxStat::OS.distribution()
492
492
  => "Arch Linux"
493
493
 
494
- # File: os.rb | Line: 115
494
+ # File: os.rb | Line: 117
495
495
  # Definition: def hostname
496
496
  LinuxStat::OS.hostname()
497
497
  => "archlinux"
498
498
 
499
- # File: os.rb | Line: 33
499
+ # File: os.rb | Line: 35
500
500
  # Definition: def lsb_release
501
501
  LinuxStat::OS.lsb_release()
502
502
  => {:LSB_VERSION=>"1.4", :DISTRIB_ID=>"Arch", :DISTRIB_RELEASE=>"rolling", :DISTRIB_DESCRIPTION=>"Arch Linux"}
503
503
 
504
- # File: os.rb | Line: 98
504
+ # File: os.rb | Line: 100
505
505
  # Definition: def machine
506
506
  LinuxStat::OS.machine()
507
507
  => "x86_64"
508
508
 
509
- # File: os.rb | Line: 106
509
+ # File: os.rb | Line: 108
510
510
  # Definition: def nodename
511
511
  LinuxStat::OS.nodename()
512
512
  => "archlinux"
513
513
 
514
- # File: os.rb | Line: 17
514
+ # File: os.rb | Line: 19
515
515
  # Definition: def os_release
516
516
  LinuxStat::OS.os_release()
517
517
  => {:NAME=>"Arch Linux", :PRETTY_NAME=>"Arch Linux", :ID=>"arch", :BUILD_ID=>"rolling", :ANSI_COLOR=>"38;2;23;147;209", :HOME_URL=>"https://www.archlinux.org/", :DOCUMENTATION_URL=>"https://wiki.archlinux.org/", :SUPPORT_URL=>"https://bbs.archlinux.org/"...
518
518
 
519
- # File: os.rb | Line: 142
519
+ # File: os.rb | Line: 144
520
520
  # Definition: def uptime
521
521
  LinuxStat::OS.uptime()
522
- => {:hour=>14, :minute=>24, :second=>12.06}
522
+ => {:hour=>4, :minute=>6, :second=>10.08}
523
523
 
524
- # File: os.rb | Line: 82
524
+ # File: os.rb | Line: 84
525
525
  # Definition: def version
526
526
  LinuxStat::OS.version()
527
527
  => "rolling"
@@ -530,37 +530,37 @@ LinuxStat::OS.version()
530
530
 
531
531
  ### LinuxStat::PCI
532
532
  ```
533
- # File: pci.rb | Line: 211
533
+ # File: pci.rb | Line: 216
534
534
  # Definition: def count
535
535
  LinuxStat::PCI.count()
536
536
  => 13
537
537
 
538
- # File: pci.rb | Line: 211
538
+ # File: pci.rb | Line: 216
539
539
  # Definition: def count
540
540
  LinuxStat::PCI.count_devices()
541
541
  => 13
542
542
 
543
- # File: pci.rb | Line: 52
543
+ # File: pci.rb | Line: 54
544
544
  # Definition: def devices_info(hwdata: true)
545
545
  LinuxStat::PCI.devices_info(hwdata:)
546
546
  => [{:id=>"8086:1904", :vendor=>"8086", :device=>"1904", :irq=>0, :kernel_driver=>"skl_uncore", :hwdata=>{:vendor=>"Intel Corporation", :product=>"Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers"}}, {:id=>"8086:1916", :vendor...
547
547
 
548
- # File: pci.rb | Line: 128
548
+ # File: pci.rb | Line: 130
549
549
  # Definition: def devices_stat(hwdata: true)
550
550
  LinuxStat::PCI.devices_stat(hwdata:)
551
551
  => [{:path=>"/sys/bus/pci/devices/0000:00:00.0/", :id=>"8086:1904", :vendor=>"8086", :device=>"1904", :sub_vendor=>"1028", :sub_device=>"077d", :kernel_driver=>"skl_uncore", :revision=>"0x08", :irq=>0, :enable=>false, :hwdata=>{:vendor=>"Intel Corporatio...
552
552
 
553
- # File: pci.rb | Line: 259
553
+ # File: pci.rb | Line: 264
554
554
  # Definition: def hwdata_file
555
555
  LinuxStat::PCI.hwdata_file()
556
556
  => "/usr/share/hwdata/pci.ids"
557
557
 
558
- # File: pci.rb | Line: 248
558
+ # File: pci.rb | Line: 253
559
559
  # Definition: def hwdata_file_set?
560
560
  LinuxStat::PCI.hwdata_file_set?()
561
561
  => true
562
562
 
563
- # File: pci.rb | Line: 275
563
+ # File: pci.rb | Line: 280
564
564
  # Definition: def initialize_hwdata
565
565
  LinuxStat::PCI.initialize_hwdata()
566
566
  => false
@@ -569,66 +569,66 @@ LinuxStat::PCI.initialize_hwdata()
569
569
 
570
570
  ### LinuxStat::PrettifyBytes
571
571
  ```
572
- # File: prettify_bytes.rb | Line: 42
573
- # Definition: def convert_binary(n)
574
- LinuxStat::PrettifyBytes.convert_binary(n = 320846048510750)
575
- => "291.81 tebibytes"
572
+ # File: prettify_bytes.rb | Line: 49
573
+ # Definition: def convert_binary(n, precision: 2)
574
+ LinuxStat::PrettifyBytes.convert_binary(n = 869660338047082, precision:)
575
+ => "790.95 tebibytes"
576
576
 
577
- # File: prettify_bytes.rb | Line: 19
578
- # Definition: def convert_decimal(n)
579
- LinuxStat::PrettifyBytes.convert_decimal(n = 996984130887475)
580
- => "996.98 terabytes"
577
+ # File: prettify_bytes.rb | Line: 26
578
+ # Definition: def convert_decimal(n, precision: 2)
579
+ LinuxStat::PrettifyBytes.convert_decimal(n = 670910793487164, precision:)
580
+ => "670.91 terabytes"
581
581
 
582
- # File: prettify_bytes.rb | Line: 90
583
- # Definition: def convert_short_binary(n)
584
- LinuxStat::PrettifyBytes.convert_short_binary(n = 396350966829319)
585
- => "360.48 TiB"
582
+ # File: prettify_bytes.rb | Line: 97
583
+ # Definition: def convert_short_binary(n, precision: 2)
584
+ LinuxStat::PrettifyBytes.convert_short_binary(n = 219452702414885, precision:)
585
+ => "199.59 TiB"
586
586
 
587
- # File: prettify_bytes.rb | Line: 65
588
- # Definition: def convert_short_decimal(n)
589
- LinuxStat::PrettifyBytes.convert_short_decimal(n = 558910893490277)
590
- => "558.91 TB"
587
+ # File: prettify_bytes.rb | Line: 72
588
+ # Definition: def convert_short_decimal(n, precision: 2)
589
+ LinuxStat::PrettifyBytes.convert_short_decimal(n = 65685406640389, precision:)
590
+ => "65.69 TB"
591
591
 
592
592
  ```
593
593
 
594
594
  ### LinuxStat::Process
595
595
  ```
596
- # File: process.rb | Line: 19
596
+ # File: process.rb | Line: 29
597
597
  # Definition: def count
598
598
  LinuxStat::Process.count()
599
- => 210
599
+ => 211
600
600
 
601
- # File: process.rb | Line: 71
601
+ # File: process.rb | Line: 96
602
602
  # Definition: def idle
603
603
  LinuxStat::Process.idle()
604
- => [3, 4, 7, 9, 12, 23, 30, 37, 39, 45, 99, 100, 101, 104, 105, 106, 107, 108, 116, 117, 119, 122, 131, 134, 140, 164, 166, 169, 170, 173, 175, 180, 181, 182, 183, 184, 185, 186, 188, 231, 275, 315, 323, 333, 3142, 3143, 3144, 3145, 3146, 3147, 20004, 29...
604
+ => [3, 4, 6, 9, 12, 23, 30, 37, 39, 49, 102, 103, 104, 106, 107, 108, 109, 110, 117, 118, 119, 121, 131, 134, 140, 166, 168, 170, 171, 174, 176, 181, 182, 183, 184, 185, 186, 187, 189, 230, 234, 286, 427, 428, 430, 4921, 4922, 4923, 4924, 4925, 4926, 103...
605
605
 
606
- # File: process.rb | Line: 8
606
+ # File: process.rb | Line: 11
607
607
  # Definition: def list
608
608
  LinuxStat::Process.list()
609
- => [1, 2, 3, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 99, 100, 101, 104, 105, 106, 107, 108, 109, 113, 114, 116, 117, 119, 122, 131, 134, 140,...
609
+ => [1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 46, 47, 48, 49, 50, 51, 52, 102, 103, 104, 106, 107, 108, 109, 110, 112, 114, 115, 117, 118, 119, 121, 131, 134,...
610
610
 
611
- # File: process.rb | Line: 25
611
+ # File: process.rb | Line: 35
612
612
  # Definition: def names
613
613
  LinuxStat::Process.names()
614
- => {1=>"systemd", 2=>"kthreadd", 3=>"rcu_gp", 4=>"rcu_par_gp", 7=>"kworker/0:0H-kblockd", 9=>"mm_percpu_wq", 10=>"ksoftirqd/0", 11=>"rcuc/0", 12=>"rcu_preempt", 13=>"rcub/0", 14=>"migration/0", 15=>"idle_inject/0", 16=>"cpuhp/0", 17=>"cpuhp/1", 18=>"idle...
614
+ => {1=>"systemd", 2=>"kthreadd", 3=>"rcu_gp", 4=>"rcu_par_gp", 6=>"kworker/0:0H-kblockd", 9=>"mm_percpu_wq", 10=>"ksoftirqd/0", 11=>"rcuc/0", 12=>"rcu_preempt", 13=>"rcub/0", 14=>"migration/0", 15=>"idle_inject/0", 16=>"cpuhp/0", 17=>"cpuhp/1", 18=>"idle...
615
615
 
616
- # File: process.rb | Line: 97
616
+ # File: process.rb | Line: 122
617
617
  # Definition: def running
618
618
  LinuxStat::Process.running()
619
- => [34967]
619
+ => [15720]
620
620
 
621
- # File: process.rb | Line: 58
621
+ # File: process.rb | Line: 83
622
622
  # Definition: def sleeping
623
623
  LinuxStat::Process.sleeping()
624
- => [1, 2, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 38, 40, 41, 42, 43, 44, 46, 47, 48, 109, 113, 114, 163, 165, 189, 218, 232, 271, 302, 314, 316, 319, 321, 322, 324, 325, 326, 327, 345, 348, 351, 376, 403, 405, 406...
624
+ => [1, 2, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 38, 40, 41, 42, 46, 47, 48, 50, 51, 52, 112, 114, 115, 165, 167, 190, 218, 235, 236, 275, 360, 377, 379, 381, 386, 426, 429, 445, 446, 447, 449, 465, 467, 472,...
625
625
 
626
- # File: process.rb | Line: 37
626
+ # File: process.rb | Line: 54
627
627
  # Definition: def types
628
628
  LinuxStat::Process.types()
629
- => {1=>:sleeping, 2=>:sleeping, 3=>:idle, 4=>:idle, 7=>:idle, 9=>:idle, 10=>:sleeping, 11=>:sleeping, 12=>:idle, 13=>:sleeping, 14=>:sleeping, 15=>:sleeping, 16=>:sleeping, 17=>:sleeping, 18=>:sleeping, 19=>:sleeping, 20=>:sleeping, 21=>:sleeping, 23=>:i...
629
+ => {1=>:sleeping, 2=>:sleeping, 3=>:idle, 4=>:idle, 6=>:idle, 9=>:idle, 10=>:sleeping, 11=>:sleeping, 12=>:idle, 13=>:sleeping, 14=>:sleeping, 15=>:sleeping, 16=>:sleeping, 17=>:sleeping, 18=>:sleeping, 19=>:sleeping, 20=>:sleeping, 21=>:sleeping, 23=>:i...
630
630
 
631
- # File: process.rb | Line: 84
631
+ # File: process.rb | Line: 109
632
632
  # Definition: def zombie
633
633
  LinuxStat::Process.zombie()
634
634
  => []
@@ -637,166 +637,166 @@ LinuxStat::Process.zombie()
637
637
 
638
638
  ### LinuxStat::ProcessInfo
639
639
  ```
640
- # File: process_info.rb | Line: 54
640
+ # File: process_info.rb | Line: 61
641
641
  # Definition: def cmdline(pid = $$)
642
642
  LinuxStat::ProcessInfo.cmdline(pid)
643
- => "/usr/bin/ruby /home/sourav/.gem/ruby/2.7.0/bin/linuxstat.rb --markdown"
643
+ => "/usr/bin/ruby /home/sourav/.gem/ruby/2.7.0/bin/linuxstat.rb -md"
644
644
 
645
- # File: process_info.rb | Line: 78
645
+ # File: process_info.rb | Line: 85
646
646
  # Definition: def command_name(pid = $$)
647
647
  LinuxStat::ProcessInfo.command_name(pid)
648
648
  => "ruby"
649
649
 
650
- # File: process_info.rb | Line: 640
650
+ # File: process_info.rb | Line: 647
651
651
  # Definition: def nproc(pid = $$)
652
652
  LinuxStat::ProcessInfo.count_cpu(pid)
653
653
  => 4
654
654
 
655
- # File: process_info.rb | Line: 247
655
+ # File: process_info.rb | Line: 254
656
656
  # Definition: def cpu_stat(pid: $$, sleep: ticks_to_ms_t5)
657
657
  LinuxStat::ProcessInfo.cpu_stat(pid:, sleep:)
658
- => {:cpu_usage=>0.0, :threads=>1, :last_executed_cpu=>3}
658
+ => {:cpu_usage=>0.0, :threads=>1, :last_executed_cpu=>2}
659
659
 
660
- # File: process_info.rb | Line: 307
660
+ # File: process_info.rb | Line: 314
661
661
  # Definition: def cpu_usage(pid: $$, sleep: ticks_to_ms_t5)
662
662
  LinuxStat::ProcessInfo.cpu_usage(pid:, sleep:)
663
663
  => 0.0
664
664
 
665
- # File: process_info.rb | Line: 470
665
+ # File: process_info.rb | Line: 477
666
666
  # Definition: def gid(pid = $$)
667
667
  LinuxStat::ProcessInfo.gid(pid)
668
668
  => {:real=>1000, :effective=>1000, :saved_set=>1000, :filesystem_uid=>1000}
669
669
 
670
- # File: process_info.rb | Line: 433
670
+ # File: process_info.rb | Line: 440
671
671
  # Definition: def last_executed_cpu(pid = $$)
672
672
  LinuxStat::ProcessInfo.last_executed_cpu(pid)
673
- => 3
673
+ => 2
674
674
 
675
- # File: process_info.rb | Line: 114
675
+ # File: process_info.rb | Line: 121
676
676
  # Definition: def mem_stat(pid = $$)
677
677
  LinuxStat::ProcessInfo.mem_stat(pid)
678
- => {:memory=>26836.992, :virtual_memory=>97992.704, :resident_memory=>32841.728}
678
+ => {:memory=>25968.64, :virtual_memory=>97329.152, :resident_memory=>32104.448}
679
679
 
680
- # File: process_info.rb | Line: 147
680
+ # File: process_info.rb | Line: 154
681
681
  # Definition: def memory(pid = $$)
682
682
  LinuxStat::ProcessInfo.memory(pid)
683
- => 26836.992
683
+ => 25968.64
684
684
 
685
- # File: process_info.rb | Line: 607
685
+ # File: process_info.rb | Line: 614
686
686
  # Definition: def nice(pid = $$)
687
687
  LinuxStat::ProcessInfo.nice(pid)
688
688
  => 0
689
689
 
690
- # File: process_info.rb | Line: 640
690
+ # File: process_info.rb | Line: 647
691
691
  # Definition: def nproc(pid = $$)
692
692
  LinuxStat::ProcessInfo.nproc(pid)
693
693
  => 4
694
694
 
695
- # File: process_info.rb | Line: 491
695
+ # File: process_info.rb | Line: 498
696
696
  # Definition: def owner(pid = $$)
697
697
  LinuxStat::ProcessInfo.owner(pid)
698
698
  => "sourav"
699
699
 
700
- # File: process_info.rb | Line: 197
700
+ # File: process_info.rb | Line: 204
701
701
  # Definition: def resident_memory(pid = $$)
702
702
  LinuxStat::ProcessInfo.resident_memory(pid)
703
- => 32841.728
703
+ => 32374.784
704
704
 
705
- # File: process_info.rb | Line: 563
705
+ # File: process_info.rb | Line: 570
706
706
  # Definition: def running_time(pid = $$)
707
707
  LinuxStat::ProcessInfo.running_time(pid)
708
- => 1.04
708
+ => 1.02
709
709
 
710
- # File: process_info.rb | Line: 544
710
+ # File: process_info.rb | Line: 551
711
711
  # Definition: def start_time(pid = $$)
712
712
  LinuxStat::ProcessInfo.start_time(pid)
713
- => 2020-12-29 01:58:56 +0530
713
+ => 2021-01-14 06:39:27 +0530
714
714
 
715
- # File: process_info.rb | Line: 513
715
+ # File: process_info.rb | Line: 520
716
716
  # Definition: def start_time_epoch(pid = $$)
717
717
  LinuxStat::ProcessInfo.start_time_epoch(pid)
718
- => 1609187336
718
+ => 1610586567
719
719
 
720
- # File: process_info.rb | Line: 592
720
+ # File: process_info.rb | Line: 599
721
721
  # Definition: def state(pid = $$)
722
722
  LinuxStat::ProcessInfo.state(pid)
723
723
  => "R"
724
724
 
725
- # File: process_info.rb | Line: 359
725
+ # File: process_info.rb | Line: 366
726
726
  # Definition: def thread_usage(pid: $$, sleep: ticks_to_ms_t5)
727
727
  LinuxStat::ProcessInfo.thread_usage(pid:, sleep:)
728
728
  => 0.0
729
729
 
730
- # File: process_info.rb | Line: 408
730
+ # File: process_info.rb | Line: 415
731
731
  # Definition: def threads(pid = $$)
732
732
  LinuxStat::ProcessInfo.threads(pid)
733
733
  => 1
734
734
 
735
- # File: process_info.rb | Line: 23
735
+ # File: process_info.rb | Line: 30
736
736
  # Definition: def total_io(pid = $$)
737
737
  LinuxStat::ProcessInfo.total_io(pid)
738
- => {:read_bytes=>1249280, :write_bytes=>0}
738
+ => {:read_bytes=>0, :write_bytes=>0}
739
739
 
740
- # File: process_info.rb | Line: 446
740
+ # File: process_info.rb | Line: 453
741
741
  # Definition: def uid(pid = $$)
742
742
  LinuxStat::ProcessInfo.uid(pid)
743
743
  => {:real=>1000, :effective=>1000, :saved_set=>1000, :filesystem_uid=>1000}
744
744
 
745
- # File: process_info.rb | Line: 172
745
+ # File: process_info.rb | Line: 179
746
746
  # Definition: def virtual_memory(pid = $$)
747
747
  LinuxStat::ProcessInfo.virtual_memory(pid)
748
- => 97992.704
748
+ => 97599.488
749
749
 
750
750
  ```
751
751
 
752
752
  ### LinuxStat::Swap
753
753
  ```
754
- # File: swap.rb | Line: 22
754
+ # File: swap.rb | Line: 24
755
755
  # Definition: def any?
756
756
  LinuxStat::Swap.any?()
757
757
  => true
758
758
 
759
- # File: swap.rb | Line: 68
759
+ # File: swap.rb | Line: 70
760
760
  # Definition: def available
761
761
  LinuxStat::Swap.available()
762
- => 2293908
762
+ => 2814716
763
763
 
764
- # File: swap.rb | Line: 8
764
+ # File: swap.rb | Line: 10
765
765
  # Definition: def list
766
766
  LinuxStat::Swap.list()
767
- => {"/dev/zram0"=>[:partition, 4194300, 1900392, -2]}
767
+ => {"/dev/zram0"=>[:partition, 4194300, 1379584, -2]}
768
768
 
769
- # File: swap.rb | Line: 103
769
+ # File: swap.rb | Line: 105
770
770
  # Definition: def percent_available
771
771
  LinuxStat::Swap.percent_available()
772
- => 54.69
772
+ => 67.11
773
773
 
774
- # File: swap.rb | Line: 89
774
+ # File: swap.rb | Line: 91
775
775
  # Definition: def percent_used
776
776
  LinuxStat::Swap.percent_used()
777
- => 45.31
777
+ => 32.89
778
778
 
779
- # File: swap.rb | Line: 32
779
+ # File: swap.rb | Line: 34
780
780
  # Definition: def stat
781
781
  LinuxStat::Swap.stat()
782
- => {:total=>4194300, :used=>1900392, :available=>2293908, :percent_used=>45.31, :percent_available=>54.69}
782
+ => {:total=>4194300, :used=>1379584, :available=>2814716, :percent_used=>32.89, :percent_available=>67.11}
783
783
 
784
- # File: swap.rb | Line: 57
784
+ # File: swap.rb | Line: 59
785
785
  # Definition: def total
786
786
  LinuxStat::Swap.total()
787
787
  => 4194300
788
788
 
789
- # File: swap.rb | Line: 80
789
+ # File: swap.rb | Line: 82
790
790
  # Definition: def used
791
791
  LinuxStat::Swap.used()
792
- => 1900392
792
+ => 1379584
793
793
 
794
794
  ```
795
795
 
796
796
  ### LinuxStat::Sysconf
797
797
  ```
798
798
  LinuxStat::Sysconf.child_max()
799
- => 14915
799
+ => 14788
800
800
 
801
801
  LinuxStat::Sysconf.expr_nest_max()
802
802
  => 32
@@ -854,34 +854,58 @@ LinuxStat::Sysconf.tty_name_max()
854
854
 
855
855
  ```
856
856
 
857
+ ### LinuxStat::Thermal
858
+ ```
859
+ # File: thermal.rb | Line: 59
860
+ # Definition: def count_fans
861
+ LinuxStat::Thermal.count_fans()
862
+ => 1
863
+
864
+ # File: thermal.rb | Line: 49
865
+ # Definition: def count_sensors
866
+ LinuxStat::Thermal.count_sensors()
867
+ => 8
868
+
869
+ # File: thermal.rb | Line: 41
870
+ # Definition: def fans
871
+ LinuxStat::Thermal.fans()
872
+ => [{:path=>"/sys/class/hwmon/hwmon4", :name=>"dell_smm", :label=>"Processor Fan", :rpm=>2729}]
873
+
874
+ # File: thermal.rb | Line: 23
875
+ # Definition: def temperatures
876
+ LinuxStat::Thermal.temperatures()
877
+ => [{:path=>"/sys/class/hwmon/hwmon4", :name=>"dell_smm", :label=>"SODIMM", :temperature=>32.0}, {:path=>"/sys/class/hwmon/hwmon4", :name=>"dell_smm", :label=>"CPU", :temperature=>39.0}, {:path=>"/sys/class/hwmon/hwmon4", :name=>"dell_smm", :label=>"Ambi...
878
+
879
+ ```
880
+
857
881
  ### LinuxStat::USB
858
882
  ```
859
- # File: usb.rb | Line: 135
883
+ # File: usb.rb | Line: 139
860
884
  # Definition: def count
861
885
  LinuxStat::USB.count()
862
886
  => 10
863
887
 
864
- # File: usb.rb | Line: 135
888
+ # File: usb.rb | Line: 139
865
889
  # Definition: def count
866
890
  LinuxStat::USB.count_devices()
867
891
  => 10
868
892
 
869
- # File: usb.rb | Line: 47
893
+ # File: usb.rb | Line: 49
870
894
  # Definition: def devices_stat(hwdata: true)
871
895
  LinuxStat::USB.devices_stat(hwdata:)
872
896
  => [{:path=>"/sys/bus/usb/devices/1-1.2/", :id=>"04d9:1203", :vendor_id=>"04d9", :product_id=>"1203", :bus_num=>1, :dev_num=>7, :hwdata=>{:vendor=>"Holtek Semiconductor, Inc.", :product=>"Keyboard"}, :authorized=>true, :b_max_power=>"100mA", :b_max_packe...
873
897
 
874
- # File: usb.rb | Line: 175
898
+ # File: usb.rb | Line: 179
875
899
  # Definition: def hwdata_file
876
900
  LinuxStat::USB.hwdata_file()
877
901
  => "/usr/share/hwdata/usb.ids"
878
902
 
879
- # File: usb.rb | Line: 164
903
+ # File: usb.rb | Line: 168
880
904
  # Definition: def hwdata_file_set?
881
905
  LinuxStat::USB.hwdata_file_set?()
882
906
  => true
883
907
 
884
- # File: usb.rb | Line: 191
908
+ # File: usb.rb | Line: 195
885
909
  # Definition: def initialize_hwdata
886
910
  LinuxStat::USB.initialize_hwdata()
887
911
  => false
@@ -897,110 +921,111 @@ LinuxStat::Uname.nodename()
897
921
  => "archlinux"
898
922
 
899
923
  LinuxStat::Uname.release()
900
- => "5.10.2-xanmod1-cacule-1-cacule"
924
+ => "5.9.9-xanmod1-1"
901
925
 
902
926
  LinuxStat::Uname.sysname()
903
927
  => "Linux"
904
928
 
905
929
  LinuxStat::Uname.version()
906
- => "#1 SMP PREEMPT Thu, 24 Dec 2020 18:28:16 +0000"
930
+ => "#1 SMP PREEMPT Fri, 20 Nov 2020 07:44:55 +0000"
907
931
 
908
932
  ```
909
933
 
910
934
  ### LinuxStat::User
911
935
  ```
912
- # File: user.rb | Line: 98
936
+ # File: user.rb | Line: 101
913
937
  # Definition: def get_user
914
938
  LinuxStat::User.get_current_user()
915
939
  => "sourav"
916
940
 
917
- # File: user.rb | Line: 137
941
+ # File: user.rb | Line: 140
918
942
  # Definition: def get_euid
919
943
  LinuxStat::User.get_euid()
920
944
  => 1000
921
945
 
922
- # File: user.rb | Line: 129
946
+ # File: user.rb | Line: 132
923
947
  # Definition: def get_gid
924
948
  LinuxStat::User.get_gid()
925
949
  => 1000
926
950
 
927
- # File: user.rb | Line: 152
951
+ # File: user.rb | Line: 155
928
952
  # Definition: def get_login
929
953
  LinuxStat::User.get_login()
930
954
  => "sourav"
931
955
 
932
- # File: user.rb | Line: 121
956
+ # File: user.rb | Line: 124
933
957
  # Definition: def get_uid
934
958
  LinuxStat::User.get_uid()
935
959
  => 1000
936
960
 
937
- # File: user.rb | Line: 98
961
+ # File: user.rb | Line: 101
938
962
  # Definition: def get_user
939
963
  LinuxStat::User.get_user()
940
964
  => "sourav"
941
965
 
942
- # File: user.rb | Line: 215
966
+ # File: user.rb | Line: 218
943
967
  # Definition: def gid_by_username(username = get_user)
944
968
  LinuxStat::User.gid_by_username(username)
945
969
  => 1000
946
970
 
947
- # File: user.rb | Line: 56
971
+ # File: user.rb | Line: 58
948
972
  # Definition: def gids
949
973
  LinuxStat::User.gids()
950
974
  => {:root=>0, :bin=>1, :daemon=>2, :mail=>12, :ftp=>11, :http=>33, :nobody=>65534, :dbus=>81, :"systemd-journal-remote"=>982, :"systemd-network"=>981, :"systemd-resolve"=>980, :"systemd-timesync"=>979, :"systemd-coredump"=>978, :uuidd=>68, :avahi=>977, :...
951
975
 
952
- # File: user.rb | Line: 314
976
+ # File: user.rb | Line: 317
953
977
  # Definition: def home_by_gid(id = get_gid)
954
978
  LinuxStat::User.home_by_gid(id)
955
979
  => "/home/sourav"
956
980
 
957
- # File: user.rb | Line: 266
981
+ # File: user.rb | Line: 269
958
982
  # Definition: def home_by_username(user = get_user)
959
983
  LinuxStat::User.home_by_username(user)
960
984
  => "/home/sourav"
961
985
 
962
- # File: user.rb | Line: 72
986
+ # File: user.rb | Line: 75
963
987
  # Definition: def home_directories
964
988
  LinuxStat::User.home_directories()
965
989
  => {:root=>"/root", :bin=>"/", :daemon=>"/", :mail=>"/var/spool/mail", :ftp=>"/srv/ftp", :http=>"/srv/http", :nobody=>"/", :dbus=>"/", :"systemd-journal-remote"=>"/", :"systemd-network"=>"/", :"systemd-resolve"=>"/", :"systemd-timesync"=>"/", :"systemd-c...
966
990
 
967
- # File: user.rb | Line: 293
991
+ # File: user.rb | Line: 296
968
992
  # Definition: def homes_by_uid(id = get_uid)
969
993
  LinuxStat::User.homes_by_uid(id)
970
994
  => ["/home/sourav"]
971
995
 
972
- # File: user.rb | Line: 23
996
+ # File: user.rb | Line: 25
973
997
  # Definition: def ids
974
998
  LinuxStat::User.ids()
975
999
  => {:root=>{:uid=>0, :gid=>0}, :bin=>{:uid=>1, :gid=>1}, :daemon=>{:uid=>2, :gid=>2}, :mail=>{:uid=>8, :gid=>12}, :ftp=>{:uid=>14, :gid=>11}, :http=>{:uid=>33, :gid=>33}, :nobody=>{:uid=>65534, :gid=>65534}, :dbus=>{:uid=>81, :gid=>81}, :"systemd-journal...
976
1000
 
977
- # File: user.rb | Line: 11
1001
+ # File: user.rb | Line: 13
978
1002
  # Definition: def list
979
1003
  LinuxStat::User.list()
980
1004
  => ["root", "bin", "daemon", "mail", "ftp", "http", "nobody", "dbus", "systemd-journal-remote", "systemd-network", "systemd-resolve", "systemd-timesync", "systemd-coredump", "uuidd", "avahi", "colord", "git", "lxdm", "polkitd", "rtkit", "usbmux", "sourav...
981
1005
 
982
- # File: user.rb | Line: 244
1006
+ # File: user.rb | Line: 247
983
1007
  # Definition: def uid_by_username(username = get_user)
984
1008
  LinuxStat::User.uid_by_username(username)
985
1009
  => 1000
986
1010
 
987
- # File: user.rb | Line: 40
1011
+ # File: user.rb | Line: 42
988
1012
  # Definition: def uids
989
1013
  LinuxStat::User.uids()
990
1014
  => {:root=>0, :bin=>1, :daemon=>2, :mail=>8, :ftp=>14, :http=>33, :nobody=>65534, :dbus=>81, :"systemd-journal-remote"=>982, :"systemd-network"=>981, :"systemd-resolve"=>980, :"systemd-timesync"=>979, :"systemd-coredump"=>978, :uuidd=>68, :avahi=>977, :c...
991
1015
 
992
- # File: user.rb | Line: 187
1016
+ # File: user.rb | Line: 190
993
1017
  # Definition: def username_by_gid(gid = get_gid)
994
1018
  LinuxStat::User.username_by_gid(gid)
995
1019
  => "sourav"
996
1020
 
997
- # File: user.rb | Line: 169
1021
+ # File: user.rb | Line: 172
998
1022
  # Definition: def usernames_by_uid(uid = get_uid)
999
1023
  LinuxStat::User.usernames_by_uid(uid)
1000
1024
  => ["sourav"]
1001
1025
 
1002
1026
  ```
1003
1027
 
1028
+
1004
1029
  ---
1005
1030
 
1006
1031
  ## Note 1: CPU usage, and Net usage