prometheus-api-client 0.6.1 → 0.6.2
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 +5 -5
- data/README.md +4 -4
- data/lib/prometheus/api_client/version.rb +1 -1
- metadata +11 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 6e310a4a142367008c1ae3b15b6569d5e77f5c342dbf0f9bde0953e1e18f2957
|
|
4
|
+
data.tar.gz: bdb110737b8e6dcf411dfb2004b443699478bb2276d4ce88419b6fc0d67bf4e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75a25b92d3f1ecf16ca9a9fae0df98383d3ec50db46cb04a660baa1ced3f069bb2ef6a278c969141b75861977347d72b2af71f36994a9a05dc56f237bcdb41a5
|
|
7
|
+
data.tar.gz: 5b6a0c287139dc68a8af7936a310331897f20a4ab49d47dbd2e6b7457e6e567065a533e7714257d9797633e0de05a9a1b21a8e30650230c242513f1ee09eca86
|
data/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Prometheus API Ruby Client
|
|
2
2
|
|
|
3
3
|
[![Gem Version][1]](http://badge.fury.io/rb/prometheus-api-client)
|
|
4
|
-
[![Build Status][2]](http://travis-ci.org/
|
|
5
|
-
[![Build Status][3]](https://codeclimate.com/github/
|
|
6
|
-
[![Coverage Status][4]](https://coveralls.io/github/
|
|
4
|
+
[![Build Status][2]](http://travis-ci.org/prometheus/prometheus_api_client_ruby)
|
|
5
|
+
[![Build Status][3]](https://codeclimate.com/github/prometheus/prometheus_api_client_ruby)
|
|
6
|
+
[![Coverage Status][4]](https://coveralls.io/github/prometheus/prometheus_api_client_ruby?branch=master)
|
|
7
7
|
|
|
8
8
|
A Ruby library for reading metrics stored on a Prometheus server.
|
|
9
9
|
|
|
@@ -42,7 +42,7 @@ prometheus = Prometheus::ApiClient.client(url: 'https://example.com:443'
|
|
|
42
42
|
credentials: { token: 'TopSecret' })
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
#### Low
|
|
45
|
+
#### Low level calls
|
|
46
46
|
|
|
47
47
|
###### query
|
|
48
48
|
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: prometheus-api-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yaacov Zamir
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '0.9'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 2.0.0
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '0.9'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 2.0.0
|
|
27
33
|
description:
|
|
28
34
|
email:
|
|
29
35
|
- kobi.zamir@gmail.com
|
|
@@ -55,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
55
61
|
- !ruby/object:Gem::Version
|
|
56
62
|
version: '0'
|
|
57
63
|
requirements: []
|
|
58
|
-
|
|
59
|
-
rubygems_version: 2.6.14
|
|
64
|
+
rubygems_version: 3.0.3
|
|
60
65
|
signing_key:
|
|
61
66
|
specification_version: 4
|
|
62
67
|
summary: A suite of reading metrics stored on a Prometheus server.
|