signalfx 3.1.1 → 3.2.0
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/README.md +11 -8
- data/lib/signalfx/version.rb +1 -1
- data/signalfx.gemspec +0 -2
- metadata +3 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ce1db5601fdadfa9bf04572cc0cfee2449a9de8bc16aa906cdcd958f87a578e
|
4
|
+
data.tar.gz: 79ab897c2ba2b576ca19b52b49f93ac4871f406c4ec96337bb184ca2674b17df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bffa247b278caa35adb51d1bc87160e1d49836d3cf9a28f1f1ea886aae2c6407d17ac6385781a3fac080c2eee420e6902b298a73abfcb17bb69b5bb692195caa
|
7
|
+
data.tar.gz: a480615cc7a023d7c49f6876dd229281f13554e49b6fa114e7a84f1fbf36cbebb20e5e4c0f1a42159ec962f40ced466f92d592eff81f0f35f9f1a55d2fd071fd
|
data/README.md
CHANGED
@@ -34,12 +34,12 @@ installing a more recent gem. Building and installing signalfx from source will
|
|
34
34
|
|
35
35
|
### Configuring your endpoints
|
36
36
|
|
37
|
-
In order to send your data to the correct realm, you may need to configure your
|
38
|
-
endpoints. If no endpoints are set manually, this library uses the ``us0`` realm by default.
|
37
|
+
In order to send your data to the correct realm, you may need to configure your
|
38
|
+
endpoints. If no endpoints are set manually, this library uses the ``us0`` realm by default.
|
39
39
|
If you are not in this realm, you will need to explicitly set the
|
40
40
|
endpoint config options below. To determine if you are in a different realm and need to
|
41
|
-
explicitly set the endpoints, check your profile page in the SignalFx
|
42
|
-
web application.
|
41
|
+
explicitly set the endpoints, check your profile page in the SignalFx
|
42
|
+
web application.
|
43
43
|
|
44
44
|
```ruby
|
45
45
|
require('signalfx')
|
@@ -210,13 +210,16 @@ now, the only supported transport mechanism is WebSockets.
|
|
210
210
|
|
211
211
|
By default, this library connects to the `us0` stream endpoint.
|
212
212
|
If you are not in this realm, you will need to explicitly set the
|
213
|
-
endpoint config options below when creating the client.
|
213
|
+
endpoint config options below when creating the client.
|
214
214
|
To determine if you are in a different realm and need to
|
215
215
|
explicitly set the endpoints, check your profile page in the SignalFx web application.
|
216
216
|
|
217
217
|
```ruby
|
218
|
-
client = SignalFx.new(
|
219
|
-
|
218
|
+
client = SignalFx.new(
|
219
|
+
'ORG_TOKEN',
|
220
|
+
ingest_endpoint: 'https://ingest.{REALM}.signalfx.com',
|
221
|
+
stream_endpoint: 'wss://stream.{REALM}.signalfx.com'
|
222
|
+
)
|
220
223
|
```
|
221
224
|
|
222
225
|
|
@@ -228,7 +231,7 @@ signalflow = client.signalflow()
|
|
228
231
|
|
229
232
|
For the full API see [the RubyDocs for
|
230
233
|
the SignalFlow
|
231
|
-
client](
|
234
|
+
client](https://www.rubydoc.info/github/signalfx/signalfx-ruby/master/SignalFlowClient/)
|
232
235
|
(the `signalflow` var above).
|
233
236
|
|
234
237
|
There is also [a demo script](./examples/signalflow.rb) that shows basic usage.
|
data/lib/signalfx/version.rb
CHANGED
data/signalfx.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: signalfx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- SignalFx, Inc
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -156,20 +156,6 @@ dependencies:
|
|
156
156
|
- - "<"
|
157
157
|
- !ruby/object:Gem::Version
|
158
158
|
version: 0.12.0
|
159
|
-
- !ruby/object:Gem::Dependency
|
160
|
-
name: thor
|
161
|
-
requirement: !ruby/object:Gem::Requirement
|
162
|
-
requirements:
|
163
|
-
- - '='
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: 0.20.0
|
166
|
-
type: :runtime
|
167
|
-
prerelease: false
|
168
|
-
version_requirements: !ruby/object:Gem::Requirement
|
169
|
-
requirements:
|
170
|
-
- - '='
|
171
|
-
- !ruby/object:Gem::Version
|
172
|
-
version: 0.20.0
|
173
159
|
description: This is a programmatic interface in Ruby for SignalFx's metadata and
|
174
160
|
ingest APIs. It is meant to provide a base for communicating with SignalFx APIs
|
175
161
|
that can be easily leveraged by scripts and applications to interact with SignalFx
|
@@ -222,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
222
208
|
- !ruby/object:Gem::Version
|
223
209
|
version: '0'
|
224
210
|
requirements: []
|
225
|
-
rubygems_version: 3.1.
|
211
|
+
rubygems_version: 3.1.2
|
226
212
|
signing_key:
|
227
213
|
specification_version: 4
|
228
214
|
summary: Ruby client library for SignalFx
|