[Nagios-users] Custom Notification Time

2010-04-23 Thread Digital Edge

Dear List,

As wanted to monitor few services for 7AM to 7PM . Using  check_period   
24x7 , how can i do that.

below is my service check parameter.

define service{
namenetwork-service
use generic-service
check_period24x7
max_check_attempts  3
normal_check_interval   1
retry_check_interval1
contact_groups  Monitoring-alerts
notification_optionsw,u,c,r
notification_interval   60
notification_period 24x7
register0
}


/\
dE
  
_
Climate, controversies and the changing signatures of nature
http://green.in.msn.com/--
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Two IP for the Same server

2010-03-12 Thread Digital Edge

Dear List,

I have a server , which is having 2 NIC with IP assign. I wanted to add in 
nagios those two IP with same hostname  relevant service checks.

Will it be possible.



/\
dE 
  
_
The world in moving pictures
http://news.in.msn.com/gallery/archive.aspx--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Two IP for the Same server

2010-03-12 Thread Digital Edge



 From: perld...@webwizarddesign.com
 Date: Fri, 12 Mar 2010 13:15:46 -0500
 To: nagios-users@lists.sourceforge.net
 Subject: Re: [Nagios-users] Two IP for the Same server
 
 On Fri, Mar 12, 2010 at 11:52 AM, Digital Edge reachta...@hotmail.com wrote:
  Dear List,
 
  I have a server , which is having 2 NIC with IP assign. I wanted to add in
  nagios those two IP with same hostname  relevant service checks.
 
  Will it be possible.
 
 Not with a single host definition; however this can be modeled with 3
 host definitions:
 * One virtual parent host object that has as a host check ping checks
 for both IPs
 * One virtual host object that represents NIC1 on the host
 * One virtual host object that represents NIC2 on the host
 
 Parent -- A - NIC 1
 |
 |--- B - NIC 2
 
 The two hosts representing the NICs would have the parent host as
 their parent so that if the ping checks fail for the two hosts you
 only get notified that the parent host object is down.
 


What I mean to say that , 

define host{
use generic-servers
host_name   Example1
alias   Example1 - Used for Cookie
address 192.168.1.100
address1 192.168.1.101
}

Is anyway it possible to add multiple address field in the host definition, if 
the same server having more than one IP address.



/\
dE

  
_
Fight for the top Test spot
http://sports.in.msn.com/cricket/ --
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Help required

2010-02-18 Thread Digital Edge



From: reachta...@hotmail.com
To: j...@jimavery.me.uk
Date: Thu, 18 Feb 2010 12:36:17 +0530
CC: nagios-users@lists.sourceforge.net
Subject: Re: [Nagios-users] Help required










 Date: Wed, 17 Feb 2010 20:27:34 +
 Subject: Re: [Nagios-users] Help required
 From: j...@jimavery.me.uk
 To: reachta...@hotmail.com
 CC: nagios-users@lists.sourceforge.net
 
 On 17 February 2010 17:36, Digital Edge reachta...@hotmail.com wrote:
  Hi List,
 
  It will be really helpful if i can get any response on my below mentioned
  query.
 
  I have an URL , say..
 
  http://www.example.com/sigin.jsf , After login in, it'll redirect to
  https://www.example1.com/ddo/get_sec_pwd.php; ; here another authentication
  will happen, then it'll come to an URL
  https://www.example1.com/home/home.jsf. Inside that page I have several
  other Tabs..
  
  Home|Home1|Home2
  
  all the tabs can be navigate  viewable after successful login of 2nd time .
  And can be accessible within that session only.
 
  Can we monitor those URLS response time without loosing the session , one by
  one in Nagios..
 
 Not in Nagios itself, no, but I expect you could use WebInject
 http://www.webinject.org/ to do the web querying and timing and feed
 the results back to Nagios.
 
 hth,
 
 Jim

Hi ,

Yes; even I have tried also. The issue what i'm facing is after successful 
authentication checking , I'm unable to navigate through those links.

testcases repeat=1
case
id=1
description1=Connecting to portfolio_signup
method=get
url=http://www.example.com/portfolio_signup.php;
verifypositive=Sign in
errormessage=Unable to connect to the login page of portfolio_signup
/
case
id=2
description1=Authentication on portfolio_signup
method=post
parseresponse='mykey=|'
url=http://www.example.com/portfolio_signup.php;
postbody=user=abcdpassword=1234mykey={PARSEDRESULT}
verifypositive=Sign in
errormessage=Unable to authenticate user abcd in portfolio_signup
/
case
id=3
description1=Authentication on MM
method=post
parseresponse='mykey=|'
url=https://www.example1.com/sso/get_sec_pwd.php;
postbody=user=abcdpassword=12345rmykey={PARSEDRESULT}
verifypositive=Secure Password
errormessage=Unable to authenticate user abcd in MM
/

case
id=4
description1=Navigate through www.example1.com while authenticated
method=get
url=https://www.example1.com/quickenweb/main/home.jsf;
verifypositive=How can I ?
errormessage=Unable to navigate through www.example1.com even though 
correctly authenticated
/
/testcases
 


All the tests are passing except case4. I am not able to understand why it's 
happening. can anyone help me on this .


/\
Ricky
  
Dear List,

can anyone help me on this sorry for the double post.


Hi ,

