-
Notifications
You must be signed in to change notification settings - Fork 74
/
adagios.spec
1084 lines (1054 loc) · 58 KB
/
adagios.spec
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
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%endif
%define name adagios
%define release 1
Name: adagios
Version: 1.6.6
Release: %{release}%{?dist}
Summary: Web Based Nagios Configuration
Group: Applications/Internet
License: AGPLv3
URL: https://adagios.opensource.is/
Source0: https://pypi.python.org/packages/source/a/adagios/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildArch: noarch
Prefix: %{_prefix}
BuildRequires: python2-devel
BuildRequires: python-setuptools
Requires: pynag > 0.9.1
Requires: httpd
Requires: mod_wsgi
Requires: sudo
Requires: python-simplejson
%if 0%{?rhel} == 6
Requires: python-django
# Force django upgrade
Conflicts: Django < 1.4.0
%else
Requires: python2-django16
%endif
%description
Adagios is a web based Nagios configuration interface build to be simple and intuitive in design, exposing less of the clutter under the hood of nagios.
%prep
%setup -qn %{name}-%{version} -n %{name}-%{version}
VERSION=%{version}
echo %{release} | grep -q git && VERSION=$VERSION-%{release}
sed -i "s/^__version__.*/__version__ = '$VERSION'/" adagios/__init__.py
%build
python setup.py build
%install
python setup.py install -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d/
install %{buildroot}%{python_sitelib}/adagios/apache/adagios.conf %{buildroot}%{_sysconfdir}/httpd/conf.d/adagios.conf
mkdir -p %{buildroot}%{_sysconfdir}/adagios/conf.d/
install %{buildroot}%{python_sitelib}/adagios/etc/adagios/adagios.conf %{buildroot}%{_sysconfdir}/adagios/
install %{buildroot}%{python_sitelib}/adagios/etc/adagios/conf.d/okconfig.conf %{buildroot}%{_sysconfdir}/adagios/conf.d/
mkdir -p %{buildroot}%{_sysconfdir}/sudoers.d/
install %{buildroot}%{python_sitelib}/adagios/etc/sudoers.d/adagios %{buildroot}%{_sysconfdir}/sudoers.d/
mkdir -p "%{buildroot}%{_localstatedir}/lib/adagios/"
mkdir -p "%{buildroot}%{_localstatedir}/lib/adagios/userdata"
cp -r "%{buildroot}%{python_sitelib}/adagios/contrib/lib" "%{buildroot}%{_localstatedir}/lib/adagios/contrib"
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc README.md
%{python_sitelib}/*
%{_localstatedir}/lib/adagios/contrib/*
%attr(0644, root, root) %config(noreplace) %{_sysconfdir}/httpd/conf.d/adagios.conf
%attr(0775, nagios, nagios) %dir %{_sysconfdir}/adagios
%attr(0775, nagios, nagios) %dir %{_sysconfdir}/adagios/conf.d
%attr(0775, nagios, nagios) %dir %{_localstatedir}/lib/adagios
%attr(0664, nagios, nagios) %config(noreplace) %{_sysconfdir}/adagios/adagios.conf
%attr(0664, nagios, nagios) %config(noreplace) %{_sysconfdir}/adagios/conf.d/*
%attr(0440, root, root) %config(noreplace) %{_sysconfdir}/sudoers.d/adagios
%changelog
* Wed Aug 28 2013 Pall Sigurdsson <[email protected]> 1.2.4-1
- Fix syntax error in adagios.conf ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- More button made part of the action_buttons block ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- status/perfdata2 - fix link to services ([email protected])
- status/hostgroups - checkboxes next to hostgroups ([email protected])
- Added more button for extra actions in status view ([email protected])
- New view /status/perfdata2 ([email protected])
- hostgrouplist refactored to use snippet ([email protected])
- status_detail layout changes ([email protected])
- Update debian package ([email protected])
- Moved WSGIProcessGroup within <location /adagios> ([email protected])
- Debian package directory created ([email protected])
- adagios.conf - Clarifications to default values ([email protected])
- setup.py - python paths for apache fixes ([email protected])
- setup.py - pep8 cleanup ([email protected])
- BI - Fix reference to non-existing localhost ([email protected])
- Updates to status_detail look ([email protected])
- objectbrowser/forms.py pep8 cleanup ([email protected])
- BI - cleanup in views.py ([email protected])
- BI - urls.py allow for any process_type ([email protected])
- BI: macro resolving updates ([email protected])
- Performance: adagios.bi resolve macros only once per instance
- Fix: urls for pnp4nagios edit file ([email protected])
- Minor updates to BI module ([email protected])
- PEP8 fix ([email protected])
- BI unit tests moved to tests.py ([email protected])
- Fix: path issues in bi ([email protected])
- Business Intelligence moved from status to its own module
- bi: Macro support in human friendly status ([email protected])
- Fix: links on static BI pages ([email protected])
- added static BI view for iceland.adagios.org ([email protected])
- cleanup for static BI pages ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- incremental updates to BI ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- scripts->static_businessprocess.py - incremental updates
- status -> forms: pep8 cleanups ([email protected])
- Fix: BI add graphs typo ([email protected])
- Update status_error.html - Fix typo ([email protected])
- scripts directory created ([email protected])
- status->services: Put a timed refresh on 30seconds ([email protected])
- selectable class added to status.html and status_detail.html
- selectable class added to status.html ([email protected])
- enhanchement: links on state_history view ([email protected])
- new status/rest function 'get' ([email protected])
- base status updates to javascript ([email protected])
- javascript updates to select2 objects query ([email protected])
- css: nomargin class added ([email protected])
- update servicelist checkboxes to new status standard ([email protected])
- checkboxes on perfdata metrics ([email protected])
- add subprocess and add graphs improvements ([email protected])
- CSS: links are bold again (for now) except on left_sidemenu
- Create servicegroups view ([email protected])
- fix typo in bpi forms ([email protected])
- error handler on businessprocess graphs ([email protected])
- Fix: business process add now redirects to edit after save
- PNP graphs now have last_value attribute ([email protected])
- Business Intelligence support last value of graph ([email protected])
- adagios.businessprocess - pep8 cleanup ([email protected])
- Business intelligence dashboard headers improved ([email protected])
- better graph support in business intelligence module ([email protected])
- PEP8 remove linebreak ([email protected])
- status.views pep8 cleanup ([email protected])
- Fix: rest/pynag delete_object was using obsolete pynag code
- New modules for custom pages ([email protected])
* Thu Jul 04 2013 Pall Sigurdsson <[email protected]> 1.2.3-1
- Fix check_command editor when effective command line returns null
* Fri May 24 2013 Your Name <[email protected]> 1.2.1-2
- Remove remaining javascript alerts alert() ([email protected])
- Host aliases displayed in status detail ([email protected])
- clean up settings.py so unittests work again ([email protected])
- Fix select all functionality, using obsolete attr for clicked
- objectbrowser->status view, assume return code 1 is DOWN
- DEPENDENCIES file deprecated by requirements.txt ([email protected])
- status/overview: top_alert_producers spinner refactored ([email protected])
- Remove direct access to /misc/edit_file ([email protected])
- Dashboard, fix incorrect counting of network parents ([email protected])
- nagios->Service better error handling ([email protected])
- Friendlier error message for pnp4nagios errors ([email protected])
- hostgroup_name changed from choicefield to textfield ([email protected])
- status/error cosmetic changes ([email protected])
- gitlog: run git.show internally instead of git.diff ([email protected])
- apache config: Change apache auth name ([email protected])
- Objectbrowser: Unused cancel button removed ([email protected])
- Fix objectbrowser/advanced errors being lost ([email protected])
- status/services: new querystring parameter: unhandled ([email protected])
- edit nagios.cfg: Fix cache not being invalidated ([email protected])
- okconfig->addtemplate Hide host templates from list of templates
- Fix typo in smart_str ([email protected])
- status/services -> include chat icon for comments ([email protected])
- status/error -> update name of check-mk-livestatus deb package
- status/detail - Reintroduce image preview on pnp4nagios graphs
- status/error - minor cosmetic patch ([email protected])
- nagios.cfg default location set to None ([email protected])
- status/error/ friendlier error messages if livestatus is not running
- /status/log/ mk-livestatus not needed in this view ([email protected])
- Fix javascript errors on pages that don't have searchbox
- okconfig install_agent error now has dynamic path to nsclient
- okconfig/install - Friendlier error messages ([email protected])
- update outdated rest function get_object() ([email protected])
- bugfix in status/detail. Custom variable editing fixed ([email protected])
- Changed version information on frontpage ([email protected])
- Revert "Removed editfile functionality, was not used anywhere."
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Fix bug where host commands where treated as service commands in
status_detail ([email protected])
- Removed editfile functionality, was not used anywhere. ([email protected])
- Fix unhandled exception in git eventhandler integration ([email protected])
- Make PNP path configurable ([email protected])
- New config option: enable_authorization ([email protected])
- Meta refresh removed from base_status ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- clean extra middleware ([email protected])
- Issue #119 - json based updating of variables after jquery update broken
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- send email.. properly check all checkboxes ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Issue #90 - Removed alert from a couple more places ([email protected])
- Update README.md ([email protected])
- Issue #90 - Removed alert from run check command ([email protected])
- Updated descriptions ([email protected])
- okconfig->addservice display service_description ([email protected])
- objectbrowser->edit host fix typos ([email protected])
- Updated links to project site and bug reports ([email protected])
- Temporarily disable access control ([email protected])
- README.md - drop link to github issue tracker ([email protected])
- status.utils.get_hosts() ([email protected])
- adding requirements.txt ([email protected])
- README.md - Fix typo (thanks lebean) ([email protected])
- send email -> message is now optional ([email protected])
- okconfig -> fix broken link in breadcrumbs ([email protected])
- Fix unhandled traceback when services_with_info does not exist in livestatus.
- /misc/mail/ add option to acknowledge problems when emails are sent out
- /rest/: switch to non-greedy regex to avoid trailing-slash errors
- Fix unicode error handling in object browser ([email protected])
- Javascript template update ([email protected])
- adagios/init: code cleanup ([email protected])
- rest/views: cleanup extra print statements ([email protected])
- REST: fix unhandled exception in host acknowledgements ([email protected])
- adagiostags - duration should say days when in plural ([email protected])
* Tue Apr 30 2013 Pall Sigurdsson <[email protected]> 1.2.0-2
- Moved time selection in downtime to back ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added datetimepicker to adagios.js and implmented downtime ([email protected])
- Fix link to nagiosaurus web interface ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Fixes to layout for datetimepicker and disabled slider ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Status view: Fix traceback when okconfig is installed, but no config files
present ([email protected])
- Merge branch 'gh-pages' of github.com:opinkerfi/adagios ([email protected])
- Updates demo website URL ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Create gh-pages branch via GitHub ([email protected])
- Update README.md ([email protected])
- Create gh-pages branch via GitHub ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- Create gh-pages branch via GitHub ([email protected])
- Create README.md ([email protected])
- /rest/pynag/add_object method created ([email protected])
- Allow columns=False parameter to livestatus. Workaround for livestatus bug
- google map, fix link to service checks ([email protected])
- Big screen problems renamed to dashboard ([email protected])
- CNAME: Removed www. from adagios.org ([email protected])
- adagios.org domains added to CNAME ([email protected])
- Create gh-pages branch via GitHub ([email protected])
- Create gh-pages branch via GitHub ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added slider for time selection ([email protected])
- minor changes to send email feature ([email protected])
- updated layout for emails ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Google map, added polylines for network parents ([email protected])
- Update README.md ([email protected])
- Bugfix in send_mail, add_myself_to_cc was not read ([email protected])
- Updated Send mail feature, add_myself_to_cc added ([email protected])
- http referer updated ([email protected])
- Updates to send mail feature ([email protected])
- Updated "send email" feature ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Updates to host lists and hostgroup lists ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added bootstrap-datepicker for previous patch ([email protected])
- Added datepicker to Status / Log ([email protected])
- Update README.md ([email protected])
- error handlers added on all status views ([email protected])
- Layout expirements for big screen view ([email protected])
- Layout expirements for big screen view ([email protected])
- Layout expirements for big screen view ([email protected])
- Performance tuning for overview and services ([email protected])
- contactgroup detail page and contact detail page updated
- problems view now uses default table ([email protected])
- Fix zero divisionerror in frontpage ([email protected])
- remove unneeded class=1 query parameter ([email protected])
- improvements to problems view ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Prevent run check command event firing when no id ([email protected])
- Unhandled problems now excludes downtime in top header ([email protected])
- Send mail to field changed to select2 field ([email protected])
- Send email button added to base status ([email protected])
- Fix for csrf token code ([email protected])
- Added cookie based csrf protection for posts ([email protected])
- Fix hardcoded paths in /status/overview/ ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Closes #98 Clear error in run_plugin ([email protected])
- Removed obsolete .live for .on ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Fixed a href selector for tab selection ([email protected])
- remove extra print statements ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- More work on send email functionality ([email protected])
- Remove stale table.table modifications ([email protected])
- Remove spinner from unhandled problems ([email protected])
- Removed datepicker reference, not used. ([email protected])
- Removed reference to old pnp/js code ([email protected])
- Upgraded to jquery 1.9.1 ([email protected])
- /status/ performance tuning ([email protected])
- Prototype of send email form ([email protected])
- Fix check_nagios_running() fail on first load ([email protected])
- Layout tweaks for rest module ([email protected])
- Performance tweaks for status view ([email protected])
- Disable plugin execution in demo environment. ([email protected])
- rest calls created for log fetching ([email protected])
- /rest/status/hosts and /rest/status/services ([email protected])
- search box works again for _status_combined ([email protected])
- Network parent tree in status_detail ([email protected])
- error handler minor bugfixes ([email protected])
- misc/service view migrated to base_status look ([email protected])
- fix google chrome btn group wrap bug ([email protected])
- Startup() code in adagios module moved to objectbrowser ([email protected])
- First installment of error_page decorator ([email protected])
- minor improvements to error page ([email protected])
- Copy service now supports changing service_description ([email protected])
- 90sec refresh set to all status pages. ([email protected])
- bugfix, keyerror when host has no services ([email protected])
- reapply search box feature ([email protected])
- sort order for hostgruops changed ([email protected])
- hostgroup updates ([email protected])
- New css class progress-bar-unknown ([email protected])
- pynag.Utils.grep now used for services and hostgroup views
- UTF-8 handling applied to all forms in objectbrowser and okconfig
- incremental updates ([email protected])
- Fix traceback in LogFiles() when nagios.cfg is not in a common place.
- Format fix, spaces in calculations ([email protected])
- improve git log layout ([email protected])
- Show host custom variables in service detail ([email protected])
- Fix unhandled exception when invalid check_command is defined
- Colored coded diff in gitlog ([email protected])
- okconfig automatic git commit on add templates (needs latest okconfig)
- Objectbrowser.Forms now use Attributelist to split contact_groups style
fields ([email protected])
- New view: /misc/images/ for the old nagios icon_images ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Experimental Perfdata view added ([email protected])
- More descriptive placeholder for timestamp fields ([email protected])
- More unittests added ([email protected])
- Objectbrowser -> Forms -> Default value for single choice fields is now a
blank value ([email protected])
- font-size for host table now same as services and hostgroups
- changes to sidemenu ([email protected])
- Unit Tests added for troubleshooting purposes. ([email protected])
- Update README.md ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- Single hostgroup view improvements ([email protected])
- status_contact comment feed now uses the new snippet ([email protected])
- updates to hostgroup view for a single hostgroup. status_contact updates
- Put a placeholder with inherited value ([email protected])
- Inherited attributes visible in objectbrowser ([email protected])
- Minor improvements to git log. Git log now available in the contact_detail
view ([email protected])
- incremental updates. New Comments and Downtime views added
- Make sure status views honor nagios.cfg location set in adagios.conf file
- misc.helpers should always use the nagios.cfg specified in adagios.conf
- Objectbrowser custom variable and advanced tab improvements
- Some performance tweaks for large number of services if livestatus is
enabled. ([email protected])
- viewing contact details, now shows the services they can see
- Incremental updates ([email protected])
- Fix broken links in okconfig/addcomplete ([email protected])
- incremental changes ([email protected])
- Improvements to comments and contacts views ([email protected])
- Comments added back to services view ([email protected])
- Don't try to display logs if there are no recent log entries.
- Resolved conflicts ([email protected])
- Resolved conflicts ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Status view now has contact information ([email protected])
- Status view now has contact information ([email protected])
- Log view moved from experimental. ([email protected])
- Autocomplete api in /rest/status/autocomplete ([email protected])
- top_alert_producers number now includes only log messages with state other
than OK ([email protected])
- Incremental updates ([email protected])
- Host down not shown if host parent is also down ([email protected])
- url pattern changed for states detail to avoid double slash problem
- releasers updated ([email protected])
- status overview, top alert number now links to log ([email protected])
- Daily dosage of improvements * Fix google maps issues with bootstrap * Delete
object now works with shortnames, delete object button works now in
status_detail * status circles now spin if problem is unhandled *
status_detail history now more accurate * status_log now very functional
- unneeded js cleanup ([email protected])
- add new marker now creates popup by default ([email protected])
- big update on status.. new map. Expirement with tiles instead of boxes
- improvements to state history ([email protected])
- rest/status/edit should save() ([email protected])
- changed css class block so that shadows are now minor ([email protected])
- remove keyerror ([email protected])
- general status module improvements ([email protected])
- hook for unhandled problems added ([email protected])
- extra print statements removed ([email protected])
- notification tray removed ([email protected])
- Better titles for boxes ([email protected])
- switched to white background ([email protected])
- Log view added. Default page changed to status_index ([email protected])
- New view: State History ([email protected])
- match hostnames correctly when service_description has multiple /
- layout tweaks for monitor01 ([email protected])
- status improvements, new base1.html ([email protected])
- layout updates ; new views in status ([email protected])
- Various improvements to reschedule and acknowledge in status view
- more work on acknowledge and schedule buttons ([email protected])
- path fixes for status rest interface ([email protected])
- status rest interface start. button functionality ([email protected])
- hostgroup view changed into proper hierarchy. Service List condensed
- Graph loading javascript made firefox compatible ([email protected])
- Comments for service checks now pretty ([email protected])
- multiselect selectbox added ([email protected])
- Titles fixed ([email protected])
- Tooltip added to progress bar ([email protected])
- Firefox support for progress bars ([email protected])
- switched to condensed tables ([email protected])
- more layout changes in status. Network Parents added ([email protected])
- hostgroup hosts hidden by default. hide empty hostgroups
- ajaxy graph loading ([email protected])
- show check_command for hosts ([email protected])
- needs_reload status is now changed directly after a reload
- layout changes in status module ([email protected])
- deprecation of base.html ([email protected])
- PNP moved to seperate module ([email protected])
- minor workarounds when no permission to run pnp, templatetags dded
- PNP Integration. Status Improvements ([email protected])
- more status and livestatus updates (needs pynag master) ([email protected])
- overall layout improvements in status module ([email protected])
- status views moved to a seperate module ([email protected])
- Event log and extra information added to host status ([email protected])
- localhost:8000/misc/status/ improvements ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added jqplot (again... ) ([email protected])
- Enable advanced and geek to save new objects ([email protected])
- Servicegroup view created and Service list fixed in sidebar
- PNP Integration made visible in misc menubar Closes #58 ([email protected])
- Objectbrowser search no longer imports oldinvalid javascripts. Closes #83
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- minor improvements to contactgroup hierarchy ([email protected])
- Test implementation of jqplot ([email protected])
- Reworked view for editing hostgroup. Improved help texts for hosts and
hostgroups ([email protected])
- Reworked view for editing contactgroup. Improved help texts for contacts and
contactgroups ([email protected])
- test with contactgroup hierarchy ([email protected])
- bugfix: Always use generic name when available if copying a template. Closes
#81 ([email protected])
- Bugfix: host_name field incorrectly clean in objectbrowser->copy->service.
Closes #84. ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Fix sorting of keys in nagios.cfg ([email protected])
- Added better looking objectbrowser/search ([email protected])
- Added fataError javascript function ([email protected])
- Merge remote-tracking branch 'origin/master' ([email protected])
- Closes #82 - Remove alert if unable to fetch new version ([email protected])
- objectbrowser->copy_object now handles templates better than before
- pnp view bugfixes ([email protected])
- improvements to pnp integration ([email protected])
- elif removed from nagios_service view since it is not compatible with django
1.3.x ([email protected])
- checkbox to wide patch from tomas re-applied ([email protected])
- removed nagios_pid print statements ([email protected])
- minor layout tweaks for pnp ([email protected])
- merged ([email protected])
- PNP Integration prototype ([email protected])
- Textarea css for edit_file form ([email protected])
- nagios_cfg variable exposed to all templates. ([email protected])
- Closes #77 Unbind click handler before assigning new click handler
- Closes #78 checkbox should not have width. ([email protected])
- Fixes to status and reload buttons ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Closes #80 Fix bug where compared values were off ([email protected])
- Update README.md ([email protected])
- removed extra print statements ([email protected])
- Update README.md ([email protected])
- First pages commit ([email protected])
* Fri Oct 26 2012 Pall Sigurdsson <[email protected]> 1.1.2-2
- fix block=smallheader boilerplates in misc module ([email protected])
- minor cosmetic fixes in status cgi ([email protected])
- Macro editing for hosts and services in objectbrowser ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Adding git reference to testing rpms ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- size patch for select2 fields ([email protected])
- merged frontpage description with version check ([email protected])
- frontpage description updated ([email protected])
- Merge remote-tracking branch 'github/master' ([email protected])
- Closes #56 - Implmented jsonp version checking ([email protected])
- tomhom ([email protected])
- INSTALL removed in favour of README.md ([email protected])
- Nagios service reload button reintroduced ([email protected])
- pycharm inspection updates ([email protected])
- Nagios Service view now displays a notice if service needs to be reloaded
- Bugfix where sudo was removed from init script path if provided.
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added select2 functionality ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- ensure_ascii set to False for simplejson ([email protected])
- Update README.md ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Improvements to objectbrowser/delete/ ([email protected])
- Fixes responsive design of ob->list->service shortname ([email protected])
- Closes #75 - Removed hardcoded path for url resolver ([email protected])
- Minor cosmetic patch ([email protected])
- Merge remote-tracking branch 'github/master' ([email protected])
- Closes #31 - Major rework of IDs to fix jump on location.hash change
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- status.html added ([email protected])
- exception handling broadened on objectbrowser views ([email protected])
- objectbrowser unicode strings converted to bytestrings before being passed to
pynag ([email protected])
- Responsive - show service shortname on small devices ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Fixes to responsive ob list ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Various fixes related to get_effective_contactgroups and
get_effective_hostgroups ([email protected])
- experimental status view added and settings bugfix ([email protected])
- Resize ob list working, implemented hiding column ([email protected])
- Closes #61 - Implemented run_commands for okconfig/edithost ([email protected])
- Typo in warning message regarding uncommitted changes ([email protected])
- Fixed dismissal of notifications and failure handling ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Closes #72 - inconsistant labels on level="" ([email protected])
* Fri Oct 26 2012 Pall Sigurdsson <[email protected]>
- fix block=smallheader boilerplates in misc module ([email protected])
- minor cosmetic fixes in status cgi ([email protected])
- Macro editing for hosts and services in objectbrowser ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Adding git reference to testing rpms ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- Update README.md ([email protected])
- size patch for select2 fields ([email protected])
- merged frontpage description with version check ([email protected])
- frontpage description updated ([email protected])
- Merge remote-tracking branch 'github/master' ([email protected])
- Closes #56 - Implmented jsonp version checking ([email protected])
- tomhom ([email protected])
- INSTALL removed in favour of README.md ([email protected])
- Nagios service reload button reintroduced ([email protected])
- pycharm inspection updates ([email protected])
- Nagios Service view now displays a notice if service needs to be reloaded
- Bugfix where sudo was removed from init script path if provided.
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added select2 functionality ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- ensure_ascii set to False for simplejson ([email protected])
- Update README.md ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Improvements to objectbrowser/delete/ ([email protected])
- Fixes responsive design of ob->list->service shortname ([email protected])
- Closes #75 - Removed hardcoded path for url resolver ([email protected])
- Minor cosmetic patch ([email protected])
- Merge remote-tracking branch 'github/master' ([email protected])
- Closes #31 - Major rework of IDs to fix jump on location.hash change
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- status.html added ([email protected])
- exception handling broadened on objectbrowser views ([email protected])
- objectbrowser unicode strings converted to bytestrings before being passed to
pynag ([email protected])
- Responsive - show service shortname on small devices ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Fixes to responsive ob list ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Various fixes related to get_effective_contactgroups and
get_effective_hostgroups ([email protected])
- experimental status view added and settings bugfix ([email protected])
- Resize ob list working, implemented hiding column ([email protected])
- Closes #61 - Implemented run_commands for okconfig/edithost ([email protected])
- Typo in warning message regarding uncommitted changes ([email protected])
- Fixed dismissal of notifications and failure handling ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Closes #72 - inconsistant labels on level="" ([email protected])
* Thu Sep 06 2012 Pall Sigurdsson <[email protected]> 1.1.1-2
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- reload_nagios button implemented ([email protected])
- Fixed multiple replace of adagios and ownership of files ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- added missing okconfig.conf ([email protected])
- Modified file permissions on installed files in spec ([email protected])
- path fix in spec file ([email protected])
- Removed line height for tables, sticking with defaults ([email protected])
- edithost redesigned, should be fully functional ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- template cleanup ([email protected])
- Notify user if selinux is active (Closes #24) ([email protected])
- help text improved for install_agent form ([email protected])
- Rest module now raises exception if format is invalid. ([email protected])
- Submit button added on edit_contact notification tab ([email protected])
- Reorganized top navigation items ([email protected])
- reload_nagios button implemented ([email protected])
- New notification system for notification area on top-right
- ObjectBrowser Add/Edit/Delete always visible when something is selected
- bulk copy feature implemented ([email protected])
- Made click action more specific ([email protected])
- Moved actions to top of objectbrowser from sidebar and added copy
- Some more objectbrowser filter optimizations ([email protected])
- javascript converted to coffee and tuned objectbrowser and toolbar
- Pynag radiobuttons are now all have the same style ([email protected])
- experimental new look for forms ([email protected])
- Fixes for numerous usability issues in ObjectBrowser ([email protected])
- Fixed mass select and datatables problems in Objectbrowser ([email protected])
- README updated to include features and link to project page
* Sat Aug 18 2012 Pall Sigurdsson <[email protected]> 1.1.0-2
- removed weird reference to unmangled version ([email protected])
* Fri Aug 17 2012 Pall Sigurdsson <[email protected]> 1.1.0-1
- Merge remote-tracking branch 'github/master' ([email protected])
- Fixed okconfig/edit_host ([email protected])
- Update README.md ([email protected])
- Added white glyphicons ([email protected])
- Closes #12 New filtering and select all method for objectbrowser
- README updated to include features and link to project page
- README updated to include features and link to project page
- Fix tag mismatch in apache config file ([email protected])
- pythonpath no longer hardcoded in apache config file ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Closes #6 WSGI sitelib fix and added auth ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- error handling improved if wrong hostname specified ([email protected])
- Added background image in gimp format. ([email protected])
- Test mockup of okconfig_/edit_host ([email protected])
- Error handling moved into main content ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Error handling for get_effective_command_line to catch invalid check_command
references. (Closes #21) ([email protected])
- avoid saving objects if only multichoicefield order has changed. (Closes #18)
- link for view diff renamed to 'diff' ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Added gimp file for background ([email protected])
- * Monitor from main navigation now loads "nagios_url" * Delete button now
accessable from sidebar for a single object * Effective check_command now
displayed in sidebar * install_agent is now passwordfield
- Changed display size of objectbrowser list ([email protected])
- New background which doesn't tile ugly ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- Removed scrolling on objectbrowser list ([email protected])
- form/form fixed ([email protected])
- improved error handling in okconfig add* forms. Closes issue #16
- Fixed inverted condition for Force ([email protected])
- Fixes invalid variable names from commit 220698125ce ([email protected])
- removed deprecated remove log ([email protected])
- spec file rename of README and useradd adagios removed ([email protected])
- sorrry ([email protected])
- sorrry ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- added empty service as default in addservicetohost ([email protected])
- glyph icons added to tabs in list_object_types ([email protected])
- Merge remote-tracking branch 'github/master' ([email protected])
- Closes #15 - Implemented service macro javascript ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- addservicetoHost form now successfully accepts common macros
- Closes #5 - Changed wsgi user to nagios from adagios ([email protected])
- #15 - Updates javascript code for service macros ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- multichoice select now have a default empty value. multichoice selects are
now refreshed on every page lookup ([email protected])
- Closes Issue #10 - Implemented global chosen on all select nodes
- Catching of IOErrors in views.py ([email protected])
- add_service moved from objectbrowser to okconfig ([email protected])
- Objectbrowser fields bootstrap standardized ([email protected])
- various readme updates (this should close issue #9) ([email protected])
- various readme updates ([email protected])
- syntax fix ([email protected])
- Readme updated to md format ([email protected])
- gitlog added to menu under new working name object history
- Bulk delete implemented. ([email protected])
- /rest/pynag/copy_object implemented. ([email protected])
- get_objects helper docstring clarified for issue #15 ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- inline_help_text attribute added to pynagmultichoicefield. fixes issue #14
- notification_options are now different for host and service. Fixes issue #3
- gitlog box removed ([email protected])
- ObjectDefinition.get_id() changed from md5sum ([email protected])
- filename argument removed in set_maincfg_attribute ([email protected])
- "contact us" link changed to an email address ([email protected])
- Merge remote-tracking branch 'github/master' ([email protected])
- Re-arranged objectbrowser list tabs ([email protected])
- radiobuttons, now use all of PynagRadioWidget ([email protected])
- Merge branch 'master' of github.com:opinkerfi/adagios ([email protected])
- PynagRadioWidget now has an initial state (fixes issue #4)
- Added nagios.cfg save functionality. ([email protected])
- New objectbrowser/nagios.cfg ([email protected])
- Progress bar green and andded span11 to inputs ([email protected])
- Fixed form placement on tabs in OB ([email protected])
- Tab overflow fix and Django 1.3 compatibility ([email protected])
- Added servicestate to top bar in edit service ([email protected])
- Added progressbar for longer checks ([email protected])
- run_check_command jquery'ized. Fixed bug with refresh. ([email protected])
- Badly formatted html quote fixed ([email protected])
- Run Check Command, fix javascript and formatting ([email protected])
- fixed typo ([email protected])
- sidebar only shows geek edit if there is an object ([email protected])
- refactoring and bugfixes related to advanced_form ([email protected])
- prototype for new gitlog view using dulwich python module
- templates for every hosttype added bugfixes in pynagform
- footer block added ([email protected])
- fixed tab-spacing issues ([email protected])
- Error notification code moved from base to header.html ([email protected])
- exception clause to broad ([email protected])
- cleanup and minor refactoring of templates ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- Started working on edit_configfile for nagios.cfg ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- Removed bootstrap-modal, not used ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- minor cleanup in config_health ([email protected])
- Fixed no right margin ([email protected])
- More fixes to layout after mega merge ([email protected])
- Fixes to newly added html files with bad URLs ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- Major cleanup of media/ and converted to bootstrap fluid layout
- Fixes after an unsuccessful merge ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- Changed layout of run check plugin and added support for stderr
- nagios_url added to template view. effective_parents now visible on page
- effective command_line reintroduced ([email protected])
- menubar updates ([email protected])
- sidebar extended to display related objects ([email protected])
- Relative URLs for usage through WSGI and subdirs enabled ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- Minor cosmetic changes ([email protected])
- Settings page reworked. ([email protected])
- okconfig sidebar moved from snippet to block sidebar in base_okconfig.html
- objectbrowser sidebar moved from snippet to block sidebar in
base_objectbrowser.html ([email protected])
- titles on all pages fixed ([email protected])
- timeperiod support improved (and more) ([email protected])
- objectbrowser snippified ([email protected])
- Install instructions for rhel6 ([email protected])
- list of templates and groups is now refreshed every time a form is loaded
- Removed contact_us and put up links to adagios website ([email protected])
- cleanup of print statements ([email protected])
- template cleanups related to new base2.html ([email protected])
- various pep8 fixes. forms.py cleanups ([email protected])
- Missing templates/snippets/sidebar.html added ([email protected])
- django.core.context_processors.tz removed ([email protected])
- Changes template to new base2.html template ([email protected])
- template name added to addhost form ([email protected])
- fixed evil brokenness ([email protected])
- Checked update on select visible ([email protected])
- Added "Select Visible" to objectbrowser ([email protected])
- Various fixes to css and javascript, pycharm corrections ([email protected])
- Bulk edit enabled and bulk delete as well ([email protected])
- Edit many enabled from objectbrowser ([email protected])
- Added datatable to edit_many, fixed delete_many url ([email protected])
- Default to bootstrap headers for datatables ([email protected])
- Removed static URLs for url addobject and bulk functions ([email protected])
- On demand loading of OB and # anchor bookmarkable ([email protected])
- Added missing file from previous commit ([email protected])
- Implemented active navigation item ([email protected])
- Removed /misc/ from urls.py ([email protected])
- setuptools files ignored ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- Added default objectbrowser list length, 48 rows ([email protected])
- cleanup of old unused templates ([email protected])
- deprecated configurator module moved ([email protected])
- Code cleanup, pycharm inspection cleanup ([email protected])
- helpers.py moved from configurator module to misc module
- dnslookup() cleanup ([email protected])
- Revoke all the evil that was inflicted on us in
9f460665f5b7e305ef4ce524e805df050c002b01 ([email protected])
- geek_edit complete erronously redirected you to add new object page
- Cleanup and removed "run any module" feature. ([email protected])
- Minor code cleanup ([email protected])
- dnslookup now returns error on failure ([email protected])
- Removed erroneous filter ([email protected])
- missing delete_object.html added ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- delete object support added ([email protected])
- Datatable id fixed and column ordering and filter ([email protected])
- use, register and name fields hardcoded into pynagform ([email protected])
- Link changed for delete object ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- Added lookup of services within a template. ([email protected])
- Removed unused code. ([email protected])
- .idea settings file put to .gitignore ([email protected])
- choosehost template added ([email protected])
- boostrap style forms now have bootstrap tooltip like objectbrowser
implemented previously ([email protected])
- PynagRadioWidget created to handle 0/1 attributes ([email protected])
- edit host templates feature polished and added to menu ([email protected])
- edit_many bugfixed and streamlined ([email protected])
- Made some tests with layout of 'use' inheritance ([email protected])
- Make "Run Check Plugin" not display for templates ([email protected])
- Fix top spacing on navigation for narrow browsers ([email protected])
- Removed debug print statements ([email protected])
- DNS resolve host_name in addhost and chosen form ([email protected])
- Moved rest URLs from urls.py and re-fitted dnslookups in rest
- Added dependencies file ([email protected])
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- bulk edit prototype put in ([email protected])
- forms updated to use a new snipped bootstrap_fields ([email protected])
- url updated for bulk edit ([email protected])
- help_text set on form fields in okconfig ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- Frontpage made nicer. ([email protected])
- removed peculiar print statement ([email protected])
- Problem badge added, removed OB debug box, styling ([email protected])
- ObjectBrowser now loads services first ([email protected])
- Cleanup of javascript code ([email protected])
- Added preloading of objects on startup ([email protected])
- Added preloading of pynag objects on startup ([email protected])
- view_parents and view_nagioscfg were previously renamed to edit_. Fixed
- Renamed view_ functions to edit_ ([email protected])
- Made error messages visible again. TODO: Change location
- support for adding new object via web interface ([email protected])
- url updated for adding new object ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- Autoindent and moved actions to the right ([email protected])
- releasers.conf updated to include source tarballs ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- releasers.conf updated and is now split into production and testing
- Autoindent and moved actions to the right ([email protected])
- Javascript cleanup and rename to ob_ ([email protected])
- bugfix: multichoice fields treated as charfields ([email protected])
- add complete form updated to new formfields look ([email protected])
- removed hardcoded path to nagios.cfg ([email protected])
- Merge branch 'master' of https://opensource.ok.is/git/adagios
- Syntax fixes and cleanups from pycharm suggestions ([email protected])
- test with new template boilerplates ([email protected])
- geek and advanced edit are now seperate functions in views.py. Template fixed
for view_host and view_object. PynagForm now accepts parameter simple to turn
every field into charfield ([email protected])
- Suggestion for new generic page boilerplate. Tommi please review
- Merge branch 'master' of http://opensource.ok.is/git/adagios
- url to advanced forms and geek edit forms updated ([email protected])
- Added bulk functionaility to object list. ([email protected])
- Added initial Add HTML to the objectbrowser ([email protected])
- Fixed tooltip bug when paging in datatables Various cleanups, duplicate
definititions ([email protected])
- Break up html and javascript for services ([email protected])
- Styled Nagios iframe to fit a little better ([email protected])
- Merge branch 'formfields' ([email protected])
- Added pretty radio buttons on [0/1/undef] fields ([email protected])
- Merge branch 'formfields' of https://opensource.ok.is/git/adagios into
formfields ([email protected])
- Newline formatting Unknown object ID error shown Run Check Plugin refresh now
working ([email protected])
- templates polished, fields updated ([email protected])
- menubar updated, nagios link added ([email protected])
- New Feature: Add single service to host ([email protected])
- Newly added features stuffed in the menubar ([email protected])
- fixed python spacing ([email protected])
- rpm package now requires Django ([email protected])
- Added refresh button to run plugin modal ([email protected])
- Added first design of run check plugin ([email protected])
- make sure cache is reloaded if manual edit has been made
- Parsers.config.errors now appears on the confighealth page
- .settings added to .gitignore ([email protected])
- Merge ([email protected])
- Merge ([email protected])
- service_description fixed in edittemplate.html ([email protected])
- Merge ([email protected])
- Merged plugin execution ([email protected])
- Revert "make sure cache is reloaded if manual edit has been made"
- Revert "Parsers.config.errors now appears on the confighealth page"
- Revert "form support for installing agent remotely" ([email protected])
- Revert "Fixed broken merge" ([email protected])
- Revert ".settings added to .gitignore" ([email protected])
- Revert "Feature: run_check_command() feature added to pynag helpers"
- Revert "kreb" ([email protected])
- kreb ([email protected])
- Feature: run_check_command() feature added to pynag helpers
- .settings added to .gitignore ([email protected])
- Fixed broken merge ([email protected])
- form support for installing agent remotely ([email protected])
- Parsers.config.errors now appears on the confighealth page
- make sure cache is reloaded if manual edit has been made
- Manual edit to geekedit and finish service editor ([email protected])
- make sure cache is reloaded if manual edit has been made
- form support for installing agent remotely ([email protected])
- TBS ([email protected])
- Fixed bug where git comment included colon. ([email protected])