finch 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +9 -2
- data/lib/finch/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -4,9 +4,16 @@ finch is a barebone monitoring dashboard.
|
|
4
4
|
|
5
5
|
![finch](https://raw.github.com/chatgris/finch/master/example/finch.jpg)
|
6
6
|
|
7
|
+
I was looking for a dashboard that could be used to monitor HTTP apps, databases
|
8
|
+
and messaging services. It wanted it to be easy to use and without any
|
9
|
+
dependencies.
|
10
|
+
|
11
|
+
The search of such a board was starting to take longer than the time required to
|
12
|
+
create one. Basically.
|
13
|
+
|
7
14
|
## Installation
|
8
15
|
|
9
|
-
Ruby 1.9.2 is required.
|
16
|
+
Ruby 1.9.2 (or superior) is required.
|
10
17
|
|
11
18
|
Install it with rubygems:
|
12
19
|
|
@@ -29,7 +36,7 @@ require "finch"
|
|
29
36
|
|
30
37
|
Finch.declare do |declarator|
|
31
38
|
declarator.ping "Admin", host: "localhost", port: 3000, group: "Apps"
|
32
|
-
declarator.ping "Front", host: "localhost", port:
|
39
|
+
declarator.ping "Front", host: "localhost", port: 3001, group: "Apps"
|
33
40
|
declarator.ping "Public Api", host: "localhost", port: 3200, group: "Api"
|
34
41
|
declarator.ping "Private Api", host: "localhost", port: 3300, group: "Api"
|
35
42
|
declarator.ping "Redis", host: "localhost", port: 6379, group: "DB"
|
data/lib/finch/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: finch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -87,7 +87,7 @@ files:
|
|
87
87
|
- lib/finch.rb
|
88
88
|
- lib/finch/version.rb
|
89
89
|
- lib/views/ping.slim
|
90
|
-
homepage:
|
90
|
+
homepage: http://chatgris.github.com/finch
|
91
91
|
licenses: []
|
92
92
|
post_install_message:
|
93
93
|
rdoc_options: []
|