-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.html
80 lines (73 loc) · 2.09 KB
/
readme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MuninStats Plugin Readme</title>
<style type="text/css">
body, th, td {
font-size : 100%;
font-family : tahoma, verdana, arial, helvetica, sans-serif;
font-size : 0.8em;
}
h1 {
font-size : 1.4em;
font-weight: bold;
font-family : tahoma, arial, helvetica, sans-serif;
border-bottom : 1px #ccc solid;
padding-bottom : 2px;
}
h2 {
font-size : 12pt;
font-weight : bold;
}
p {
padding-left : 20px;
}
ul {
padding-left : 40px;
}
tt {
font-family : courier new;
font-weight : bold;
color : #060;
}
</style>
</head>
<body>
<h1>MuninStats Plugin Readme</h1>
<h2>Overview</h2>
<p>
MuninStats is an Openfire monitoring plugin. The plugin writes statistics
data to a plain textfile from where it can be parsed by Munin or any other
external monitoring tool. Statistics that will be exported include:
</p>
<ul>
<li>user (registered users, online users, online ressources)</li>
<li>throughput (incoming and outgoing packets)</li>
<li>memory (available, free and used memory)</li>
<li>server2server connections</li>
</ul>
<h2>Installation</h2>
<p>
Copy MuninStats.jar into the plugins directory of your Openfire installation.
The plugin will then be automatically deployed. To upgrade to a new version,
copy the new MuninStats.jar file over the existing file.
</p>
<h2>Confiuguration</h2>
<p>
You have to configure the location where the plugin stores statuslogs as well
as the interval for the plugin to export new data.
</p>
<ul>
<li><tt>plugin.muninstats.statuslogfile</tt><br />
The absolute location of the file where statistics will be stored. This
variable defaults to <b>/opt/openfire/resources/statistics/muninstats.log</b>.
</li>
<li><tt>plugin.muninstats.updateinterval</tt><br />
The interval for exporting new statistics in seconds. This variable
defaults to <b>300 seconds</b>.
</li>
</ul>
</body>
</html>