Yes; even I have tried also. The issue what i'm facing is 
after successful authentication checking , I'm unable to navigate 
through those links.

testcases repeat=1
case
   
 id=1
description1=Connecting to portfolio_signup

method=get
url=http://www.example.com/portfolio_signup.php;
   
 verifypositive=Sign in
errormessage=Unable to connect to the 
login page of portfolio_signup
/
case
id=2
   
 description1=Authentication on portfolio_signup
method=post
   
 parseresponse='mykey=|'

url=http://www.example.com/portfolio_signup.php;

postbody=user=abcdpassword=1234mykey={PARSEDRESULT}

verifypositive=Sign in
errormessage=Unable to authenticate 
user abcd in portfolio_signup
/
case
id=3
   
 description1=Authentication on MM
method=post

parseresponse='mykey=|'

url=https://www.example1.com/sso/get_sec_pwd.php;

postbody=user=abcdpassword=12345rmykey={PARSEDRESULT}
   
 verifypositive=Secure Password
errormessage=Unable to 
authenticate user abcd in MM
/

case
id=4
   
 description1=Navigate through www.example1.com while authenticated
   
 method=get

url=https://www.example1.com/quickenweb/main/home.jsf;

verifypositive=How can I ?
errormessage=Unable to navigate 
through www.example1.com even though correctly authenticated
/
/testcases
 


All
 the tests are passing except case4. I am not able to understand why 
it's happening. can anyone help me on this .


/\
Ricky
  
_
Your E-mail and More On-the-Go. Get Windows Live Hotmail Free.
https://signup.live.com/signup.aspx?id=60969--
Download Intelreg; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs 
proactively, and fine-tune applications for parallel performance. 
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
Nagios

[Nagios-users] Help required

2010-02-17 Thread Digital Edge

Hi List,

It will be really helpful if i can get any response on my below mentioned 
query.

I have an URL , say.. 

http://www.example.com/sigin.jsf , After login in, it'll redirect to 
https://www.example1.com/ddo/get_sec_pwd.php; ; here another authentication 
will happen, then it'll come to an URL https://www.example1.com/home/home.jsf. 
Inside that page I have several other Tabs..
 
Home|Home1|Home2

all the tabs can be navigate  viewable after successful login of 2nd time . 
And can be accessible within that session only.

Can we monitor those URLS response time without loosing the session , one by 
one in Nagios..


Please let me know , if I not clear with the scenario.

/\
Ricky 
  
_
Hotmail: Trusted email with powerful SPAM protection.
https://signup.live.com/signup.aspx?id=60969--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Help required

2010-02-17 Thread Digital Edge



 Date: Wed, 17 Feb 2010 20:27:34 +
 Subject: Re: [Nagios-users] Help required
 From: j...@jimavery.me.uk
 To: reachta...@hotmail.com
 CC: nagios-users@lists.sourceforge.net
 
 On 17 February 2010 17:36, Digital Edge reachta...@hotmail.com wrote:
  Hi List,
 
  It will be really helpful if i can get any response on my below mentioned
  query.
 
  I have an URL , say..
 
  http://www.example.com/sigin.jsf , After login in, it'll redirect to
  https://www.example1.com/ddo/get_sec_pwd.php; ; here another authentication
  will happen, then it'll come to an URL
  https://www.example1.com/home/home.jsf. Inside that page I have several
  other Tabs..
  
  Home|Home1|Home2
  
  all the tabs can be navigate  viewable after successful login of 2nd time .
  And can be accessible within that session only.
 
  Can we monitor those URLS response time without loosing the session , one by
  one in Nagios..
 
 Not in Nagios itself, no, but I expect you could use WebInject
 http://www.webinject.org/ to do the web querying and timing and feed
 the results back to Nagios.
 
 hth,
 
 Jim

Hi ,

Yes; even I have tried also. The issue what i'm facing is after successful 
authentication checking , I'm unable to navigate through those links.

testcases repeat=1
case
id=1
description1=Connecting to portfolio_signup
method=get
url=http://www.example.com/portfolio_signup.php;
verifypositive=Sign in
errormessage=Unable to connect to the login page of portfolio_signup
/
case
id=2
description1=Authentication on portfolio_signup
method=post
parseresponse='mykey=|'
url=http://www.example.com/portfolio_signup.php;
postbody=user=abcdpassword=1234mykey={PARSEDRESULT}
verifypositive=Sign in
errormessage=Unable to authenticate user abcd in portfolio_signup
/
case
id=3
description1=Authentication on MM
method=post
parseresponse='mykey=|'
url=https://www.example1.com/sso/get_sec_pwd.php;
postbody=user=abcdpassword=12345rmykey={PARSEDRESULT}
verifypositive=Secure Password
errormessage=Unable to authenticate user abcd in MM
/

case
id=4
description1=Navigate through www.example1.com while authenticated
method=get
url=https://www.example1.com/quickenweb/main/home.jsf;
verifypositive=How can I ?
errormessage=Unable to navigate through www.example1.com even though 
correctly authenticated
/
/testcases
 


All the tests are passing except case4. I am not able to understand why it's 
happening. can anyone help me on this .


/\
Ricky
  
_
Hotmail: Powerful Free email with security by Microsoft.
https://signup.live.com/signup.aspx?id=60969--
Download Intelreg; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs 
proactively, and fine-tune applications for parallel performance. 
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null