prometheus-client-mmap 0.26.0-x86_64-darwin → 0.26.1-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +22 -3
- data/lib/3.1/fast_mmaped_file.bundle +0 -0
- data/lib/3.2/fast_mmaped_file.bundle +0 -0
- data/lib/prometheus/client/helper/loader.rb +5 -1
- data/lib/prometheus/client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5e6a47564cdf94bbdc5239e944b883bc876afa39b7eb08744eb987fdb59060e
|
4
|
+
data.tar.gz: e0d6309c130a7eb1483386fadc565c8badf412e6c9cc8fe9eed06e9728a8161e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 782a1f3aa34f60b408b43bafb0f866a7a3849dfa7067eda74e2f8755a887fc38c42a3ec3a461e806281b3e663fd26b3392ed1bdf276e17ac15b33856742563c8
|
7
|
+
data.tar.gz: 6dc523ed5e961e6497f30f0ba7c08681415a242fde4ff699d101a0dc8ef29727c42bae8482bb1cdb0cd0dfea081066b1461e31aae837f4583e75c63b808df2a5
|
data/README.md
CHANGED
@@ -10,7 +10,24 @@ through a HTTP interface. Intended to be used together with a
|
|
10
10
|
|
11
11
|
[![Gem Version][4]](http://badge.fury.io/rb/prometheus-client-mmap)
|
12
12
|
[![Build Status][3]](https://gitlab.com/gitlab-org/prometheus-client-mmap/commits/master)
|
13
|
-
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
prometheus-client-mmap ships with [precompiled native gems](https://rubygems.org/gems/prometheus-client-mmap).
|
17
|
+
Install the gem via:
|
18
|
+
|
19
|
+
```shell
|
20
|
+
gem install prometheus-client-mmap
|
21
|
+
```
|
22
|
+
|
23
|
+
### Requirements for building from source
|
24
|
+
|
25
|
+
Building from source requires a number of dependencies:
|
26
|
+
|
27
|
+
* Rust v1.65+
|
28
|
+
* clang 5.0 or higher for [bindgen](https://rust-lang.github.io/rust-bindgen/requirements.html)
|
29
|
+
* `make`
|
30
|
+
* A C compiler (for legacy extension, which will be removed soon)
|
14
31
|
|
15
32
|
## Usage
|
16
33
|
|
@@ -36,7 +53,7 @@ http_requests.increment
|
|
36
53
|
|
37
54
|
## Rust extension
|
38
55
|
|
39
|
-
In an effort to improve maintainability, there is now
|
56
|
+
In an effort to improve maintainability, there is now a Rust
|
40
57
|
implementation that reads the metric files and outputs the multiprocess
|
41
58
|
metrics to text. If `rustc` is available, then the Rust extension will
|
42
59
|
be built automatically. The `use_rust` keyword argument can be used:
|
@@ -45,8 +62,10 @@ be built automatically. The `use_rust` keyword argument can be used:
|
|
45
62
|
puts Prometheus::Client::Formats::Text.marshal_multiprocess(use_rust: true)
|
46
63
|
```
|
47
64
|
|
65
|
+
Starting with v0.26.0, `use_rust` defaults to `true`.
|
66
|
+
|
48
67
|
Note that this parameter will likely be deprecated and removed once the Rust
|
49
|
-
extension becomes the
|
68
|
+
extension becomes the only supported mode.
|
50
69
|
|
51
70
|
### Rack middleware
|
52
71
|
|
Binary file
|
Binary file
|
@@ -29,7 +29,11 @@ module Prometheus
|
|
29
29
|
load_rust_extension
|
30
30
|
true
|
31
31
|
rescue LoadError
|
32
|
-
|
32
|
+
warn <<~WARN
|
33
|
+
WARNING: The Rust extension for prometheus-client-mmap is unavailable, falling back to the legacy C extension.
|
34
|
+
The Rust extension will be required in the next version. If you are compiling this gem from source,
|
35
|
+
ensure your build system has a Rust compiler and clang: https://gitlab.com/gitlab-org/ruby/gems/prometheus-client-mmap
|
36
|
+
WARN
|
33
37
|
false
|
34
38
|
end
|
35
39
|
end
|
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.26.
|
4
|
+
version: 0.26.1
|
5
5
|
platform: x86_64-darwin
|
6
6
|
authors:
|
7
7
|
- Tobias Schmidt
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2023-
|
14
|
+
date: 2023-07-12 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rb_sys
|