signalfx 3.1.1 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 670a3ffcd46baae47aaefbcb622426e9fae027750802206e7bd74b6fecb9928a
4
- data.tar.gz: 6a757389d9ef2f19b4f58747f0d6ef762a9f809a189b0b1c7692ef950236e093
3
+ metadata.gz: 6ce1db5601fdadfa9bf04572cc0cfee2449a9de8bc16aa906cdcd958f87a578e
4
+ data.tar.gz: 79ab897c2ba2b576ca19b52b49f93ac4871f406c4ec96337bb184ca2674b17df
5
5
  SHA512:
6
- metadata.gz: 751e1649262c8e0d0d3fa6ccc02e71ec602ff166cc7a78d6b0e1c41a514983dfd8e106cd22dfabb9400f48d484a0b3eebe72d50dd0507b3369ddc3e813772217
7
- data.tar.gz: b9db8d6fdbed7c32a8f64fa449a36a7830d6f70e1be3606a2bd863046cea6f8f437204b7106f52be8afac3c56b1a7e5a06ae604754637356dd7bb47c4c03eaa8
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('ORG_TOKEN', ingest_endpoint: 'https://ingest.{REALM}.signalfx.com',
219
- stream_endpoint: 'https:/stream.{REALM}.signalfx.com')
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](http://www.rubydoc.info/github/signalfx/signalfx-ruby/master/SignalFlowClient/)
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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  module SignalFx
4
4
  module Version
5
- VERSION = '3.1.1'
5
+ VERSION = '3.2.0'
6
6
  NAME = 'signalfx-ruby-client'
7
7
  end
8
8
  end
data/signalfx.gemspec CHANGED
@@ -44,6 +44,4 @@ Gem::Specification.new do |spec|
44
44
  spec.add_dependency "protobuf", ">= 3.5.1"
45
45
  spec.add_dependency "rest-client", "~> 2.0"
46
46
  spec.add_dependency "faye-websocket", ">= 0.10.7", "< 0.12.0"
47
- spec.add_dependency "thor", "= 0.20.0"
48
-
49
47
  end
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.1.1
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-01-20 00:00:00.000000000 Z
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.4
211
+ rubygems_version: 3.1.2
226
212
  signing_key:
227
213
  specification_version: 4
228
214
  summary: Ruby client library for SignalFx