-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.jspa%3Fview=overview.html
2011 lines (1736 loc) · 84.8 KB
/
index.jspa%3Fview=overview.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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" xml:lang="en" lang="en">
<head>
<title>
Zenoss Community - Open Source Network Monitoring and Systems Management
</title>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en-US" />
<meta name="keywords" content=""/>
<!-- Zenoss Community -->
<meta property="og:image" content="servlet/JiveServlet/downloadImage/73-2574-13230/share-zenoss-logo.jpg" />
<link rel="search"
href="opensearch.xml"
title="Zenoss Community"
type="application/opensearchdescription+xml"/>
<link rel="shortcut icon" href="themes/userbar-disabled/images/favicon.ico" />
<link rel="stylesheet" href="styles/jive-global.css" type="text/css" media="all" />
<!-- <link rel="stylesheet" href="/styles/jive-icons-legacy.css" type="text/css" media="all" /> -->
<link rel="stylesheet" href="styles/jive-icons.css" type="text/css" media="all" />
<link rel="stylesheet" href="themes/userbar-disabled/styles/theme.css" type="text/css" media="all" />
<link rel="stylesheet" href="themes/userbar-disabled/styles/community.css" type="text/css" media="all" />
<link rel="stylesheet" href="themes/userbar-disabled/styles/sifr.css" type="text/css" media="all" />
<!--[if IE 6]>
<style type="text/css">
/* hack for IE6's lack of alpha PNG support */
* html #jive-wrapper .ie6png,
* html #jive-wrapper #jive-global-header *.ie6png,
* html #jive-wrapper #user-bar-wrapper *.ie6png,
* html #jive-wrapper #jive-body *.ie6png,
* html #jive-wrapper #jive-footer *.ie6png {
background-image: expression(
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" +
(this.tagName=='IMG' ? this.src : this.currentStyle.backgroundImage.split('\"')[1]) + ")",
this.runtimeStyle.backgroundImage = "none",
this.src = "/images/transparent.png"
);
}
</style>
<link rel="stylesheet" href="/styles/jive-icons-ie.css" type="text/css" media="all" />
<![endif]-->
<script>
window._jive_images_enabled = true;
</script>
<link rel="stylesheet" type="text/css" href="4.5.6/styles/tiny_mce3/plugins/inlinepopups/skins/clearlooks2/window.css" />
<script type="text/html" id="rte-template">
<div>
<div class="wysiwygtext_html_link" id="wysiwygtext_html_link" style="display:block">
<a href="javascript:;" class="toggle_html" style="display:none;">
Show Full Editor </a>
<a href="javascript:void(0);" class="jive-description toggle_preferred_mode" style="display:none;" id="jivePreferredEditorModeLinkHREF">
Always use this editor </a>
</div>
<textarea id="wysiwygtext" rows="10" class="jive-comment-textarea"><%= body %></textarea>
<textarea name="body" rows="10" style="display:none;" class="jive-comment-textarea"><%= body %></textarea>
</div>
</script>
<!--<meta name="nosidebar" content="true" />-->
<!-- The client-side template used by jQuery to render the manage announcements table -->
<script type="text/html" id="jive-announcement-row-block">
<tr class="{{statkey}}">
<td class="name subject"><div>{{subject}}</div></td>
<td class="author">{{user}}</td>
<td class="date"><strong class="{{statusFontColor}}">{{status}}</strong> - {{days}}</span></td>
<td class="actions">
<a href="index.jspa%3Fview=overview.html#" class="updateViewLinkGen">({{updateViewLink}}</a> | <a href="index.jspa%3Fview=overview.html#" class="expireRemoveLinkGen">{{expireRemoveLink}})</a>
</td>
</tr>
</script>
<!-- BEGIN Manage Category panel -->
<div class="jive-modal" id="jive-modal-announcements">
<h2 class="jive-modal-title jive-modal-title-manage-announcements">Manage Announcements</h2>
<h2 class="jive-modal-title jive-modal-title-add-announcement" style="display: none">Add a new announcement</h2>
<h2 class="jive-modal-title jive-modal-title-edit-announcement" style="display: none">Edit Announcement</h2>
<a href="index.jspa%3Fview=overview.html#" class="jive-modal-close-top close">Close</a>
<!-- Manage announcements listing -->
<div class="jive-modal-content jive-modal-announcements-listing clearfix">
<p>
Create and manage announcements in <strong>Zenoss Community</strong>. Try to limit the announcements to keep them useful. </p>
<h5>
Announcements in Zenoss Community </h5>
<div class="jive-modal-announcement-list">
<table>
<colgroup>
<col class="colName" />
<col class="colAuthor" />
<col class="colDate"/>
<col class="colActions" />
</colgroup>
<thead>
<tr>
<th>Subject</th>
<th>Author</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="add">
<a href="index.jspa%3Fview=overview.html#"><span class="jive-icon-med jive-icon-announcement"></span>Add a new announcement</a>
</div>
<div class="jive-form-buttons clearfix">
<input type="submit" class="jive-modal-close-top close" value="Finished" style="float: right;"/>
</div>
</div>
<!-- Add an announcement modal -->
<div class="jive-modal-content jive-modal-create-announcement" style="display: none">
<p id='p-announce-create-text'>Enter your announcement details below, including when you would like it to become active and expire. By default, announcements will become active immediately and expire in 7 days.</p>
<div class="jive-bookmark-form jive-announcement-form clearfix">
<form id="jive-announcement-form" action="index.jspa%3Fview=overview.html" method="post">
<input name="annID" id="annID" type="hidden" value='-1'/>
<div class="jive-form-row" id="jive-bookmark-form-notes">
<div class="jive-form-label">
<label for="subject01">Subject <em>What is the title or subject of your announcement? 75 characters max. <span class="font-color-danger">(Required)</span></em></label>
</div>
<div class="jive-form-element">
<input tabindex="1" class="jive-form-element-text" id="subject01" size="67" maxlength="75" />
</div>
</div>
<div class="jive-form-row" id="jive-ann-description">
<div class="jive-form-label">
<label for="body">Details <em>Tell people more about this announcement. <span class="font-color-danger">(Required)</span></em></label>
<div class="jive-rte">
</div>
</div>
</div>
<div class="jive-form-row" id="jive-ann-form-start">
<div class="jive-form-label">
<label for="annSubject">Begins <em>When would you like this announcement to appear?</em></label>
</div>
<div class="jive-form-element jive-form-element-announcement-start">
<ul>
<li>
<!--<input type="radio" name="announcementStart" id="startNow" value="activenow" checked="checked" /> <label for="startNow">Immediately</label>-->
<input tabindex="3" type="radio" name="activeMode" value="activenow" id="annActiveNow"
onclick="$j('#annStartDate').val('');"
/>
<label for="annActiveNow">Immediately</label>
</li>
<li>
<!--<input type="radio" name="announcementStart" id="startOnDate" value="activelater" class="pickSpecificDay" /> <label for="startOnDate">On a specific day</label>-->
<input tabindex="4" type="radio" name="activeMode" value="activelater" id="annActiveLater"
/>
<label for="annActiveLater">On a specific date</label>
<span class="activeDatePicker">
<!--[if lt IE 8]>
<![endif]-->
<input type="text" class="jive-form-textinput-variable" id="annStartDate" name="startDate" />
<input type="hidden" id="userLocale" name="userLocale" value="en_US" />
<a href="index.jspa%3Fview=overview.html#" id="annStartDate_button">
<img src="4.5.6/images/calendar/calendar.gif" width="34" height="21" border="0" alt="Click to select a date" title="Click to select a date" />
</a>
<span>
(M/d/yy)
</span>
</span>
</li>
</ul>
</div>
</div>
<div class="jive-form-row" id="jive-ann-form-end">
<div class="jive-form-label">
<label for="annSubject">Expires <em>When would you like this announcement to end?</em></label>
</div>
<div class="jive-form-element jive-form-element-announcement-end">
<ul>
<li>
<!--<input type="radio" name="announcementEnd" id="endDays" value="expireslater" checked="checked" /> <label for="endDays">A specific number of days after it begins</label>-->
<input tabindex="5" type="radio" name="expiresMode" value="expiresrelative" id="annExpireRelative"
onclick="$j('#annEndDate').val('');"
/>
<label for="annExpireRelative">A specific number of days after it begins</label>
<input tabindex="6" class="jive-announcements-form-days" type="text" name="expiresDays" id="annExpiresDays" size="2" maxlength="3"
value=""
onclick="$j('#annExpireRelative').attr('checked', 'checked');"/>
</li>
<li>
<!--<input type="radio" name="announcementEnd" id="endOnDate" value="expiresrelative" class="pickSpecificDay" /> <label for="endOnDate">On a specific day</label>-->
<input tabindex="7" type="radio" name="expiresMode" value="expireslater" id="annExpireLater"
/>
<label for="annExpireLater">On a specific date</label>
<span class="expiresDatePicker">
<!--[if lt IE 8]>
<![endif]-->
<input type="text" class="jive-form-textinput-variable" id="annEndDate" name="endDate" />
<input type="hidden" id="userLocale" name="userLocale" value="en_US" />
<a href="index.jspa%3Fview=overview.html#" id="annEndDate_button">
<img src="4.5.6/images/calendar/calendar.gif" width="34" height="21" border="0" alt="Click to select a date" title="Click to select a date" />
</a>
<span>
(M/d/yy)
</span>
</span>
</li>
</ul>
</div>
</div>
<!-- The checkbox to send/not send notifications on create/edit. Please do not change any ids below as they are referenced in /scripts/apps/announcements/main.js -->
<div id="minorAnnCheckbox">
<input tabindex="8" type="checkbox" name="minorAnn" value="" id="jive-ann-minor-flag" />
<strong>
<label id="minorAnnCreateLabel" for="jive-ann-minor-flag">Do not send notifications</label>
<label id="minorAnnEditLabel" for="jive-ann-minor-flag">Minor edit, don't send notifications</label>
</strong>
</div>
<div align="left" class="jive-form-buttons clearfix">
<input tabindex="9" type="button" class="save" value="Save"/>
<input tabindex="10" type="button" class="back" value="Cancel"/>
</div>
</form>
</div>
</div>
</div>
<!-- END modals -->
<!-- BEGIN main.ftl head section -->
<link rel="stylesheet" href="styles/jive-community.css" type="text/css" media="all" />
<link rel="stylesheet" href="styles/jive-widgets.css" type="text/css" media="all" />
<link rel="stylesheet" href="styles/jive-home.css" type="text/css" media="all" />
<link rel="alternate" type="application/rss+xml"
title="Zenoss Community All Content Feed"
href="community/feeds/allcontent?community=1" />
<link rel="alternate" type="application/rss+xml"
title="Zenoss Community Blog Posts Feed"
href="community/feeds/blogs?community=1" />
<link rel="alternate" type="application/rss+xml"
title="Zenoss Community Documents Feed"
href="community/feeds/documents?community=1" />
<link rel="alternate" type="application/rss+xml"
title="Zenoss Community Popular Discussions Feed"
href="community/feeds/popularthreads?community=1" />
<link rel="alternate" type="application/rss+xml"
title="Zenoss Community Discussions Feed"
href="community/feeds/threads?community=1" />
<link rel="alternate" type="application/rss+xml"
title="Zenoss Community Polls Feed"
href="community/feeds/polls?community=1" />
<!-- END main.ftl head section -->
<style type="text/css">/* Rating bar on documents */
.jive-content .jive-content-header .jive-content-rating {margin-bottom: 3px;}
.j-rating { padding: 0 10px; }
.jive-content-avgrating {height: 53px;}
/* END Rating bar on documents */
/* Userbar */
#jive-userbar-right {right: 50px;}
/* END Userbar */
/* Download links page */
table.download-links-table {background-color: #ffffff; width: 100%;}
table.download-links-table tbody td { text-align: center; vertical-align: middle;}
table.download-links-table thead th {text-align: center;}
table.download-links-table td, table.download-links-table th {border: 1px solid #EEEEEE !important;}
/* Provides indentation for official doc ToC items */
div.toc dl dt {margin-left: 20px;}
div.toc dl dd dl dt {margin-left: 40px;}
div.toc dl dd dl dd dl dt {margin-left: 60px;}
div.toc dl dd dl dd dl dd dl dt {margin-left: 80px;}
div.toc dl dd dl dd dl dd dl dd dl dt {margin-left: 100px;}
/* END docs items */
/* Blog posts */
div.social-button-spacer {height: 10px;}
div#social-button-cont {
margin-right:10px;
padding:5px;
text-align: center;
float: right;
}
div#comment-indicator {
float: left;
left: 12px;
right: inherit;
top: 55px;
}
div#comment-indicator div.jive-reply {margin-left: 0px;}
.jive-blog-post-subject {padding-bottom: 0px;}
/* END Blog posts */
/* Community download survey */
form#core-usage-survey label.aligned {float: left; width: 120px;}
form#core-usage-survey span.required_field {color: red;}
form#core-usage-survey label.survey-small-label {display:inline;}
form#core-usage-survey div.survey-checkbox-set {width:82%;}
form#core-usage-survey div.border {border:1px solid #ACACAC; padding:5px;}
form#core-usage-survey label.survey-resource_type {font-style:italic;}
form#core-usage-survey label {
color:#333333;
display:block;
font-size:12px;
font-weight:bold;
}
/* END Community download survey */
</style>
<style type="text/css">/* custom-css-container */</style>
</head>
<body class="jive-body-home" ><div style="width:100%;background-color:white;float:left;position:fixed;z-index:3000;top:0;right:0;border-bottom:2px solid gray;"><div style="width:1006px;font-weight:bold;margin:12px auto 12px auto;font-size:18px;"><div style="float: left; margin: 0;">Archived community.zenoss.org | full text search <form style="display: inline;" target="_blank" action="https://github.com/monitoringartist/community.zenoss.org/search" method="get"><input type="text" name="q"><input type="submit" value="Search"></form> </div><div style="float: right;"><a href="https://www.monitoringartist.com" title="Maintained by Monitoring Artist - DevOps / Docker / Kubernetes / Zabbix / Zenoss / Monitoring"><img src="/community.zenoss.org/assests-monitoringartist/Monitoring-Artist-logo.png" /></a></div></div></div>
<a href="index.jspa%3Fview=overview.html#jive-body" class="jive-skip-nav">Skip navigation</a>
<div id="jive-compliance" class=""style="display:none">
<span class="jive-icon-med "></span>
</div>
<div id="jive-wrapper" class="clearfix">
<!-- Load search for guests -->
<div id="jive-userbar-search">
<form action="search.jspa" method="get" id="jive-userbar-search-form">
<input type="hidden" name="peopleEnabled" value="true"/>
<input type="hidden" name="userID"/>
<input type="hidden" name="containerType"/>
<input type="hidden" name="container"/>
<input type="hidden" name="spotlight" value="false"/>
<label for="jive-query"
class="j-508-label">Search for:</label>
<input type="text" id="jive-query" name="q" value="" accesskey="4" class="searchbar jive-userbar-search-field"
autocomplete="off"/>
</form>
<div id="jive-spotlight-search-container"></div>
</div>
<!-- END anon search -->
<!-- SKIP NAV FOR ACCESSIBILITY -->
<a href="index.jspa%3Fview=overview.html#skipnav"></a>
<!-- END -->
<div id="header">
<!-- START TOP NAVIGATION -->
<div id="navcontainer">
<table cellpadding="0" cellspacing="0" width="100%" border="0">
<tr valign="bottom">
<td rowspan="2">
<a href="index.html" title="Zenoss Open Source IT Management"><img src="themes/userbar-disabled/images/zenoss-logo-reversed-web.png" style="width:254px; margin: 0 0px 25px;" alt="Zenoss Open Enterprise Management" /></a>
</td>
<td height="45" colspan="2">
<div id="zenoss-panel">
<div style="width: 200px;" id="cpanel-lt"></div>
<ul id="subnav-rt" class="png_fix">
<li><a href="http://www.zenoss.com/" title="Zenoss.Inc Home" class="none">Zenoss, Inc.</a></li>
<!--<li><a href="/community/feedback" title="Feedback" class="none">Feedback</a></li>-->
<!--<li><a href="http://www.zenoss.com/support" title="Support" class="none">Support</a></li>-->
</ul>
</div>
</td>
</tr>
<tr valign="middle">
<td colspan="2" height="80">
<ul id="navlist">
<li><a href="community/documentation" title="DOCS" class="nav1"><span>DOCS</span></a></li>
<li><a href="community/forums" title="FORUMS" class="nav2"><span>FORUMS</span></a></li>
<!--<li><a href="/community/zenpacks" title="ZENPACKS" class="nav3"><span>ZENPACKS</span></a></li>-->
<li><a href="http://wiki.zenoss.org/Category:ZenPacks" title="ZENPACKS" class="nav3"><span>ZENPACKS</span></a></li>
<li><a href="community/partners" title="PARTNERS" class="nav4"><span>PARTNERS</span></a></li>
<li><a href="community/about" title="ABOUT" class="nav4"><span>ABOUT</span></a></li>
<li><a href="blogs/zenossblog.html" title="BLOG" class="nav5"><span>BLOG</span></a></li>
<li><a href="community/testing" title="TESTING" class="nav5"><span>TESTING</span></a></li>
<li><a href="community/developers" title="DEVELOPERS" class="nav6"><span>DEVELOPMENT</span></a></li>
<li><a href="community/download.html" title="DOWNLOADS" class="nav7 png_fix"><span>DOWNLOAD</span></a></li>
</ul>
</td>
</tr>
</table>
</div>
<!-- END TOP NAV -->
</div>
<!-- START MID COL -->
<div id="middle">
<!-- SKIPNAV ADDED FOR ACCESSIBILITY -->
<a name="skipnav"></a>
<!-- SKIPNAV END -->
<!-- START CONTENT -->
<!-- MAIN CONTENT START -->
<!-- CHANGE CLASS ACCORDING TO SUB SECTION FOR PROPER TOP BANNER -->
<div id="subcontent">
<!-- BEGIN user bar -->
<div id="user-bar-wrapper">
<div id="jive-userbar">
<div id="jive-userbar-login">
<form action="https://community.zenoss.org/cs_login"
method="post" name="loginform" autocomplete="off">
<span class="jive-userbar-login-welcome" id="jiveLoginWelcome">
<span class="jive-userbar-login-guest">
Welcome, Guest
</span>
<span class="jive-userbar-login-loginlink">
<a href="index.jspa%3Fview=overview.html#" onClick="jivetoggleLogin(); return false;">Login</a>
</span>
<span class="jive-userbar-login-new">
<a href="login!input.jspa%3FregisterOnly=true.html">Register</a>
</span>
</span>
<span class="jive-userbar-login-form" id="jiveLoginForm" style="display: none;">
<span class="jive-userbar-login-username">
<label for="login-username">
Username: </label>
<a href="forgot-username!input.jspa.html" title="I forgot my username ">(?)</a>
<input type="text" name="username" size="20" maxlength="150" value="" tabindex="1"
id="login-username" />
</span>
<span class="jive-userbar-login-password">
<label for="login-password">
Password: </label>
<a href="emailPasswordToken!input.jspa.html" title="I forgot my password ">(?)</a>
<input type="password" name="password" size="20" maxlength="150" value="" tabindex="2"
id="login-password" />
</span>
<span class="jive-userbar-login-auto">
<input type="checkbox" name="autoLogin" id="login-auto" value="true" tabindex="3" />
<label for="login-auto">Remember Me</label>
</span>
<span class="jive-userbar-login-submit">
<input type="submit" name="login" value="Login" tabindex="4"
class="jive-login-button" />
<input type="reset" name="doCancel" value="Cancel" tabindex="5"
class="jive-cancel-button" onclick="jivetoggleLogin();" />
</span>
</span>
</form>
</div> <div id="jive-userbar-right">
<div id="jive-userbar-search">
<form action="search.jspa" method="get" id="jive-userbar-search-form">
<input type="hidden" name="peopleEnabled" value="true"/>
<input type="hidden" name="userID"/>
<input type="hidden" name="containerType"/>
<input type="hidden" name="container"/>
<input type="hidden" name="spotlight" value="false"/>
<label for="jive-query"
class="j-508-label">Search for:</label>
<input type="text" id="jive-query" name="q" value="" accesskey="4" class="searchbar jive-userbar-search-field"
autocomplete="off"/>
</form>
<div id="jive-spotlight-search-container"></div>
</div>
</div>
</div>
</div>
<!-- END user bar -->
<div id="jive-body">
<!-- BEGIN main.ftl body section -->
<!-- BEGIN intro -->
<div id="jive-body-intro" class="jive-body-intro-home">
<div id="jive-body-intro-content">
<h1>Zenoss Community</h1>
<p class="jive-body-home-description"> </p>
</div>
<!-- BEGIN browse community tabs -->
<div class="jive-body-tabbar">
</div>
<!-- END browse community tabs -->
<!-- BEGIN home page links -->
<ul id="jive-body-tabbar-links">
<li class="jive-body-tabbar-links-title">Browse:</li>
<li class="">
<a href="threads.html">
<span class="jive-icon-sml jive-icon-discussion"></span>
<em>Discussions</em>
</a>
</li>
<li class="">
<a href="docs">
<span class="jive-icon-sml jive-icon-document"></span>
<em>Documents</em>
</a>
</li>
<li class="">
<a href="blogs.1.html">
<span class="jive-icon-sml jive-icon-blog"></span>
<em>Blog Posts</em>
</a>
</li>
<li class="">
<a href="polls">
<span class="jive-icon-sml jive-icon-poll"></span>
<em>Polls</em>
</a>
</li>
<li class="">
<a href="tags.1.html">
<span class="jive-icon-sml jive-icon-tag"></span>
<em>Tags</em>
</a>
</li>
<li class="">
<a href="community.1.html">
<span class="jive-icon-sml jive-icon-space"></span>
<em>Spaces</em>
</a>
</li>
<li class="">
<a href="groups.1.html">
<span class="jive-icon-sml jive-icon-group"></span>
<em>Groups</em>
</a>
</li>
<li class="jive-body-tabbar-links-last">
<a href="people.1.html">
<span class="jive-icon-sml jive-icon-people"></span>
<em>People</em>
</a>
</li>
</ul>
<!-- END home page links -->
</div>
<!-- END intro -->
<!-- BEGIN main body -->
<div id="jive-body-main">
<div id="jive-announcements-messaging">
<div id="jive-alert" class="clearfix">
<div class="jive-alert-type jive-alert-announcement" id="jive-alert-1"
>
<div class="jive-alert-header">
<h5 class="jive-alert-title">
<span class="jive-alert-label jive-alert-announcement-label"><span class="jive-icon-med jive-icon-announcement"></span>Announcement:</span>
<a href="index.jspa%3Fview=overview.html#"
onclick="if ($j('#jive-alert-content-1').is(':visible')){hideAlertContent();}else{showAlertContent();} return false;">New Website http://www.zenoss.org</a>
</h5>
<ul>
<li class="jive-alert-details-show" id="jive-alert-details-show-1">
<a href="index.jspa%3Fview=overview.html#" onclick="showAlertContent(); return false;">Show Details</a>
</li>
<li class="jive-alert-details-hide" id="jive-alert-details-hide-1" style="display: none;">
<a href="index.jspa%3Fview=overview.html#" onclick="hideAlertContent(); return false;">Hide Details</a>
</li>
</ul>
</div>
<div class="jive-alert-content" id="jive-alert-content-1" style="display: none;">
<!-- [DocumentBodyStart:c40064d5-49c5-4ac1-a111-45eb7b416f78] --><div class="jive-rendered-content"><p>This website has shut down.  The information on it will remain available as an archive.  The new site can be reached at <a class="jive-link-external-small" href="http://www.zenoss.org">http://www.zenoss.org</a>.</p></div><!-- [DocumentBodyEnd:c40064d5-49c5-4ac1-a111-45eb7b416f78] -->
<div id="jive-announcements-links" class="jive-alert-details font-color-meta">
by <a href="people/akirch.html"
data-externalId=""
data-username="akirch"
data-avatarId="-1"
id="jive-2013532880032541489743"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 20135, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Andrew Kirch</a>
(Jan 8, 2014)
<span>
</span>
</div>
<div class="jive-body-announcements-confirm" id="jive-body-announcements-expire-1244"
style="display: none;">
<p>
Expiring the announcement will not delete it but will remove it from the public announcement list. Are you sure you want to expire this announcement? </p>
<form action="ann-expire.jspa" name="annform" method="post">
<input type="hidden" name="announcement" value="1244"/>
<input type="submit" name="delete" value="Expire Announcement"/>
<input type="button" name="cancel" value="Cancel"
onclick="$j('#jive-body-announcements-expire-1244').hide();return false;"/>
</form>
</div>
<div class="jive-body-announcements-confirm" id="jive-body-announcements-delete-1244"
style="display: none;">
<p>
Are you sure you want to delete this announcement? </p>
<form action="ann-delete.jspa" name="annform" method="post">
<input type="hidden" name="announcement" value="1244"/>
<input type="submit" name="delete" value="Delete Announcement"/>
<input type="button" name="cancel" value="Cancel"
onclick="$j('#jive-body-announcements-delete-1244').hide();return false;"/>
</form>
</div>
</div>
</div>
</div>
</div>
<div id="jive-widgets-panel-loading" style="display: none">
<p class="font-color-meta-light"><img src="4.5.6/images/jive-image-loading.gif" alt=""/>Loading...</p>
</div>
<script src="gadgets/js/core:rpc?c=1&debug=1"></script>
<div id="jive-widget-container">
<div id="jive-widget-content" class="clearfix">
<div id="jive-body-layout-ls">
<div class="jive-body-layout-l">
<div id="jive-widget-container_1" class="jive-widget-container jive-widget-container-large">
<div id="jive-widgetframe_23176"
class="jive-widget jive-box jive-widget-formattedtextwidget jive-widget-formattedtext ">
<div id="jive-widgetsize_23176" class="jive-widgetsize-large">
<div id="jive-widgetframe-header_23176"
class="jive-widget-header jive-box-header ">
<h4 class="jive-widget-handle">
<span id="jive-widgetframe-title_23176">
Zenoss Open Source Monitoring and Systems Management
</span>
</h4>
</div>
<div id="jive-widgetframe-loading_23176" class="jive-widget-body jive-widget-loading jive-box-body"
style="display: none">
<div>
<strong>Loading...</strong>
</div>
</div>
<div id="jive-widgetframe-body_23176" class="jive-widget-body jive-box-body">
<div class="content-large"><div class="jive-widget-formatted-body"><div class="jive-rendered-content"><table border="0" cellpadding="2" cellspacing="2" class="jiveNoBorder" style="width: 661px; height: 300px;"><tbody><tr><td style="border:0px solid black;text-align: center;"><p><a href="http://bit.ly/Ogo0c2"><img alt="photo-1-blurred-thumb.jpg" class="jive-image" src="servlet/JiveServlet/downloadImage/73-2574-13216/zebra.jpg" width="280"/></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><strong>Zenoss Core 4 Has Been Released!</strong> <a class="jive-link-external-small" href="http://bit.ly/Ogo0c2">Read More</a><br/> Zenoss Core 4 is the most powerful open source IT monitoring solution in the industry.</p></td><td style="border:0px solid black;"><br/></td><td style="border:0px solid black;"><p><a href="community/download.html"><img alt="Download Zenoss Core" src="servlet/JiveServlet/previewBody/3526-102-1-3818/download.png" style="border: 0px solid; width: 335px; height: 73px;" vspace="7"/></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><a href="community/documentation"><img alt="Documentation" src="servlet/JiveServlet/previewBody/3527-102-1-3819/documentation.png" style="border: 0px solid; width: 335px; height: 73px;" vspace="7"/></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><a href="community/forums"><img alt="Discuss Zenoss Core" src="servlet/JiveServlet/previewBody/3528-102-1-3820/discussbutton.png" style="border: 0px solid; width: 335px; height: 73px;" vspace="7"/></a></p></td></tr></tbody></table></div></div></div>
</div>
</div>
</div>
<div id="jive-widgetframe_23177"
class="jive-widget jive-box jive-widget-formattedtextwidget jive-widget-formattedtext ">
<div id="jive-widgetsize_23177" class="jive-widgetsize-large">
<div id="jive-widgetframe-header_23177"
class="jive-widget-header jive-box-header ">
<h4 class="jive-widget-handle">
<span id="jive-widgetframe-title_23177">
Free Instructional Videos
</span>
</h4>
</div>
<div id="jive-widgetframe-loading_23177" class="jive-widget-body jive-widget-loading jive-box-body"
style="display: none">
<div>
<strong>Loading...</strong>
</div>
</div>
<div id="jive-widgetframe-body_23177" class="jive-widget-body jive-box-body">
<div class="content-large"><div class="jive-widget-formatted-body"><div class="jive-rendered-content"><h2>Getting Started Series</h2><p>Below are a batch of useful videos for new users that are getting started with Zenoss and its abilities.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><table border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 690px; height: 100px; border: 0px solid #000000; border-collapse: collapse;"><tbody><tr><td style="border:0px solid black;border-collapse: collapse;border: 0px solid #000000;text-align: center;"><a href="http://www.youtube.com/watch?v=eaNO7J_DUKQ">1) What's New in Zenoss Core 4?<br/> <img alt="What's New in Zenoss Core 4" height="74" src="servlet/JiveServlet/downloadImage/73-2596-13218/120-74/Vid-New-Zenoss.jpg" width="120"/></a></td><td style="border:0px solid black;border-collapse: collapse;border: 0px solid #000000;text-align: center;"><a href="http://www.youtube.com/watch?v=h7TybUDtpDk">2) Installing Zenoss Core 4<br/> <img alt="Installing Zenoss Core 4" height="74" src="servlet/JiveServlet/downloadImage/73-2596-13217/120-74/Vid-Installing-Zenoss.jpg" width="120"/></a></td><td style="border:0px solid black;border-collapse: collapse;border: 0px solid #000000;text-align: center;"><a href="http://www.youtube.com/watch?v=R70qewmpxQk">3) Windows Monitoring with Zenoss Core 4<br/> <img alt="Windows Monitoring with Zenoss Core 4" height="74" src="servlet/JiveServlet/downloadImage/73-2596-13219/120-74/Vid-Windows-Monitoring.jpg" width="120"/></a></td></tr></tbody></table><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p><br/> Subscribe to the YouTube Channel to keep up-to-date on new videos: <a class="jive-link-external-small" href="http://bit.ly/PhdK4v">View Channel</a></p></div></div></div>
</div>
</div>
</div>
<div id="jive-widgetframe_23178"
class="jive-widget jive-box jive-widget-recentcontentwidget ">
<div id="jive-widgetsize_23178" class="jive-widgetsize-large">
<div id="jive-widgetframe-header_23178"
class="jive-widget-header jive-box-header jive-widget-header-refresh ">
<h4 class="jive-widget-handle">
<span id="jive-widgetframe-title_23178">
Recent Content
</span>
</h4>
<span class="jive-widget-refresh" id="jive-widgetframe-refresh_23178"
>
<a href="javascript:void(0)" id="jive-widgetframe-refresh-link_23178"
title="Refresh this widget">Refresh this widget</a>
</span>
</div>
<div id="jive-widgetframe-loading_23178" class="jive-widget-body jive-widget-loading jive-box-body"
style="display: none">
<div>
<strong>Loading...</strong>
</div>
</div>
<div id="jive-widgetframe-body_23178" class="jive-widget-body jive-box-body">
<div class="content-large">
<div class="widget-container" id="widget-23178">
<form class="status-morecontent-form" action="recent-updates!moreContentResults.jspa">
<input type="hidden" name="containerID" value="1"/>
<input type="hidden" name="containerType" value="14"/>
<input type="hidden" name="recursive" value="false"/>
<input type="hidden" name="visibleTypes" value="1-18"/>
<input type="hidden" name="filterEnabled" value="true"/>
<input type="hidden" name="start" value="15"/>
<input type="hidden" name="numResults" value="15"/>
<input type="hidden" name="containerSize" value="LARGE"/>
<input type="hidden" name="root" value="true"/>
<input type="hidden" name="zeroItem" value="20622-1"/>
<input type="hidden" name="showProjectContent" value="false"/>
</form>
<div class="jive-table jive-table-widget jive-table-recentcontent">
<table cellpadding="0" cellspacing="0" border="0">
<tbody>
<tr class="jive-table-row-odd">
<td class="jive-table-cell-type">
<a href="message/75732#75732">
<img class="jive-icon-med jive-icon-discussion-question" alt=""
src="4.5.6/images/transparent.png"/>
</a>
</td>
<td class="jive-table-cell-title">
<a href="message/75732#75732">
Need help with zendmd
</a>
<span>
<strong>
10 hours ago
</strong>
in <a href="community/forums/zenoss-users.html">zenoss-users</a>
</span>
</td>
<td class="jive-table-cell-author">
<span>by
<a href="people/rakesh11235.html"
data-externalId=""
data-username="rakesh11235"
data-avatarId="1340"
id="jive-2158732880032847113044"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 21587, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>rakesh agarwal</a></span>
</td>
<td class="jive-table-cell-avatar">
<span>
<a href="people/rakesh11235.html"
data-externalId=""
data-username="rakesh11235"
data-avatarId="1340"
class="jiveTT-hover-user"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 21587, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
>
<img
class="jive-avatar"
src="people/rakesh11235/avatar/22.png?a=1340"
border="0" height="22" width="22"
alt="rakesh agarwal"
/><span username="rakesh11235" style="display:none;"></span></a>
</span>
</td>
</tr>
<tr class="jive-table-row-even">
<td class="jive-table-cell-type">
<a href="message/75731#75731">
<img class="jive-icon-med jive-icon-discussion-question" alt=""
src="4.5.6/images/transparent.png"/>
</a>
</td>
<td class="jive-table-cell-title">
<a href="message/75731#75731">
Unable to pass Job class object to dmd.Jobmanager.addJob()
</a>
<span>
<strong>
10 hours ago
</strong>
in <a href="community/forums/zenoss-dev.html">zenoss-dev</a>
</span>
</td>
<td class="jive-table-cell-author">
<span>by
<a href="people/rakesh11235.html"
data-externalId=""
data-username="rakesh11235"
data-avatarId="1340"
id="jive-2158732880032848306777"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 21587, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>rakesh agarwal</a></span>
</td>
<td class="jive-table-cell-avatar">
<span>
<a href="people/rakesh11235.html"
data-externalId=""
data-username="rakesh11235"
data-avatarId="1340"
class="jiveTT-hover-user"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 21587, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
>
<img
class="jive-avatar"
src="people/rakesh11235/avatar/22.png?a=1340"
border="0" height="22" width="22"
alt="rakesh agarwal"
/><span username="rakesh11235" style="display:none;"></span></a>
</span>
</td>
</tr>
<tr class="jive-table-row-odd">
<td class="jive-table-cell-type">
<a href="message/75700.html#75700">
<img class="jive-icon-med jive-icon-discussion-question" alt=""
src="4.5.6/images/transparent.png"/>
</a>
</td>
<td class="jive-table-cell-title">
<a href="message/75700.html#75700">
Certain Events configurations and Certain Advanced configurations are not being audited
</a>
<span>
<strong>
1 day ago
</strong>
in <a href="community/forums/zenoss-users.html">zenoss-users</a>
</span>
</td>
<td class="jive-table-cell-author">
<span>by
<a href="people/alok.thakur.html"
data-externalId=""
data-username="alok.thakur"
data-avatarId="1339"
id="jive-2161932880032852792863"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 21619, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Alok Thakur</a></span>
</td>
<td class="jive-table-cell-avatar">
<span>
<a href="people/alok.thakur.html"
data-externalId=""
data-username="alok.thakur"
data-avatarId="1339"