neetodeploy-autoscale 0.9.0 → 1.0.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc7cefdb46ea98797e01a08b072dd32cf2a1157833b1d3ee102e6609a3931bc5
|
4
|
+
data.tar.gz: a4d797d550f3c28343b119502846fa1e8eabe7401b9c6f342bcf607a51b2f04b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ceb234f4498a4b0e8b3f508a98476413940d01c530f85e29ff38445acf3c0897738e200b89e0453abc7358c32752dca9b9d4f2a42212d1e9f40357682d4161ed
|
7
|
+
data.tar.gz: ca87411a5fae1827f9a6e5168069279bd97d694a9f062dc02f7f554da9826249ab4f96a641f5e5e1090e4e5911bf5b12e99fe5f9d9a7eb0f5e705eef4ee0a10d
|
@@ -19,8 +19,12 @@ module Neetodeploy
|
|
19
19
|
post = Net::HTTP::Post.new(url)
|
20
20
|
post["AuthToken"] = "K0An3O3MSyEEMTCnRd1IHgGjdGQkzy"
|
21
21
|
|
22
|
-
|
23
|
-
|
22
|
+
begin
|
23
|
+
Net::HTTP.start(url.host, url.port, use_ssl: true) do |http|
|
24
|
+
http.request(post)
|
25
|
+
end
|
26
|
+
rescue e
|
27
|
+
puts "Exception in sending post request to exporter from Rails process: #{e.message}"
|
24
28
|
end
|
25
29
|
|
26
30
|
@app.call(env)
|
@@ -21,8 +21,13 @@ module Neetodeploy
|
|
21
21
|
url.query = query_params
|
22
22
|
post = Net::HTTP::Post.new(url)
|
23
23
|
post["AuthToken"] = "K0An3O3MSyEEMTCnRd1IHgGjdGQkzy"
|
24
|
-
|
25
|
-
|
24
|
+
|
25
|
+
begin
|
26
|
+
Net::HTTP.start(url.host, url.port, use_ssl: true) do |http|
|
27
|
+
http.request(post)
|
28
|
+
end
|
29
|
+
rescue e
|
30
|
+
puts "Exception in sending post request to exporter from Sidekiq process: #{e.message}"
|
26
31
|
end
|
27
32
|
end
|
28
33
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neetodeploy-autoscale
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sreeram Venkitesh
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: For automatically scaling your Rails application based on network metrics
|
14
14
|
email:
|