clarity 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +12 -14
- data/lib/clarity.rb +1 -1
- metadata +11 -9
data/README.rdoc
CHANGED
@@ -1,32 +1,30 @@
|
|
1
1
|
= Clarity
|
2
2
|
|
3
|
-
* http://github.com
|
3
|
+
* http://github.com/tobi/clarity
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
7
|
Clarity - a log search tool
|
8
8
|
By John Tajima & Tobi Lütke
|
9
9
|
|
10
|
-
Clarity is
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
production servers.
|
16
|
-
|
17
|
-
Clarity requires eventmachine and eventmachine/evma_httpserver.
|
18
|
-
|
19
|
-
sudo gem install eventmachine eventmachine_httpserver
|
10
|
+
Clarity is a Splunk like web interface for your server log files. It supports
|
11
|
+
searching (using grep) as well as trailing log files. It has been written using
|
12
|
+
the event based architecture based on EventMachine and so allows real-time search
|
13
|
+
of very large log files. If you hit the browser Stop button it will also kill
|
14
|
+
the grep / tail utility.
|
20
15
|
|
16
|
+
We wrote Clarity to allow our support staff to use a simple interface to look
|
17
|
+
through the various log files in our server farm. The application was such a
|
18
|
+
big success internally that we decided to release it as open source.
|
21
19
|
|
22
20
|
== REQUIREMENTS:
|
23
21
|
|
24
|
-
* eventmachine
|
25
|
-
* eventmachine_httpserver
|
22
|
+
* eventmachine
|
23
|
+
* eventmachine_httpserver
|
26
24
|
|
27
25
|
== INSTALL:
|
28
26
|
|
29
|
-
* sudo gem install clarity
|
27
|
+
* sudo gem install clarity
|
30
28
|
|
31
29
|
== LICENSE:
|
32
30
|
|
data/lib/clarity.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clarity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Tobias L\xC3\xBCtke"
|
@@ -45,12 +45,14 @@ dependencies:
|
|
45
45
|
version:
|
46
46
|
description: "Clarity - a log search tool\n\
|
47
47
|
By John Tajima & Tobi L\xC3\xBCtke\n\n\
|
48
|
-
Clarity is
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
Clarity
|
48
|
+
Clarity is a Splunk like web interface for your server log files. It supports \n\
|
49
|
+
searching (using grep) as well as trailing log files. It has been written using \n\
|
50
|
+
the event based architecture based on EventMachine and so allows real-time search\n\
|
51
|
+
of very large log files. If you hit the browser Stop button it will also kill \n\
|
52
|
+
the grep / tail utility. \n\n\
|
53
|
+
We wrote Clarity to allow our support staff to use a simple interface to look\n\
|
54
|
+
through the various log files in our server farm. The application was such a \n\
|
55
|
+
big success internally that we decided to release it as open source."
|
54
56
|
email:
|
55
57
|
- tobi@shopify.com
|
56
58
|
- john@shopify.com
|
@@ -101,7 +103,7 @@ files:
|
|
101
103
|
- views/error.html.erb
|
102
104
|
- views/index.html.erb
|
103
105
|
has_rdoc: true
|
104
|
-
homepage: http://github.com
|
106
|
+
homepage: http://github.com/tobi/clarity
|
105
107
|
licenses: []
|
106
108
|
|
107
109
|
post_install_message: PostInstall.txt
|
@@ -128,7 +130,7 @@ rubyforge_project: clarity
|
|
128
130
|
rubygems_version: 1.3.5
|
129
131
|
signing_key:
|
130
132
|
specification_version: 3
|
131
|
-
summary: "Clarity - a log search tool By John Tajima & Tobi L\xC3\xBCtke Clarity is
|
133
|
+
summary: "Clarity - a log search tool By John Tajima & Tobi L\xC3\xBCtke Clarity is a Splunk like web interface for your server log files"
|
132
134
|
test_files:
|
133
135
|
- test/test_helper.rb
|
134
136
|
- test/test_string_scanner.rb
|