redis_dashboard 0.3.0 → 0.3.1
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/CHANGELOG.md +10 -4
- data/Gemfile.lock +15 -11
- data/lib/redis_dashboard/application.rb +1 -1
- data/lib/redis_dashboard/views/config.erb +1 -1
- data/lib/redis_dashboard/views/memory.erb +1 -1
- data/redis_dashboard.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e78b5465c79a495d9a32eaa831e3494424768613d5fb450a3c8ddc77b3a9af79
|
|
4
|
+
data.tar.gz: 5c1b6f4d0cd7304e387c53f52feee926bc7389d72d0031286ff89635c0922b78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49088b2f4c4251a3c82dad08e233dca6a65d1912f9a7079497cdef77dd27e3ff974158548d95eb0dbadbbfaea4a83527a892e3ebfb94a1bacfe1b03401de23b1
|
|
7
|
+
data.tar.gz: 55aee7635ffbe175cb9b463d4b35d04ef95af8da01cd1b86574489009e8150925af2fbec0bf8538c33d1e85efc4e8388d66f0c180ed1fb9c0761f4ddce47de70
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog of Redis Dashboard
|
|
2
|
+
|
|
3
|
+
## 0.3.1 (2023-09-12)
|
|
4
|
+
|
|
5
|
+
* Fix key filtering when there is no query
|
|
6
|
+
|
|
7
|
+
## 0.3.0 (2021-11-04)
|
|
2
8
|
|
|
3
9
|
* Add keyspace explorer
|
|
4
10
|
* Use friendly URLs with server host name
|
|
@@ -6,13 +12,13 @@
|
|
|
6
12
|
* Use Ariato CSS framework https://ariato.org
|
|
7
13
|
* Remove sassc dependency to switch to plain CSS
|
|
8
14
|
|
|
9
|
-
## 0.2.0
|
|
15
|
+
## 0.2.0 (2020-04-23)
|
|
10
16
|
|
|
11
17
|
* Add memory stats
|
|
12
18
|
* Replace deprecated sass by sassc
|
|
13
19
|
|
|
14
|
-
## 0.1.6
|
|
20
|
+
## 0.1.6 (2019-08-16)
|
|
15
21
|
|
|
16
22
|
* Switch to erubi
|
|
17
23
|
* Escape HTML by default
|
|
18
|
-
* Fix cache hit ratio
|
|
24
|
+
* Fix cache hit ratio
|
data/Gemfile.lock
CHANGED
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
connection_pool (2.3.0)
|
|
5
|
+
erubi (1.12.0)
|
|
6
|
+
mustermann (3.0.0)
|
|
6
7
|
ruby2_keywords (~> 0.0.1)
|
|
7
|
-
rack (2.2.
|
|
8
|
-
rack-protection (
|
|
8
|
+
rack (2.2.6.2)
|
|
9
|
+
rack-protection (3.0.5)
|
|
9
10
|
rack
|
|
10
|
-
redis (
|
|
11
|
+
redis (5.0.6)
|
|
12
|
+
redis-client (>= 0.9.0)
|
|
13
|
+
redis-client (0.12.1)
|
|
14
|
+
connection_pool
|
|
11
15
|
ruby2_keywords (0.0.5)
|
|
12
|
-
sinatra (
|
|
13
|
-
mustermann (~>
|
|
14
|
-
rack (~> 2.2)
|
|
15
|
-
rack-protection (=
|
|
16
|
+
sinatra (3.0.5)
|
|
17
|
+
mustermann (~> 3.0)
|
|
18
|
+
rack (~> 2.2, >= 2.2.4)
|
|
19
|
+
rack-protection (= 3.0.5)
|
|
16
20
|
tilt (~> 2.0)
|
|
17
|
-
tilt (2.0.
|
|
21
|
+
tilt (2.0.11)
|
|
18
22
|
|
|
19
23
|
PLATFORMS
|
|
20
24
|
ruby
|
|
@@ -25,4 +29,4 @@ DEPENDENCIES
|
|
|
25
29
|
sinatra
|
|
26
30
|
|
|
27
31
|
BUNDLED WITH
|
|
28
|
-
2.
|
|
32
|
+
2.2.22
|
|
@@ -39,7 +39,7 @@ class RedisDashboard::Application < Sinatra::Base
|
|
|
39
39
|
|
|
40
40
|
get "/:server/keyspace/:db" do
|
|
41
41
|
client.connection.select(params[:db].sub(/^db/, ""))
|
|
42
|
-
erb(:keys, locals: {client: client, keys: client.keys(params[:query])})
|
|
42
|
+
erb(:keys, locals: {client: client, keys: client.keys(params[:query] || "")})
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
get "/:server/keyspace/:db/*" do
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</table>
|
|
10
10
|
</div>
|
|
11
11
|
<div role="alert">
|
|
12
|
-
<a href="https://
|
|
12
|
+
<a href="https://github.com/redis/redis/blob/unstable/redis.conf" target="_blank" rel="noopener nofollower">
|
|
13
13
|
Redis config documentation
|
|
14
14
|
</a>
|
|
15
15
|
</div>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
</table>
|
|
20
20
|
</div>
|
|
21
21
|
<div role="alert">
|
|
22
|
-
<a href="https://
|
|
22
|
+
<a href="https://redis.io/commands/memory-stats" target="_blank" rel="noopener nofollower">
|
|
23
23
|
Redis memory stats documentation
|
|
24
24
|
</a>
|
|
25
25
|
</div>
|
data/redis_dashboard.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = "redis_dashboard"
|
|
6
|
-
spec.version = "0.3.
|
|
6
|
+
spec.version = "0.3.1"
|
|
7
7
|
spec.authors = ["Alexis Bernard"]
|
|
8
8
|
spec.email = ["alexis@bernard.io"]
|
|
9
9
|
spec.summary = "Sinatra app to monitor Redis servers."
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redis_dashboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexis Bernard
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sinatra
|
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
113
|
version: '0'
|
|
114
114
|
requirements: []
|
|
115
|
-
rubygems_version: 3.
|
|
115
|
+
rubygems_version: 3.2.22
|
|
116
116
|
signing_key:
|
|
117
117
|
specification_version: 4
|
|
118
118
|
summary: Sinatra app to monitor Redis servers.
|