This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathreadme.html
48 lines (46 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>OnlineUsers Plugin Readme</title>
<style type="text/css" media="screen">
body {
font-family: Helvetica, Arial, sans-serif;
padding: 10px;
}
pre {
display: inline-block;
padding: 2px 5px;
margin: 0 5px;
background-color: #f2f2f2;
border: 1px solid #ccc;
}
#footer {
font-size: 80%;
border-top: 1px solid #ccc;
padding-top: 20px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>OnlineUsers Plugin Readme</h1>
<h2>Number of online users</h2>
<div>
The OnlineUsers Plugin exposes the number of currently online users through HTTP.<br />
<br />Just open <pre>http://yourserver:9090/plugins/onlineusers</pre> to get it.
</div>
<h2>List of online users</h2>
<div>
Additionally, also the list of online users is exposed through HTTP in the JSON format.<br />
<br />Just open <pre>http://yourserver:9090/plugins/onlineusers/list</pre> to get it.
</div>
<h2>Settings</h3>
<div>
If the list of online users should be public (no admin authentication needed), add the following setting to your
system properties in the admin console:<br/>
<pre>plugin.onlineUsers.list.disableAuth = true</pre>
</div>
<div id="footer">Brought to you by <a href="http://www.amiadogroup.com" title="Amiado Group">Amiado Group</a> — Source available on <a href="http://github.com/amiadogroup/onlineUsersPlugin" title="GitHub repository">GitHub</a></div>
</body>
</html>