TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
1
26.03.2009, 08:21
Beiträge: 4 393
2
26.03.2009, 08:27
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
3
26.03.2009, 09:33
![]() |
Quellcode |
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 |
SELECT sum(time_to_sec(timediff(END,START ))) as dowver , concat(' von ',date(beg),' bis ',date(fin)) as vbd ,count(STATUS) as csum , hostname, sec_to_time(sum(time_to_sec(timediff(END,START )))), CONCAT( CAST(hour(sec_to_time(sum(time_to_sec(timediff(END,START )))))/24 AS DECIMAL(3,0)),' T ', hour(sec_to_time(sum(time_to_sec(timediff(END,START )))))%24,' ST. ', MINUTE(sec_to_time(sum(time_to_sec(timediff(END,START ))))),' M. ', SECOND(sec_to_time(sum(time_to_sec(timediff(END,START ))))),' S.' ) as CRdauer, datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) as upver, CONCAT( CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/3600)/24 AS DECIMAL(4,0)),' T ', SUBSTR(CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/3600)%24 as DECIMAL(4,2)),1,2),' ST.', SUBSTR(CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/60)%60 AS DECIMAL(4,2)),1,2),' M.', CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) ))%60 AS DECIMAL(2,0)),' S.' ) as updauer, ROUND((100.000000000/(datediff(fin,beg)*24*60*60))*(sum(time_to_sec(timediff(END,START )))),3) as downprz, ROUND((100.000000000/(datediff(fin,beg)*24*60*60) )*((datediff(fin,beg)*24*60*60)-(sum(time_to_sec(timediff(END,START ))))),3) as upprz FROM ( SELECT a.state AS STATUS, beg, fin,a.state_time AS START , min( b.state_time ) AS END , c.display_name AS hostname FROM nagios_statehistory AS a, nagios_statehistory AS b, nagios_hosts c,(select '20090101' as beg,'20091231' as fin from dual ) as g WHERE a.object_id = c.host_object_id AND b.object_id = a.object_id AND b.state_type =1 AND a.state_type =1 AND a.state =1 AND c.display_name= 'HOSTNAME' AND date(b.state_time)>=date(a.state_time) AND time(b.state_time)>time(a.state_time) AND a.state_time BETWEEN beg AND fin GROUP BY a.statehistory_id ) AS tabelle GROUP BY hostname, STATUS |
Dieser Beitrag wurde bereits 5 mal editiert, zuletzt von »TheCry« (24.04.2009, 12:12)
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
4
27.03.2009, 07:34
![]() |
Quellcode |
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 |
select bereich,sec_to_time(sum(time_to_sec((timediff(mst,st))))) as dauer,concat(' von ',date(beg),' bis ',date(fin)) as vbd, count(bereich) as cr, hname, CONCAT( CAST(hour(sec_to_time(sum(time_to_sec(timediff(mst,st )))))/24 AS DECIMAL(3,0)),' T ',hour(sec_to_time(sum(time_to_sec(timediff(mst,st )))))%24,' ST. ',MINUTE(sec_to_time(sum(time_to_sec(timediff(mst,st ))))),' M. ',SECOND(sec_to_time(sum(time_to_sec(timediff(mst,st))))),' S.' ) as zeit, ROUND((100.000000000/(datediff(fin,beg)*24*60*60))*(sum(time_to_sec(timediff(mst,st)))),3) as downprz, ROUND((100.000000000/(datediff(fin,beg)*24*60*60) )*((datediff(fin,beg)*24*60*60)-(sum(time_to_sec(timediff(mst,st))))),3) as upprz from ( Select aaa,beg, fin, st,en,ac, timediff(ac,en) as td , count(st) as cc,bereich, mst, name as hname from (SELECT a.statehistory_id as aaa,c.entry_time as en,c.actual_end_time as ac ,a.state_time as st, if(a.state_time between entry_time and actual_end_time ,'Ausfaelle in den Wartungsfenstern','Ausfaelle ausserhalb der Wartungsfenster ')as Bereich, min(b.state_time) as mst,d.display_name as name,beg, fin FROM nagios_statehistory a, nagios_statehistory b, nagios_downtimehistory c,nagios_hosts d, (select '20091001' as beg,'20091131' as fin from dual ) as g Where a.object_id=b.object_id and b.object_id=c.object_id and d.host_object_id=c.object_id and a.state_type=1 and b.state_type=1 and a.state=1 and date(b.state_time)>=date(a.state_time) and time(b.state_time)>time(a.state_time)and d.display_name='HOSTNAME' and a.state_time between beg AND fin group by en, ac, st order by st) as tt group by bereich, st having cc=2 or bereich = 'Ausfaelle in den Wartungsfenstern' ) as ttt group by bereich |
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »TheCry« (24.04.2009, 12:17)
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
5
27.03.2009, 07:41
![]() |
Quellcode |
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 |
select CONCAT(CAST(sum(time_to_sec(timediff(END,START )))/86400 AS DECIMAL(3,0)),' T ',CAST((sum(time_to_sec(timediff(END,START )))/3600)%24 AS DECIMAL(2,0)),' ST. ',CAST((sum(time_to_sec(timediff(END,START )))/60)%60 AS DECIMAL(2,0)),' M ',CAST(sum(time_to_sec(timediff(END,START )))%60 AS DECIMAL(2,0)), ' S.' ) as zeidwn,oali,concat(' von ',date(beg),' bis ',date(fin)) as vbd,sum(time_to_sec(timediff(END,START ))) as vv from (SELECT a.state AS STATUS, beg, fin, a.state_time AS START , min( b.state_time ) AS END , i.alias as oali, k.display_name FROM nagios_statehistory AS a, nagios_statehistory AS b,nagios_servicegroups f, nagios_servicegroup_members g, nagios_services h, nagios_hostgroups i, nagios_hostgroup_members j, nagios_hosts k,(select '20090101' as beg,'20091231' as fin from dual ) as g WHERE b.object_id = a.object_id AND f.servicegroup_id= g.servicegroup_id AND g.service_object_id =h.service_object_id AND h.host_object_id=a.object_id AND h.host_object_id=j.host_object_id AND j.hostgroup_id=i.hostgroup_id AND k.host_object_id=h.host_object_id AND b.state_type =1 AND a.state_type =1 AND a.state =1 AND f.alias= 'SERVICEGRUPPE' AND date(b.state_time)>=date(a.state_time) AND time(b.state_time)>time(a.state_time) AND a.state_time BETWEEN beg AND fin GROUP BY a.statehistory_id,k.display_name ) as t group by oali |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »TheCry« (24.04.2009, 12:22)
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
6
27.03.2009, 07:46
![]() |
Quellcode |
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 |
SELECT sum(time_to_sec(timediff(END,START ))) as dowver ,concat(' von ',date(beg),' bis ',date(fin)) as vbd ,count(STATUS) as csum , hostname,ali , sec_to_time(sum(time_to_sec(timediff(END,START )))),CONCAT( CAST(hour(sec_to_time(sum(time_to_sec(timediff(END,START )))))/24 AS DECIMAL(3,0)),' T ',hour(sec_to_time(sum(time_to_sec(timediff(END,START )))))%24,' ST. ',MINUTE(sec_to_time(sum(time_to_sec(timediff(END,START ))))),' M. ',SECOND(sec_to_time(sum(time_to_sec(timediff(END,START ))))),' S.' ) as CRdauer, datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) as upver, CONCAT( CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/3600)/24 AS DECIMAL(4,0)),' T ', SUBSTR(CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/3600)%24 as DECIMAL(4,2)),1,2),' ST.', SUBSTR(CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/60)%60 AS DECIMAL(4,2)),1,2),' M.', CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) ))%60 AS DECIMAL(2,0)),' S.' ) as updauer, ROUND((100.000000000/(datediff(fin,beg)*24*60*60))*(sum(time_to_sec(timediff(END,START )))),3) as downprz, ROUND((100.000000000/(datediff(fin,beg)*24*60*60) )*((datediff(fin,beg)*24*60*60)-(sum(time_to_sec(timediff(END,START ))))),3) as upprz FROM ( SELECT a.state AS STATUS, beg, fin,a.state_time AS START , min( b.state_time ) AS END , c.display_name AS hostname, e.alias as ali FROM nagios_statehistory AS a, nagios_statehistory AS b, nagios_hosts c, nagios_hostgroup_members AS d, nagios_hostgroups e,(select '20090101' as beg,'20091231' as fin from dual ) as g WHERE a.object_id = c.host_object_id AND b.object_id = a.object_id AND c.host_object_id = d.host_object_id AND b.state_type =1 AND a.state_type =1 AND a.state =1 AND d.hostgroup_id = e.hostgroup_id AND e.alias = "HOSTGRUPPE" AND date(b.state_time)>=date(a.state_time) AND time(b.state_time)>time(a.state_time) AND a.state_time BETWEEN beg AND fin GROUP BY a.statehistory_id ) AS tabelle GROUP BY hostname, STATUS |
Dieser Beitrag wurde bereits 3 mal editiert, zuletzt von »TheCry« (24.04.2009, 12:24)
Beiträge: 4 393
7
27.03.2009, 07:49
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
8
27.03.2009, 07:50
![]() |
Quellcode |
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 |
SELECT sum(time_to_sec(timediff(END,START ))) as dowver ,concat(' von ',date(beg),' bis ',date(fin)) as vbd ,count(STATUS) as csum , hostname,ali ,CONCAT( CAST(hour(sec_to_time(sum(time_to_sec(timediff(END,START )))))/24 AS DECIMAL(3,0)),' T ',hour(sec_to_time(sum(time_to_sec(timediff(END,START )))))%24,' ST. ',MINUTE(sec_to_time(sum(time_to_sec(timediff(END,START ))))),' M. ',SECOND(sec_to_time(sum(time_to_sec(timediff(END,START ))))),' S.' ) as CRdauer, datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) as upver, CONCAT( CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/3600)/24 AS DECIMAL(4,0)),' T ', CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/3600)%24 AS DECIMAL(2,0)),'ST.', CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) )/60)%60 AS DECIMAL(2,0)),' M.',CAST(((datediff(fin,beg)*24*60*60-sum(time_to_sec(timediff(END,START ))) ))%60 AS DECIMAL(2,0)),' S.' ) as updauer, ROUND((100.000000000/(datediff(fin,beg)*24*60*60))*(sum(time_to_sec(timediff(END,START )))),3) as downprz, ROUND((100.000000000/(datediff(fin,beg)*24*60*60) )*((datediff(fin,beg)*24*60*60)-(sum(time_to_sec(timediff(END,START ))))),3) as upprz FROM ( SELECT a.state AS STATUS, '20081001' as beg,'20081113' as fin,a.state_time AS START , min( b.state_time ) AS END , c.display_name AS hostname, e.alias as ali FROM nagios_statehistory AS a, nagios_statehistory AS b, nagios_hosts c, nagios_hostgroup_members AS d, nagios_hostgroups e WHERE a.object_id = c.host_object_id AND b.object_id = a.object_id AND c.host_object_id = d.host_object_id AND b.state_type =1 AND a.state_type =1 AND a.state =1 AND d.hostgroup_id = e.hostgroup_id AND e.alias IN('HOSTGRUPPE1','HOSTGRUPPE2','HOSTGRUPPE3') AND date(b.state_time)>=date(a.state_time) AND time(b.state_time)>time(a.state_time) AND a.state_time BETWEEN '20081001' AND '20081113' GROUP BY a.statehistory_id ) AS tabelle GROUP BY hostname, STATUS |
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
9
27.03.2009, 07:52
Zitat von »Andurin«
Hallo Sascha,
ohne dich in deinem tüchtigen schreibwahn hemmen zu wollen - sollten wir das mal einfach so ins Nagios-Wiki.de klatschen?
croft
Fortgeschrittener
Beiträge: 155
Geburtstag: 08.07.1976 (35)
Geschlecht: Weiblich
Wohnort: Kassel
Beruf: Sysadmin Linux/SAN/Storage/K-Vorsorge
Anzahl Nagios-Server: 6
Nagios-Version(en): 2.6/3.0.1/3.0.3/3.2.0
Icinga-Version(en): 1.2
Verteiltes Monitoring: Ja
Redundantes Monitoring: Nein
Anzahl-Hosts: >1000
Anzahl Services: >4000
Betriebssystem(e): Suse 9.3 SLES10 SLES11
Plugin-Version(en): 1.4.14
NagVis-Version: 1.4
NDO-Version: 1.4b.9
IDO-Version: 1.2
Sonstige Addon's: pnp 0.4.14, PNP4Nagios 0.6.x, NagiosQL 3.0.3
10
27.03.2009, 10:52
roxy78
Anfänger
Beiträge: 42
Geschlecht: Weiblich
Wohnort: Frankfurt
Beruf: Sysadmin
Anzahl Nagios-Server: 1
Nagios-Version(en): -
Icinga-Version(en): 1.3.0
Verteiltes Monitoring: Nein
Redundantes Monitoring: Nein
Anzahl-Hosts: 290
Anzahl Services: 3500
Betriebssystem(e): RHEL6 x86_64
Plugin-Version(en): 1.4.15
IDO-Version: 1.3.0
Sonstige Addon's: pnp-0.6.2
11
31.03.2009, 15:27
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
12
31.03.2009, 19:18
Beiträge: 1 030
Geschlecht: Männlich
Wohnort: München
Beruf: Sysadmin
Anzahl Nagios-Server: 4
Nagios-Version(en): 3
Verteiltes Monitoring: Nein
Redundantes Monitoring: Nein
Anzahl-Hosts: 100
Anzahl Services: 2000
Betriebssystem(e): OpenSuSe, Ubuntu
Plugin-Version(en): -
13
01.04.2009, 09:33
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
Beiträge: 1 030
Geschlecht: Männlich
Wohnort: München
Beruf: Sysadmin
Anzahl Nagios-Server: 4
Nagios-Version(en): 3
Verteiltes Monitoring: Nein
Redundantes Monitoring: Nein
Anzahl-Hosts: 100
Anzahl Services: 2000
Betriebssystem(e): OpenSuSe, Ubuntu
Plugin-Version(en): -
15
01.04.2009, 11:07
roxy78
Anfänger
Beiträge: 42
Geschlecht: Weiblich
Wohnort: Frankfurt
Beruf: Sysadmin
Anzahl Nagios-Server: 1
Nagios-Version(en): -
Icinga-Version(en): 1.3.0
Verteiltes Monitoring: Nein
Redundantes Monitoring: Nein
Anzahl-Hosts: 290
Anzahl Services: 3500
Betriebssystem(e): RHEL6 x86_64
Plugin-Version(en): 1.4.15
IDO-Version: 1.3.0
Sonstige Addon's: pnp-0.6.2
16
03.04.2009, 07:41
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
17
03.04.2009, 08:45
roxy78
Anfänger
Beiträge: 42
Geschlecht: Weiblich
Wohnort: Frankfurt
Beruf: Sysadmin
Anzahl Nagios-Server: 1
Nagios-Version(en): -
Icinga-Version(en): 1.3.0
Verteiltes Monitoring: Nein
Redundantes Monitoring: Nein
Anzahl-Hosts: 290
Anzahl Services: 3500
Betriebssystem(e): RHEL6 x86_64
Plugin-Version(en): 1.4.15
IDO-Version: 1.3.0
Sonstige Addon's: pnp-0.6.2
18
03.04.2009, 09:12
TheCry
Profi
Beiträge: 1 030
Geburtstag: 29.09.1970 (40)
Geschlecht: Männlich
Wohnort: Koblenz
Beruf: Sys-Admin
Anzahl Nagios-Server: 8
Nagios-Version(en): 3.2.3
Verteiltes Monitoring: Ja
Redundantes Monitoring: Ja
Anzahl-Hosts: ~1100
Anzahl Services: ~10000
Betriebssystem(e): Debian Lenny, Ubuntu 8.04 LTS
Plugin-Version(en): 1.4.13
NagVis-Version: 1.5.8
NDO-Version: 1.4b9
Sonstige Addon's: PNP (V. 0.6.11), Multicheck (V 0.25), mod_gearman (V 1.0), DokuWiki, Trap2Mod_Gearman (V 1.0)
19
03.04.2009, 12:40
roxy78
Anfänger
Beiträge: 42
Geschlecht: Weiblich
Wohnort: Frankfurt
Beruf: Sysadmin
Anzahl Nagios-Server: 1
Nagios-Version(en): -
Icinga-Version(en): 1.3.0
Verteiltes Monitoring: Nein
Redundantes Monitoring: Nein
Anzahl-Hosts: 290
Anzahl Services: 3500
Betriebssystem(e): RHEL6 x86_64
Plugin-Version(en): 1.4.15
IDO-Version: 1.3.0
Sonstige Addon's: pnp-0.6.2
20
03.04.2009, 13:39