prometheus-client-mmap 0.7.0.beta39 → 0.7.0.beta40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/fast_mmaped_file/extconf.rb +1 -1
- data/ext/fast_mmaped_file/fast_mmaped_file.c +74 -148
- data/ext/fast_mmaped_file/file_aggregation.c +0 -0
- data/ext/fast_mmaped_file/file_format.h +13 -0
- data/ext/fast_mmaped_file/file_parsing.c +222 -0
- data/ext/fast_mmaped_file/file_parsing.h +23 -0
- data/ext/fast_mmaped_file/file_reading.c +93 -0
- data/ext/fast_mmaped_file/file_reading.h +30 -0
- data/ext/fast_mmaped_file/globals.h +13 -0
- data/ext/fast_mmaped_file/hashmap.c +692 -0
- data/ext/fast_mmaped_file/hashmap.h +266 -0
- data/ext/fast_mmaped_file/jsmn.c +313 -0
- data/ext/fast_mmaped_file/jsmn.h +76 -0
- data/ext/fast_mmaped_file/mmap.h +2 -0
- data/ext/fast_mmaped_file/rendering.c +92 -0
- data/ext/fast_mmaped_file/rendering.h +8 -0
- data/ext/fast_mmaped_file/utils.c +25 -0
- data/ext/fast_mmaped_file/utils.h +26 -0
- data/ext/fast_mmaped_file/value_access.c +160 -0
- data/ext/fast_mmaped_file/value_access.h +14 -0
- data/lib/fast_mmaped_file.bundle +0 -0
- data/lib/prometheus/client/formats/text.rb +4 -2
- data/lib/prometheus/client/helper/plain_file.rb +6 -3
- data/lib/prometheus/client/version.rb +1 -1
- metadata +19 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: prometheus-client-mmap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.0.
|
4
|
+
version: 0.7.0.beta40
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Schmidt
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-11-
|
12
|
+
date: 2017-11-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: mmap2
|
@@ -105,7 +105,24 @@ files:
|
|
105
105
|
- README.md
|
106
106
|
- ext/fast_mmaped_file/extconf.rb
|
107
107
|
- ext/fast_mmaped_file/fast_mmaped_file.c
|
108
|
+
- ext/fast_mmaped_file/file_aggregation.c
|
109
|
+
- ext/fast_mmaped_file/file_format.h
|
110
|
+
- ext/fast_mmaped_file/file_parsing.c
|
111
|
+
- ext/fast_mmaped_file/file_parsing.h
|
112
|
+
- ext/fast_mmaped_file/file_reading.c
|
113
|
+
- ext/fast_mmaped_file/file_reading.h
|
114
|
+
- ext/fast_mmaped_file/globals.h
|
115
|
+
- ext/fast_mmaped_file/hashmap.c
|
116
|
+
- ext/fast_mmaped_file/hashmap.h
|
117
|
+
- ext/fast_mmaped_file/jsmn.c
|
118
|
+
- ext/fast_mmaped_file/jsmn.h
|
108
119
|
- ext/fast_mmaped_file/mmap.h
|
120
|
+
- ext/fast_mmaped_file/rendering.c
|
121
|
+
- ext/fast_mmaped_file/rendering.h
|
122
|
+
- ext/fast_mmaped_file/utils.c
|
123
|
+
- ext/fast_mmaped_file/utils.h
|
124
|
+
- ext/fast_mmaped_file/value_access.c
|
125
|
+
- ext/fast_mmaped_file/value_access.h
|
109
126
|
- lib/fast_mmaped_file.bundle
|
110
127
|
- lib/prometheus.rb
|
111
128
|
- lib/prometheus/client.rb
|