openfire_admin 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1327 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
21
+
22
+
23
+ <html>
24
+ <head>
25
+ <title>Openfire Admin Console: Cache Summary</title>
26
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8">
27
+ <link rel="stylesheet" type="text/css" href="/style/global.css">
28
+ <script language="JavaScript" type="text/javascript" src="/js/prototype.js"></script>
29
+ <script language="JavaScript" type="text/javascript" src="/js/scriptaculous.js"></script>
30
+ <script language="JavaScript" type="text/javascript" src="/js/cookies.js"></script>
31
+ <script language="JavaScript" type="text/javascript">
32
+
33
+ </script>
34
+ <script type="text/javascript" src="/js/behaviour.js"></script>
35
+ <script type="text/javascript">
36
+ // Add a nice little rollover effect to any row in a jive-table object. This will help
37
+ // visually link left and right columns.
38
+ /*
39
+ var myrules = {
40
+ '.jive-table TBODY TR' : function(el) {
41
+ el.onmouseover = function() {
42
+ this.style.backgroundColor = '#ffffee';
43
+ }
44
+ el.onmouseout = function() {
45
+ this.style.backgroundColor = '#ffffff';
46
+ }
47
+ }
48
+ };
49
+ Behaviour.register(myrules);
50
+ */
51
+ </script>
52
+ <meta name="pageID" content="system-cache"/>
53
+ <script language="JavaScript" type="text/javascript">
54
+ var selected = false;
55
+ var cbstate = '';
56
+ function handleCBClick(el) {
57
+ var theform = el.form;
58
+ for (var i=0; i<theform.elements.length; i++) {
59
+ var theel = theform.elements[i];
60
+ if (theel.name == 'cacheID') {
61
+ theel.checked = !selected;
62
+ toggleHighlight(theel);
63
+ }
64
+ }
65
+ el.checked = !selected;
66
+ selected = !selected;
67
+ updateControls(theform);
68
+ }
69
+ function setCBState(theform) {
70
+ for (var i=0; i<theform.elements.length; i++) {
71
+ var theel = theform.elements[i];
72
+ if (theel.name == 'cacheID') {
73
+ cbstate += theel.checked;
74
+ }
75
+ }
76
+ }
77
+ function clearCBs(theform) {
78
+ for (var i=0; i<theform.elements.length; i++) {
79
+ var theel = theform.elements[i];
80
+ if (theel.name == 'cacheID') {
81
+ theel.checked = false;
82
+ }
83
+ }
84
+ }
85
+ function updateControls(theform) {
86
+ var currentState = '';
87
+ for (var i=0; i<theform.elements.length; i++) {
88
+ var theel = theform.elements[i];
89
+ if (theel.name == 'cacheID') {
90
+ currentState += theel.checked;
91
+ }
92
+ }
93
+ if (currentState != cbstate) {
94
+ theform.clear.disabled = false;
95
+ }
96
+ else {
97
+ theform.clear.disabled = true;
98
+ }
99
+ }
100
+ function toggleHighlight(el) {
101
+ var r = null;
102
+ if (el.parentNode && el.parentNode.parentNode) {
103
+ r = el.parentNode.parentNode;
104
+ }
105
+ else if (el.parentElement && el.parentElement.parentElement) {
106
+ r = el.parentElement.parentElement;
107
+ }
108
+ if (r) {
109
+ if (el.checked) {
110
+ r.className = "jive-row-sel";
111
+ }
112
+ else {
113
+ r.className = "jive-row";
114
+ }
115
+ }
116
+ }
117
+ </script>
118
+ </head>
119
+
120
+ <body id="jive-body">
121
+
122
+ <!-- BEGIN main -->
123
+ <div id="main">
124
+
125
+ <div id="jive-header">
126
+ <div id="jive-logo">
127
+ <a href="/index.jsp"><img src="/images/login_logo.gif" alt="Openfire" width="179" height="53" /></a>
128
+ </div>
129
+ <div id="jive-userstatus">
130
+ Openfire 3.8.2<br/>
131
+ Logged in as <strong>nazoking</strong> - <a href="/index.jsp?logout=true">Logout</a>
132
+ </div>
133
+ <div id="jive-nav">
134
+ <div id="jive-nav-left"></div>
135
+ <ul><li class="currentlink">
136
+ <a href="/index.jsp" title="Click to manage server settings" onmouseover="self.status='Click to manage server settings';return true;" onmouseout="self.status='';return true;">Server</a>
137
+ </li><li class="">
138
+ <a href="/user-summary.jsp" title="Click to manage users and groups" onmouseover="self.status='Click to manage users and groups';return true;" onmouseout="self.status='';return true;">Users/Groups</a>
139
+ </li><li class="">
140
+ <a href="/session-summary.jsp" title="Click to manage connected sessions" onmouseover="self.status='Click to manage connected sessions';return true;" onmouseout="self.status='';return true;">Sessions</a>
141
+ </li><li class="">
142
+ <a href="/muc-room-summary.jsp" title="Click to manage group chat settings" onmouseover="self.status='Click to manage group chat settings';return true;" onmouseout="self.status='';return true;">Group Chat</a>
143
+ </li><li class="">
144
+ <a href="/plugin-admin.jsp" title="Click to manage all plugins" onmouseover="self.status='Click to manage all plugins';return true;" onmouseout="self.status='';return true;">Plugins</a>
145
+ </li></ul>
146
+ <div id="jive-nav-right"></div>
147
+ </div>
148
+ <div id="jive-subnav">
149
+ <ul><li class="current">
150
+ <a href="/index.jsp" title=""
151
+ onmouseover="self.status='';return true;" onmouseout="self.status='';return true;"
152
+ >Server Manager</a>
153
+ </li><li class="">
154
+ <a href="/profile-settings.jsp" title=""
155
+ onmouseover="self.status='';return true;" onmouseout="self.status='';return true;"
156
+ >Server Settings</a>
157
+ </li><li class="">
158
+ <a href="/media-proxy.jsp" title=""
159
+ onmouseover="self.status='';return true;" onmouseout="self.status='';return true;"
160
+ >Media Services</a>
161
+ </li><li class="">
162
+ <a href="/plugins/monitoring/stats-dashboard.jsp" title="View overview of server statistics."
163
+ onmouseover="self.status='View overview of server statistics.';return true;" onmouseout="self.status='';return true;"
164
+ >Statistics</a>
165
+ </li><li class="">
166
+ <a href="/plugins/monitoring/archive-search.jsp" title="Archiving Settings"
167
+ onmouseover="self.status='Archiving Settings';return true;" onmouseout="self.status='';return true;"
168
+ >Archiving</a>
169
+ </li></ul>
170
+ </div>
171
+ </div>
172
+
173
+ <div id="jive-main">
174
+ <table cellpadding="0" cellspacing="0" border="0" width="100%">
175
+ <tbody>
176
+ <tr valign="top">
177
+ <td width="1%">
178
+ <div id="jive-sidebar-container">
179
+ <div id="jive-sidebar-box">
180
+ <div id="jive-sidebar">
181
+ <ul><li class="">
182
+ <a href="/index.jsp" title="Click to view system information"
183
+ onmouseover="self.status='Click to view system information';return true;" onmouseout="self.status='';return true;"
184
+ >Server Information</a>
185
+
186
+ </li><li class="">
187
+ <a href="/server-properties.jsp" title="Click to manage server properties"
188
+ onmouseover="self.status='Click to manage server properties';return true;" onmouseout="self.status='';return true;"
189
+ >System Properties</a>
190
+
191
+ </li><li class="">
192
+ <a href="/server-locale.jsp" title="Click to set the language and time zone"
193
+ onmouseover="self.status='Click to set the language and time zone';return true;" onmouseout="self.status='';return true;"
194
+ >Language and Time</a>
195
+
196
+ </li><li class="">
197
+ <a href="/system-clustering.jsp" title="Click to manage clustering settings"
198
+ onmouseover="self.status='Click to manage clustering settings';return true;" onmouseout="self.status='';return true;"
199
+ >Clustering</a>
200
+
201
+ </li><li class="currentlink">
202
+ <a href="/system-cache.jsp" title="Click to manage data caches"
203
+ onmouseover="self.status='Click to manage data caches';return true;" onmouseout="self.status='';return true;"
204
+ >Cache Summary</a>
205
+
206
+ </li><li class="">
207
+ <a href="/server-db.jsp" title="Click to view database connection information"
208
+ onmouseover="self.status='Click to view database connection information';return true;" onmouseout="self.status='';return true;"
209
+ >Database</a>
210
+
211
+ </li><li class="">
212
+ <a href="/logviewer.jsp" title="Click to view server logs"
213
+ onmouseover="self.status='Click to view server logs';return true;" onmouseout="self.status='';return true;"
214
+ >Logs</a>
215
+
216
+ </li><li class="">
217
+ <a href="/system-email.jsp" title="Click to configure email settings"
218
+ onmouseover="self.status='Click to configure email settings';return true;" onmouseout="self.status='';return true;"
219
+ >Email Settings</a>
220
+
221
+ </li><li class="">
222
+ <a href="/security-audit-viewer.jsp" title="Click to view the security audit logs"
223
+ onmouseover="self.status='Click to view the security audit logs';return true;" onmouseout="self.status='';return true;"
224
+ >Security Audit Viewer</a>
225
+
226
+ </li></ul>
227
+ <br>
228
+ <img src="/images/blank.gif" width="150" height="1" border="0" alt="">
229
+ </div>
230
+ </div>
231
+ </div>
232
+ </td>
233
+ <td width="99%" id="jive-content">
234
+
235
+
236
+
237
+
238
+ <h1>
239
+ Cache Summary
240
+ </h1>
241
+
242
+ <div id="jive-main-content">
243
+ <div class="jive-success">
244
+ <table cellpadding="0" cellspacing="0" border="0">
245
+ <tbody>
246
+ <tr><td class="jive-icon"><img src="images/success-16x16.gif" width="16" height="16" border="0" alt=""></td>
247
+ <td class="jive-icon-label">
248
+ Cache(s) cleared successfully.
249
+ </td></tr>
250
+ </tbody>
251
+ </table>
252
+ </div><br>
253
+
254
+
255
+
256
+ <p>
257
+ The server relies on its cache to run efficiently. Below is a summary of all existing caches. To clear out the contents of a cache, click the checkbox next to the cache you want to clear and click "Clear Selected" below.
258
+ </p>
259
+
260
+
261
+
262
+ <form action="system-cache.jsp" method="post" name="cacheForm">
263
+
264
+ <div class="jive-table">
265
+ <table cellpadding="0" cellspacing="0" border="0" width="100%">
266
+ <thead>
267
+ <tr>
268
+ <th width="39%" nowrap>Cache Name</th>
269
+ <th width="10%" nowrap>Max Size</th>
270
+ <th width="10%" nowrap>Current Size</th>
271
+ <th width="20%" nowrap>Percent Used</th>
272
+ <th width="20%" nowrap>Effectiveness*</th>
273
+ <th width="1%" class="c5"><input type="checkbox" name="" value="" onclick="handleCBClick(this);"></th>
274
+ </tr>
275
+ </thead>
276
+ <tbody>
277
+
278
+
279
+ <tr class="">
280
+ <td class="c1">
281
+ <table cellpadding="0" cellspacing="0" border="0">
282
+ <tr>
283
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
284
+ <td>Clearspace SSO Nonce</td>
285
+ </tr>
286
+ </table>
287
+ </td>
288
+ <td class="c2">
289
+
290
+ Unlimited
291
+
292
+ </td>
293
+ <td class="c3">
294
+ 0.00 MB
295
+ </td>
296
+ <td class="c3">
297
+
298
+ N/A
299
+
300
+ </td>
301
+ <td class="c4">
302
+ N/A
303
+ </td>
304
+
305
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="0" onclick="updateControls(this.form);toggleHighlight(this);"></td>
306
+ </tr>
307
+
308
+
309
+ <tr class="">
310
+ <td class="c1">
311
+ <table cellpadding="0" cellspacing="0" border="0">
312
+ <tr>
313
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
314
+ <td>Client Session Info Cache</td>
315
+ </tr>
316
+ </table>
317
+ </td>
318
+ <td class="c2">
319
+
320
+ 0.25 MB
321
+
322
+ </td>
323
+ <td class="c3">
324
+ 0.34 MB
325
+ </td>
326
+ <td class="c3">
327
+
328
+ 137.8%
329
+
330
+ </td>
331
+ <td class="c4">
332
+ N/A
333
+ </td>
334
+
335
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="1" onclick="updateControls(this.form);toggleHighlight(this);"></td>
336
+ </tr>
337
+
338
+
339
+ <tr class="">
340
+ <td class="c1">
341
+ <table cellpadding="0" cellspacing="0" border="0">
342
+ <tr>
343
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
344
+ <td>Components Sessions</td>
345
+ </tr>
346
+ </table>
347
+ </td>
348
+ <td class="c2">
349
+
350
+ Unlimited
351
+
352
+ </td>
353
+ <td class="c3">
354
+ 0.00 MB
355
+ </td>
356
+ <td class="c3">
357
+
358
+ N/A
359
+
360
+ </td>
361
+ <td class="c4">
362
+ N/A
363
+ </td>
364
+
365
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="2" onclick="updateControls(this.form);toggleHighlight(this);"></td>
366
+ </tr>
367
+
368
+
369
+ <tr class="">
370
+ <td class="c1">
371
+ <table cellpadding="0" cellspacing="0" border="0">
372
+ <tr>
373
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
374
+ <td>Connection Managers Sessions</td>
375
+ </tr>
376
+ </table>
377
+ </td>
378
+ <td class="c2">
379
+
380
+ Unlimited
381
+
382
+ </td>
383
+ <td class="c3">
384
+ 0.00 MB
385
+ </td>
386
+ <td class="c3">
387
+
388
+ N/A
389
+
390
+ </td>
391
+ <td class="c4">
392
+ N/A
393
+ </td>
394
+
395
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="3" onclick="updateControls(this.form);toggleHighlight(this);"></td>
396
+ </tr>
397
+
398
+
399
+ <tr class="">
400
+ <td class="c1">
401
+ <table cellpadding="0" cellspacing="0" border="0">
402
+ <tr>
403
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
404
+ <td>Directed Presences</td>
405
+ </tr>
406
+ </table>
407
+ </td>
408
+ <td class="c2">
409
+
410
+ Unlimited
411
+
412
+ </td>
413
+ <td class="c3">
414
+ 0.03 MB
415
+ </td>
416
+ <td class="c3">
417
+
418
+ N/A
419
+
420
+ </td>
421
+ <td class="c4">
422
+ 100.0%
423
+ </td>
424
+
425
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="4" onclick="updateControls(this.form);toggleHighlight(this);"></td>
426
+ </tr>
427
+
428
+
429
+ <tr class="">
430
+ <td class="c1">
431
+ <table cellpadding="0" cellspacing="0" border="0">
432
+ <tr>
433
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
434
+ <td>Disco Server Features</td>
435
+ </tr>
436
+ </table>
437
+ </td>
438
+ <td class="c2">
439
+
440
+ Unlimited
441
+
442
+ </td>
443
+ <td class="c3">
444
+ 0.03 MB
445
+ </td>
446
+ <td class="c3">
447
+
448
+ N/A
449
+
450
+ </td>
451
+ <td class="c4">
452
+ 32.6%
453
+ </td>
454
+
455
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="5" onclick="updateControls(this.form);toggleHighlight(this);"></td>
456
+ </tr>
457
+
458
+
459
+ <tr class="">
460
+ <td class="c1">
461
+ <table cellpadding="0" cellspacing="0" border="0">
462
+ <tr>
463
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
464
+ <td>Disco Server Items</td>
465
+ </tr>
466
+ </table>
467
+ </td>
468
+ <td class="c2">
469
+
470
+ Unlimited
471
+
472
+ </td>
473
+ <td class="c3">
474
+ 0.00 MB
475
+ </td>
476
+ <td class="c3">
477
+
478
+ N/A
479
+
480
+ </td>
481
+ <td class="c4">
482
+ 0.0%
483
+ </td>
484
+
485
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="6" onclick="updateControls(this.form);toggleHighlight(this);"></td>
486
+ </tr>
487
+
488
+
489
+ <tr class="">
490
+ <td class="c1">
491
+ <table cellpadding="0" cellspacing="0" border="0">
492
+ <tr>
493
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
494
+ <td>Entity Capabilities</td>
495
+ </tr>
496
+ </table>
497
+ </td>
498
+ <td class="c2">
499
+
500
+ Unlimited
501
+
502
+ </td>
503
+ <td class="c3">
504
+ 0.00 MB
505
+ </td>
506
+ <td class="c3">
507
+
508
+ N/A
509
+
510
+ </td>
511
+ <td class="c4">
512
+ 100.0%
513
+ </td>
514
+
515
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="7" onclick="updateControls(this.form);toggleHighlight(this);"></td>
516
+ </tr>
517
+
518
+
519
+ <tr class="">
520
+ <td class="c1">
521
+ <table cellpadding="0" cellspacing="0" border="0">
522
+ <tr>
523
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
524
+ <td>Entity Capabilities Users</td>
525
+ </tr>
526
+ </table>
527
+ </td>
528
+ <td class="c2">
529
+
530
+ Unlimited
531
+
532
+ </td>
533
+ <td class="c3">
534
+ 0.00 MB
535
+ </td>
536
+ <td class="c3">
537
+
538
+ N/A
539
+
540
+ </td>
541
+ <td class="c4">
542
+ 100.0%
543
+ </td>
544
+
545
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="8" onclick="updateControls(this.form);toggleHighlight(this);"></td>
546
+ </tr>
547
+
548
+
549
+ <tr class="">
550
+ <td class="c1">
551
+ <table cellpadding="0" cellspacing="0" border="0">
552
+ <tr>
553
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
554
+ <td>Favicon Hits</td>
555
+ </tr>
556
+ </table>
557
+ </td>
558
+ <td class="c2">
559
+
560
+ 0.12 MB
561
+
562
+ </td>
563
+ <td class="c3">
564
+ 0.00 MB
565
+ </td>
566
+ <td class="c3">
567
+
568
+ 0.0%
569
+
570
+ </td>
571
+ <td class="c4">
572
+ N/A
573
+ </td>
574
+
575
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="9" onclick="updateControls(this.form);toggleHighlight(this);"></td>
576
+ </tr>
577
+
578
+
579
+ <tr class="">
580
+ <td class="c1">
581
+ <table cellpadding="0" cellspacing="0" border="0">
582
+ <tr>
583
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
584
+ <td>Favicon Misses</td>
585
+ </tr>
586
+ </table>
587
+ </td>
588
+ <td class="c2">
589
+
590
+ 0.12 MB
591
+
592
+ </td>
593
+ <td class="c3">
594
+ 0.00 MB
595
+ </td>
596
+ <td class="c3">
597
+
598
+ 0.0%
599
+
600
+ </td>
601
+ <td class="c4">
602
+ N/A
603
+ </td>
604
+
605
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="10" onclick="updateControls(this.form);toggleHighlight(this);"></td>
606
+ </tr>
607
+
608
+
609
+ <tr class="">
610
+ <td class="c1">
611
+ <table cellpadding="0" cellspacing="0" border="0">
612
+ <tr>
613
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
614
+ <td>File Transfer</td>
615
+ </tr>
616
+ </table>
617
+ </td>
618
+ <td class="c2">
619
+
620
+ Unlimited
621
+
622
+ </td>
623
+ <td class="c3">
624
+ 0.00 MB
625
+ </td>
626
+ <td class="c3">
627
+
628
+ N/A
629
+
630
+ </td>
631
+ <td class="c4">
632
+ N/A
633
+ </td>
634
+
635
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="11" onclick="updateControls(this.form);toggleHighlight(this);"></td>
636
+ </tr>
637
+
638
+
639
+ <tr class="">
640
+ <td class="c1">
641
+ <table cellpadding="0" cellspacing="0" border="0">
642
+ <tr>
643
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
644
+ <td>File Transfer Cache</td>
645
+ </tr>
646
+ </table>
647
+ </td>
648
+ <td class="c2">
649
+
650
+ 0.12 MB
651
+
652
+ </td>
653
+ <td class="c3">
654
+ 0.00 MB
655
+ </td>
656
+ <td class="c3">
657
+
658
+ 0.0%
659
+
660
+ </td>
661
+ <td class="c4">
662
+ N/A
663
+ </td>
664
+
665
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="12" onclick="updateControls(this.form);toggleHighlight(this);"></td>
666
+ </tr>
667
+
668
+
669
+ <tr class="">
670
+ <td class="c1">
671
+ <table cellpadding="0" cellspacing="0" border="0">
672
+ <tr>
673
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
674
+ <td>Incoming Server Sessions</td>
675
+ </tr>
676
+ </table>
677
+ </td>
678
+ <td class="c2">
679
+
680
+ Unlimited
681
+
682
+ </td>
683
+ <td class="c3">
684
+ 0.00 MB
685
+ </td>
686
+ <td class="c3">
687
+
688
+ N/A
689
+
690
+ </td>
691
+ <td class="c4">
692
+ N/A
693
+ </td>
694
+
695
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="13" onclick="updateControls(this.form);toggleHighlight(this);"></td>
696
+ </tr>
697
+
698
+
699
+ <tr class="">
700
+ <td class="c1">
701
+ <table cellpadding="0" cellspacing="0" border="0">
702
+ <tr>
703
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
704
+ <td>Last Activity Cache</td>
705
+ </tr>
706
+ </table>
707
+ </td>
708
+ <td class="c2">
709
+
710
+ 0.12 MB
711
+
712
+ </td>
713
+ <td class="c3">
714
+ 0.01 MB
715
+ </td>
716
+ <td class="c3">
717
+
718
+ 5.1%
719
+
720
+ </td>
721
+ <td class="c4">
722
+ N/A
723
+ </td>
724
+
725
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="14" onclick="updateControls(this.form);toggleHighlight(this);"></td>
726
+ </tr>
727
+
728
+
729
+ <tr class="">
730
+ <td class="c1">
731
+ <table cellpadding="0" cellspacing="0" border="0">
732
+ <tr>
733
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
734
+ <td>Locked Out Accounts</td>
735
+ </tr>
736
+ </table>
737
+ </td>
738
+ <td class="c2">
739
+
740
+ 1.00 MB
741
+
742
+ </td>
743
+ <td class="c3">
744
+ 0.00 MB
745
+ </td>
746
+ <td class="c3">
747
+
748
+ 0.0%
749
+
750
+ </td>
751
+ <td class="c4">
752
+ 0.0%
753
+ </td>
754
+
755
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="15" onclick="updateControls(this.form);toggleHighlight(this);"></td>
756
+ </tr>
757
+
758
+
759
+ <tr class="">
760
+ <td class="c1">
761
+ <table cellpadding="0" cellspacing="0" border="0">
762
+ <tr>
763
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
764
+ <td>Multicast Service</td>
765
+ </tr>
766
+ </table>
767
+ </td>
768
+ <td class="c2">
769
+
770
+ 0.12 MB
771
+
772
+ </td>
773
+ <td class="c3">
774
+ 0.00 MB
775
+ </td>
776
+ <td class="c3">
777
+
778
+ 0.0%
779
+
780
+ </td>
781
+ <td class="c4">
782
+ N/A
783
+ </td>
784
+
785
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="16" onclick="updateControls(this.form);toggleHighlight(this);"></td>
786
+ </tr>
787
+
788
+
789
+ <tr class="">
790
+ <td class="c1">
791
+ <table cellpadding="0" cellspacing="0" border="0">
792
+ <tr>
793
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
794
+ <td>Offline Message Size</td>
795
+ </tr>
796
+ </table>
797
+ </td>
798
+ <td class="c2">
799
+
800
+ 0.10 MB
801
+
802
+ </td>
803
+ <td class="c3">
804
+ 0.00 MB
805
+ </td>
806
+ <td class="c3">
807
+
808
+ 0.0%
809
+
810
+ </td>
811
+ <td class="c4">
812
+ N/A
813
+ </td>
814
+
815
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="17" onclick="updateControls(this.form);toggleHighlight(this);"></td>
816
+ </tr>
817
+
818
+
819
+ <tr class="">
820
+ <td class="c1">
821
+ <table cellpadding="0" cellspacing="0" border="0">
822
+ <tr>
823
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
824
+ <td>Offline Presence Cache</td>
825
+ </tr>
826
+ </table>
827
+ </td>
828
+ <td class="c2">
829
+
830
+ 0.50 MB
831
+
832
+ </td>
833
+ <td class="c3">
834
+ 0.01 MB
835
+ </td>
836
+ <td class="c3">
837
+
838
+ 1.3%
839
+
840
+ </td>
841
+ <td class="c4">
842
+ N/A
843
+ </td>
844
+
845
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="18" onclick="updateControls(this.form);toggleHighlight(this);"></td>
846
+ </tr>
847
+
848
+
849
+ <tr class="">
850
+ <td class="c1">
851
+ <table cellpadding="0" cellspacing="0" border="0">
852
+ <tr>
853
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
854
+ <td>PEPServiceManager</td>
855
+ </tr>
856
+ </table>
857
+ </td>
858
+ <td class="c2">
859
+
860
+ 10.00 MB
861
+
862
+ </td>
863
+ <td class="c3">
864
+ 0.00 MB
865
+ </td>
866
+ <td class="c3">
867
+
868
+ 0.0%
869
+
870
+ </td>
871
+ <td class="c4">
872
+ N/A
873
+ </td>
874
+
875
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="19" onclick="updateControls(this.form);toggleHighlight(this);"></td>
876
+ </tr>
877
+
878
+
879
+ <tr class="">
880
+ <td class="c1">
881
+ <table cellpadding="0" cellspacing="0" border="0">
882
+ <tr>
883
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
884
+ <td>Privacy Lists</td>
885
+ </tr>
886
+ </table>
887
+ </td>
888
+ <td class="c2">
889
+
890
+ 0.50 MB
891
+
892
+ </td>
893
+ <td class="c3">
894
+ 0.00 MB
895
+ </td>
896
+ <td class="c3">
897
+
898
+ 0.0%
899
+
900
+ </td>
901
+ <td class="c4">
902
+ N/A
903
+ </td>
904
+
905
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="20" onclick="updateControls(this.form);toggleHighlight(this);"></td>
906
+ </tr>
907
+
908
+
909
+ <tr class="">
910
+ <td class="c1">
911
+ <table cellpadding="0" cellspacing="0" border="0">
912
+ <tr>
913
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
914
+ <td>Published Items</td>
915
+ </tr>
916
+ </table>
917
+ </td>
918
+ <td class="c2">
919
+
920
+ 10.00 MB
921
+
922
+ </td>
923
+ <td class="c3">
924
+ 0.00 MB
925
+ </td>
926
+ <td class="c3">
927
+
928
+ 0.0%
929
+
930
+ </td>
931
+ <td class="c4">
932
+ N/A
933
+ </td>
934
+
935
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="21" onclick="updateControls(this.form);toggleHighlight(this);"></td>
936
+ </tr>
937
+
938
+
939
+ <tr class="">
940
+ <td class="c1">
941
+ <table cellpadding="0" cellspacing="0" border="0">
942
+ <tr>
943
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
944
+ <td>Remote Users Existence</td>
945
+ </tr>
946
+ </table>
947
+ </td>
948
+ <td class="c2">
949
+
950
+ 0.50 MB
951
+
952
+ </td>
953
+ <td class="c3">
954
+ 0.00 MB
955
+ </td>
956
+ <td class="c3">
957
+
958
+ 0.0%
959
+
960
+ </td>
961
+ <td class="c4">
962
+ N/A
963
+ </td>
964
+
965
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="22" onclick="updateControls(this.form);toggleHighlight(this);"></td>
966
+ </tr>
967
+
968
+
969
+ <tr class="">
970
+ <td class="c1">
971
+ <table cellpadding="0" cellspacing="0" border="0">
972
+ <tr>
973
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
974
+ <td>Roster</td>
975
+ </tr>
976
+ </table>
977
+ </td>
978
+ <td class="c2">
979
+
980
+ 0.25 MB
981
+
982
+ </td>
983
+ <td class="c3">
984
+ 0.12 MB
985
+ </td>
986
+ <td class="c3">
987
+
988
+ 49.3%
989
+
990
+ </td>
991
+ <td class="c4">
992
+ 100.0%
993
+ </td>
994
+
995
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="23" onclick="updateControls(this.form);toggleHighlight(this);"></td>
996
+ </tr>
997
+
998
+
999
+ <tr class="">
1000
+ <td class="c1">
1001
+ <table cellpadding="0" cellspacing="0" border="0">
1002
+ <tr>
1003
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1004
+ <td>Routing AnonymousUsers Cache</td>
1005
+ </tr>
1006
+ </table>
1007
+ </td>
1008
+ <td class="c2">
1009
+
1010
+ Unlimited
1011
+
1012
+ </td>
1013
+ <td class="c3">
1014
+ 0.00 MB
1015
+ </td>
1016
+ <td class="c3">
1017
+
1018
+ N/A
1019
+
1020
+ </td>
1021
+ <td class="c4">
1022
+ N/A
1023
+ </td>
1024
+
1025
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="24" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1026
+ </tr>
1027
+
1028
+
1029
+ <tr class="">
1030
+ <td class="c1">
1031
+ <table cellpadding="0" cellspacing="0" border="0">
1032
+ <tr>
1033
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1034
+ <td>Routing Components Cache</td>
1035
+ </tr>
1036
+ </table>
1037
+ </td>
1038
+ <td class="c2">
1039
+
1040
+ Unlimited
1041
+
1042
+ </td>
1043
+ <td class="c3">
1044
+ 0.00 MB
1045
+ </td>
1046
+ <td class="c3">
1047
+
1048
+ N/A
1049
+
1050
+ </td>
1051
+ <td class="c4">
1052
+ 100.0%
1053
+ </td>
1054
+
1055
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="25" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1056
+ </tr>
1057
+
1058
+
1059
+ <tr class="">
1060
+ <td class="c1">
1061
+ <table cellpadding="0" cellspacing="0" border="0">
1062
+ <tr>
1063
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1064
+ <td>Routing Servers Cache</td>
1065
+ </tr>
1066
+ </table>
1067
+ </td>
1068
+ <td class="c2">
1069
+
1070
+ Unlimited
1071
+
1072
+ </td>
1073
+ <td class="c3">
1074
+ 0.00 MB
1075
+ </td>
1076
+ <td class="c3">
1077
+
1078
+ N/A
1079
+
1080
+ </td>
1081
+ <td class="c4">
1082
+ N/A
1083
+ </td>
1084
+
1085
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="26" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1086
+ </tr>
1087
+
1088
+
1089
+ <tr class="">
1090
+ <td class="c1">
1091
+ <table cellpadding="0" cellspacing="0" border="0">
1092
+ <tr>
1093
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1094
+ <td>Routing User Sessions</td>
1095
+ </tr>
1096
+ </table>
1097
+ </td>
1098
+ <td class="c2">
1099
+
1100
+ Unlimited
1101
+
1102
+ </td>
1103
+ <td class="c3">
1104
+ 0.06 MB
1105
+ </td>
1106
+ <td class="c3">
1107
+
1108
+ N/A
1109
+
1110
+ </td>
1111
+ <td class="c4">
1112
+ 100.0%
1113
+ </td>
1114
+
1115
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="27" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1116
+ </tr>
1117
+
1118
+
1119
+ <tr class="">
1120
+ <td class="c1">
1121
+ <table cellpadding="0" cellspacing="0" border="0">
1122
+ <tr>
1123
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1124
+ <td>Routing Users Cache</td>
1125
+ </tr>
1126
+ </table>
1127
+ </td>
1128
+ <td class="c2">
1129
+
1130
+ Unlimited
1131
+
1132
+ </td>
1133
+ <td class="c3">
1134
+ 0.06 MB
1135
+ </td>
1136
+ <td class="c3">
1137
+
1138
+ N/A
1139
+
1140
+ </td>
1141
+ <td class="c4">
1142
+ 100.0%
1143
+ </td>
1144
+
1145
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="28" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1146
+ </tr>
1147
+
1148
+
1149
+ <tr class="">
1150
+ <td class="c1">
1151
+ <table cellpadding="0" cellspacing="0" border="0">
1152
+ <tr>
1153
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1154
+ <td>Sessions by Hostname</td>
1155
+ </tr>
1156
+ </table>
1157
+ </td>
1158
+ <td class="c2">
1159
+
1160
+ Unlimited
1161
+
1162
+ </td>
1163
+ <td class="c3">
1164
+ 0.00 MB
1165
+ </td>
1166
+ <td class="c3">
1167
+
1168
+ N/A
1169
+
1170
+ </td>
1171
+ <td class="c4">
1172
+ N/A
1173
+ </td>
1174
+
1175
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="29" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1176
+ </tr>
1177
+
1178
+
1179
+ <tr class="">
1180
+ <td class="c1">
1181
+ <table cellpadding="0" cellspacing="0" border="0">
1182
+ <tr>
1183
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1184
+ <td>User</td>
1185
+ </tr>
1186
+ </table>
1187
+ </td>
1188
+ <td class="c2">
1189
+
1190
+ 0.50 MB
1191
+
1192
+ </td>
1193
+ <td class="c3">
1194
+ 0.03 MB
1195
+ </td>
1196
+ <td class="c3">
1197
+
1198
+ 5.1%
1199
+
1200
+ </td>
1201
+ <td class="c4">
1202
+ 100.0%
1203
+ </td>
1204
+
1205
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="30" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1206
+ </tr>
1207
+
1208
+
1209
+ <tr class="">
1210
+ <td class="c1">
1211
+ <table cellpadding="0" cellspacing="0" border="0">
1212
+ <tr>
1213
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1214
+ <td>Validated Domains</td>
1215
+ </tr>
1216
+ </table>
1217
+ </td>
1218
+ <td class="c2">
1219
+
1220
+ Unlimited
1221
+
1222
+ </td>
1223
+ <td class="c3">
1224
+ 0.00 MB
1225
+ </td>
1226
+ <td class="c3">
1227
+
1228
+ N/A
1229
+
1230
+ </td>
1231
+ <td class="c4">
1232
+ N/A
1233
+ </td>
1234
+
1235
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="31" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1236
+ </tr>
1237
+
1238
+
1239
+ <tr class="">
1240
+ <td class="c1">
1241
+ <table cellpadding="0" cellspacing="0" border="0">
1242
+ <tr>
1243
+ <td class="icon"><img src="images/cache-16x16.gif" width="16" height="16" alt="" border="0"></td>
1244
+ <td>VCard</td>
1245
+ </tr>
1246
+ </table>
1247
+ </td>
1248
+ <td class="c2">
1249
+
1250
+ 0.50 MB
1251
+
1252
+ </td>
1253
+ <td class="c3">
1254
+ 0.04 MB
1255
+ </td>
1256
+ <td class="c3">
1257
+
1258
+ 7.7%
1259
+
1260
+ </td>
1261
+ <td class="c4">
1262
+ N/A
1263
+ </td>
1264
+
1265
+ <td width="1%" class="c5"><input type="checkbox" name="cacheID" value="32" onclick="updateControls(this.form);toggleHighlight(this);"></td>
1266
+ </tr>
1267
+
1268
+
1269
+
1270
+ <tr bgcolor="#eeeeee">
1271
+ <td align="right" class="c1">
1272
+ Total:
1273
+ </td>
1274
+ <td class="c2">
1275
+ 24.72 MB
1276
+ </td>
1277
+ <td align="right" colspan="4">
1278
+ <input type="submit" name="clear" value="Clear Selected" disabled>
1279
+ </td>
1280
+ </tr>
1281
+ </tbody>
1282
+ </table>
1283
+ </div>
1284
+
1285
+ <p class="jive-description">
1286
+ * Effectiveness measures how well your cache is working. If the effectiveness is low, that usually means that the cache is too small. Caches for which this may be the case are specially flagged.
1287
+ </p>
1288
+
1289
+ <script language="JavaScript" type="text/javascript">
1290
+ clearCBs(document.cacheForm);
1291
+ setCBState(document.cacheForm);
1292
+ </script>
1293
+
1294
+ </form>
1295
+ </div>
1296
+ </td>
1297
+ </tr>
1298
+ </tbody>
1299
+ </table>
1300
+ </div>
1301
+
1302
+ </div>
1303
+ <!-- END main -->
1304
+
1305
+ <!-- BEGIN footer -->
1306
+ <div id="jive-footer">
1307
+ <div class="jive-footer-nav">
1308
+
1309
+ <a href="/index.jsp" title="Click to manage server settings" onmouseover="self.status='Click to manage server settings';return true;" onmouseout="self.status='';return true;">Server</a>
1310
+ |
1311
+ <a href="/user-summary.jsp" title="Click to manage users and groups" onmouseover="self.status='Click to manage users and groups';return true;" onmouseout="self.status='';return true;">Users/Groups</a>
1312
+ |
1313
+ <a href="/session-summary.jsp" title="Click to manage connected sessions" onmouseover="self.status='Click to manage connected sessions';return true;" onmouseout="self.status='';return true;">Sessions</a>
1314
+ |
1315
+ <a href="/muc-room-summary.jsp" title="Click to manage group chat settings" onmouseover="self.status='Click to manage group chat settings';return true;" onmouseout="self.status='';return true;">Group Chat</a>
1316
+ |
1317
+ <a href="/plugin-admin.jsp" title="Click to manage all plugins" onmouseover="self.status='Click to manage all plugins';return true;" onmouseout="self.status='';return true;">Plugins</a>
1318
+
1319
+ </div>
1320
+ <div class="jive-footer-copyright">
1321
+ Built by <a href="http://www.jivesoftware.com">Jive Software</a> and the <a href="http://www.igniterealtime.org">IgniteRealtime.org</a> community
1322
+ </div>
1323
+ </div>
1324
+ <!-- END footer -->
1325
+
1326
+ </body>
1327
+ </html>