kostya-sigar 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README +2 -0
- data/src/os/darwin/darwin_sigar.c +4 -2
- data/version.properties +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9f3f927d3d1ee66b32e5c0d68e072b05f21b005
|
4
|
+
data.tar.gz: 6447872daeed405f9e183965a08b054fbb394bd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c17d44c09185132e7980e1d099c285ec635cb9c959cec16703c40471c7dfa4b93d6fd1cffe71f61a02aedbb0220a3a64e0bb00e4627c6c5a8d22e77798e5329
|
7
|
+
data.tar.gz: d695fb34498105877bc011238b1505a604f776730e1cbf8b864fe7b23f79ff0049046fc4c768b1d69d84166438464e258941012391b45ae9974a547a3ca6660f
|
data/README
CHANGED
@@ -6,6 +6,8 @@ Fixed:
|
|
6
6
|
* sigfaulted logger, #28 (c2a1af)
|
7
7
|
* bug undefined symbol: sigar_skip_token, #60 (dfe8fe)
|
8
8
|
* bug detection boot_time on linux (now it works like gnu ps, and fix some issues with process start_time) (660259)
|
9
|
+
* FreeBSD: don't use v_cache_min/max (https://github.com/hyperic/sigar/pull/68) (800076)
|
10
|
+
|
9
11
|
|
10
12
|
Installation:
|
11
13
|
|
@@ -400,8 +400,10 @@ static int sigar_vmstat(sigar_t *sigar, struct vmmeter *vmstat)
|
|
400
400
|
GET_VM_STATS(vm, v_inactive_target, 0);
|
401
401
|
GET_VM_STATS(vm, v_inactive_count, 1);
|
402
402
|
GET_VM_STATS(vm, v_cache_count, 1);
|
403
|
-
|
404
|
-
|
403
|
+
#if (__FreeBSD_version < 1100079)
|
404
|
+
GET_VM_STATS(vm, v_cache_min, 0);
|
405
|
+
GET_VM_STATS(vm, v_cache_max, 0);
|
406
|
+
#endif
|
405
407
|
GET_VM_STATS(vm, v_pageout_free_min, 0);
|
406
408
|
GET_VM_STATS(vm, v_interrupt_free_min, 0);
|
407
409
|
GET_VM_STATS(vm, v_forks, 0);
|
data/version.properties
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kostya-sigar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Doug MacEachern
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: System Information Gatherer And Reporter
|
14
14
|
email: sigar-users@hyperic.org
|