waylon-core 0.1.6 → 0.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/Gemfile.lock +2 -2
- data/lib/waylon/config.rb +4 -5
- data/lib/waylon/skills/diagnostics.rb +19 -9
- data/lib/waylon/storage.rb +10 -1
- data/lib/waylon/version.rb +2 -2
- 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: 404fb7180c3c7b52c2bb3637fd3fb86d28cd5b4b1f1791e8b2fe0f94d7788ea9
|
4
|
+
data.tar.gz: 6b1da741b15a5092cddf65e81623a348454289ecb496eef1dfee081e79bb5f0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4852c99d93a726be2e21ec1a1cdf9fdf758508b09fed717ea1642b2f92c9c9adfe84e8fb922107f751859d2e3a331521d32f492911ffb6f5d82935a0ceef032
|
7
|
+
data.tar.gz: 03747526f39170835b3ab67ffc294a3e3c914968001b40e24eb5ddcd74fb2746c28ca7bb95288ab67523cf25018fe9709aa16956a54ab507839b1fe05a252771
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
waylon-core (0.
|
4
|
+
waylon-core (0.2.0)
|
5
5
|
addressable (~> 2.8)
|
6
6
|
faraday (~> 1.8)
|
7
7
|
i18n (~> 1.8)
|
@@ -50,7 +50,7 @@ GEM
|
|
50
50
|
moneta (1.5.1)
|
51
51
|
mono_logger (1.1.1)
|
52
52
|
multi_json (1.15.0)
|
53
|
-
multipart-post (2.2.
|
53
|
+
multipart-post (2.2.3)
|
54
54
|
mustermann (1.1.1)
|
55
55
|
ruby2_keywords (~> 0.0.1)
|
56
56
|
nio4r (2.5.8)
|
data/lib/waylon/config.rb
CHANGED
@@ -32,11 +32,10 @@ module Waylon
|
|
32
32
|
|
33
33
|
# Load in the config from env variables
|
34
34
|
# @return [Boolean] Was the configuration loaded?
|
35
|
-
def load_env
|
35
|
+
def load_env
|
36
36
|
@schema ||= {}
|
37
37
|
self["global.log.level"] = ENV.fetch("LOG_LEVEL", "info")
|
38
|
-
self["global.redis
|
39
|
-
self["global.redis.port"] = ENV.fetch("REDIS_PORT", "6379")
|
38
|
+
self["global.redis"] = ENV.fetch("REDIS", "localhost:6379")
|
40
39
|
self["global.admins"] = ENV.fetch("GLOBAL_ADMINS", "")
|
41
40
|
ENV.keys.grep(/CONF_/).each do |env_key|
|
42
41
|
conf_key = env_key.downcase.split("_")[1..].join(".")
|
@@ -49,13 +48,13 @@ module Waylon
|
|
49
48
|
# Provides the redis host used for most of Waylon's brain
|
50
49
|
# @return [String] The redis host
|
51
50
|
def redis_host
|
52
|
-
self["global.redis.
|
51
|
+
self["global.redis"].split(":").first
|
53
52
|
end
|
54
53
|
|
55
54
|
# Provides the redis port used for most of Waylon's brain
|
56
55
|
# @return [String] The redis host
|
57
56
|
def redis_port
|
58
|
-
self["global.redis.
|
57
|
+
self["global.redis"].split(":").last
|
59
58
|
end
|
60
59
|
|
61
60
|
# Clear the configuration
|
@@ -23,10 +23,10 @@ module Waylon
|
|
23
23
|
response << "*Skill plugins:*"
|
24
24
|
loaded_routes.each { |d| response << " - #{d}" }
|
25
25
|
response << "*Redis:*"
|
26
|
-
state, read_time, write_time = test_redis
|
26
|
+
state, raw_read_time, raw_write_time, read_time, write_time = test_redis
|
27
27
|
response << " - *Test Result:* #{state ? "Success" : "Error"}"
|
28
|
-
response << " - *Read time:* #{read_time}s"
|
29
|
-
response << " - *Write time:* #{write_time}s"
|
28
|
+
response << " - *Read time:* #{read_time}s (raw: #{raw_read_time}s)"
|
29
|
+
response << " - *Write time:* #{write_time}s (raw: #{raw_write_time}s)"
|
30
30
|
if Resque.redis.connected?
|
31
31
|
response << "*Queue Monitoring:*"
|
32
32
|
response << " - Failed jobs: #{Resque::Failure.count}"
|
@@ -43,17 +43,27 @@ module Waylon
|
|
43
43
|
SenseRegistry.instance.senses.map { |_s, c| c.name }.sort.uniq
|
44
44
|
end
|
45
45
|
|
46
|
-
def test_redis
|
47
|
-
|
46
|
+
def test_redis # rubocop:disable Metrics/AbcSize
|
47
|
+
test_key1 = ("a".."z").to_a.sample(10).join
|
48
|
+
test_key2 = ("a".."z").to_a.sample(10).join
|
48
49
|
test_value = (0..1000).to_a.sample(20).map(&:to_s).join
|
49
50
|
test_result = nil
|
50
51
|
|
51
|
-
|
52
|
-
|
52
|
+
raw_write_time = Benchmark.realtime { cache(test_key1) { test_value } }
|
53
|
+
raw_read_time = Benchmark.realtime { cache(test_key1) { test_value } }
|
54
|
+
enc_write_time = Benchmark.realtime { db.store(test_key2, test_value) }
|
55
|
+
enc_read_time = Benchmark.realtime { test_result = db.load(test_key2) }
|
53
56
|
|
54
|
-
db.delete(
|
57
|
+
db.delete(test_key1)
|
58
|
+
db.delete(test_key2)
|
55
59
|
|
56
|
-
[
|
60
|
+
[
|
61
|
+
(test_value == test_result),
|
62
|
+
raw_read_time.round(6),
|
63
|
+
raw_write_time.round(6),
|
64
|
+
enc_read_time.round(6),
|
65
|
+
enc_write_time.round(6)
|
66
|
+
]
|
57
67
|
end
|
58
68
|
end
|
59
69
|
end
|
data/lib/waylon/storage.rb
CHANGED
@@ -1,11 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
Waylon::Cache = Moneta.new(
|
4
|
+
:Redis,
|
5
|
+
url: "redis://#{ENV.fetch("REDIS", "localhost:6379")}/1"
|
6
|
+
)
|
7
|
+
|
3
8
|
module Waylon
|
4
9
|
# Used for working with the Moneta store
|
5
10
|
module Storage
|
6
11
|
Store = Moneta.new(
|
7
12
|
:Redis,
|
8
|
-
url: "redis://#{ENV.fetch("REDIS", "localhost:6379")}/
|
13
|
+
url: "redis://#{ENV.fetch("REDIS", "localhost:6379")}/2"
|
9
14
|
)
|
10
15
|
|
11
16
|
def self.cipher
|
@@ -17,6 +22,10 @@ module Waylon
|
|
17
22
|
Store.clear
|
18
23
|
end
|
19
24
|
|
25
|
+
def self.delete(key)
|
26
|
+
Store.delete(key)
|
27
|
+
end
|
28
|
+
|
20
29
|
def self.key?(name)
|
21
30
|
Store.key?(name)
|
22
31
|
end
|
data/lib/waylon/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: waylon-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Gnagy
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|