visage-app 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/man/visage-app.5 +42 -0
- data/man/visage-app.5.ronn +41 -0
- metadata +4 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.2
|
data/man/visage-app.5
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
|
+
.
|
4
|
+
.TH "VISAGE\-APP" "5" "October 2010" "" ""
|
5
|
+
.
|
6
|
+
.SH "NAME"
|
7
|
+
\fBvisage\-app\fR \- a web (interface | service) for viewing collectd statistics
|
8
|
+
.
|
9
|
+
.SH "SYNOPSIS"
|
10
|
+
\fBvisage\-app\fR \fIstart|genapache\fR
|
11
|
+
.
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
Visage is a web interface for viewing collectd statistics\.
|
14
|
+
.
|
15
|
+
.P
|
16
|
+
It also provides a JSON interface onto collectd\'s RRD data, giving you an easy way to mash up the data\.
|
17
|
+
.
|
18
|
+
.SH "OPTIONS"
|
19
|
+
.
|
20
|
+
.TP
|
21
|
+
\fBstart\fR
|
22
|
+
Start visage on \fB127\.0\.0\.1:9292\fR
|
23
|
+
.
|
24
|
+
.TP
|
25
|
+
\fBgenapache\fR
|
26
|
+
Generate a vhost suitable for Passenger + Apache\. Will load Visage from the installed gem\.
|
27
|
+
.
|
28
|
+
.SH "ENVIRONMENT"
|
29
|
+
.
|
30
|
+
.TP
|
31
|
+
\fBCONFIG_PATH\fR
|
32
|
+
Where to look for configuration files\. Added to the beginning of config load path, so files found in here take precedence over shipped config files\.
|
33
|
+
.
|
34
|
+
.TP
|
35
|
+
\fBRRDDIR\fR
|
36
|
+
Where to look for collectd\'s RRDs\. Must correspond with collectd\'s \fBrrdtool\fR plugin\'s \fBDataDir\fR value\.
|
37
|
+
.
|
38
|
+
.SH "AUTHOR"
|
39
|
+
Lindsay Holmwood \fIlindsay@holmwood\.id\.au\fR
|
40
|
+
.
|
41
|
+
.SH "COPYRIGHT"
|
42
|
+
MIT Licensed\.
|
@@ -0,0 +1,41 @@
|
|
1
|
+
visage-app(5) -- a web (interface | service) for viewing collectd statistics
|
2
|
+
============================================================================
|
3
|
+
|
4
|
+
## SYNOPSIS
|
5
|
+
|
6
|
+
`visage-app` <start|genapache>
|
7
|
+
|
8
|
+
## DESCRIPTION
|
9
|
+
|
10
|
+
Visage is a web interface for viewing collectd statistics.
|
11
|
+
|
12
|
+
It also provides a JSON interface onto collectd's RRD data, giving you an
|
13
|
+
easy way to mash up the data.
|
14
|
+
|
15
|
+
## OPTIONS
|
16
|
+
|
17
|
+
* `start`:
|
18
|
+
Start visage on `127.0.0.1:9292`
|
19
|
+
|
20
|
+
* `genapache`:
|
21
|
+
Generate a vhost suitable for Passenger + Apache. Will load Visage from
|
22
|
+
the installed gem.
|
23
|
+
|
24
|
+
## ENVIRONMENT
|
25
|
+
|
26
|
+
* `CONFIG_PATH`:
|
27
|
+
Where to look for configuration files. Added to the beginning of config
|
28
|
+
load path, so files found in here take precedence over shipped config files.
|
29
|
+
|
30
|
+
* `RRDDIR`:
|
31
|
+
Where to look for collectd's RRDs. Must correspond with collectd's `rrdtool`
|
32
|
+
plugin's `DataDir` value.
|
33
|
+
|
34
|
+
## AUTHOR
|
35
|
+
|
36
|
+
Lindsay Holmwood <lindsay@holmwood.id.au>
|
37
|
+
|
38
|
+
## COPYRIGHT
|
39
|
+
|
40
|
+
MIT Licensed.
|
41
|
+
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 2
|
9
|
+
version: 0.3.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Lindsay Holmwood
|
@@ -145,6 +145,8 @@ files:
|
|
145
145
|
- lib/visage/views/layout.haml
|
146
146
|
- lib/visage/views/profile.haml
|
147
147
|
- lib/visage/views/profiles.haml
|
148
|
+
- man/visage-app.5
|
149
|
+
- man/visage-app.5.ronn
|
148
150
|
has_rdoc: true
|
149
151
|
homepage: http://auxesis.github.com/visage
|
150
152
|
licenses: []
|