dbTalk Databases Forums  

Monitoring Informixservers

comp.databases.informix comp.databases.informix


Discuss Monitoring Informixservers in the comp.databases.informix forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
red_valsen
 
Posts: n/a

Default Monitoring Informixservers - 03-29-2011 , 05:49 PM






Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?

Reply With Quote
  #2  
Old   
Fernando Nunes
 
Posts: n/a

Default Re: Monitoring Informixservers - 03-29-2011 , 06:02 PM






Hmmmm... I suppose Sentinel can do that. Maybe OAT and others.
Could you ellaborate on what do you mean by "monitor"... Specifically what
would you want to see in that line(s)?

Regards

On Tue, Mar 29, 2011 at 11:49 PM, red_valsen <red_valsen (AT) yahoo (DOT) com> wrote:

Quote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?
_______________________________________________
Informix-list mailing list
Informix-list (AT) iiug (DOT) org
http://www.iiug.org/mailman/listinfo/informix-list



--
Fernando Nunes
Portugal

http://informix-technology.blogspot.com
My email works... but I don't check it frequently...

Reply With Quote
  #3  
Old   
Art Kagel
 
Posts: n/a

Default Re: Monitoring Informixservers - 03-29-2011 , 07:35 PM



AGS Server Studio and Sentinel will let you monitor as many servers as you
want. You won't get a two line display for each though.

Art

Art S. Kagel
Advanced DataTools (www.advancedatatools.com)
Blog: http://informix-myview.blogspot.com/

Disclaimer: Please keep in mind that my own opinions are my own opinions and
do not reflect on my employer, Advanced DataTools, the IIUG, nor any other
organization with which I am associated either explicitly, implicitly, or by
inference. Neither do those opinions reflect those of other individuals
affiliated with any entity with which I am affiliated nor those of the
entities themselves.



On Tue, Mar 29, 2011 at 6:49 PM, red_valsen <red_valsen (AT) yahoo (DOT) com> wrote:

Quote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?
_______________________________________________
Informix-list mailing list
Informix-list (AT) iiug (DOT) org
http://www.iiug.org/mailman/listinfo/informix-list

Reply With Quote
  #4  
Old   
Captain Pedantic
 
Posts: n/a

Default Re: Monitoring Informixservers - 03-30-2011 , 02:45 AM



Quote:
"red_valsen" <red_valsen (AT) yahoo (DOT) com> wrote in message
news:56b3701d-9aaa-4900-8791-0f74a3dca494 (AT) x18g2000yqe (DOT) googlegroups.com...
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?
You'd probably have to script something. I don't know of anything
commercially available.

The Informix Online Admin Tool (OAT) has come on leaps and bounds and is an
attractive, functional GUI view of what's going on on a particualr instance.

In my view Sentinel, a 3rd-party product, still has the edge in terms of
functionality, but I don't think it provides a status summary on a single
screen. Also it has IMHO a very rigid pricing structure, with no concept of
Site licence, so to deploy it to manage scores of instances you're going to
need very deep pockets.

Reply With Quote
  #5  
Old   
Kamenik, Aleksander
 
Posts: n/a

Default RE: Monitoring Informixservers - 03-30-2011 , 06:06 AM



Quote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?

You'd probably have to script something. I don't know of anything
commercially available.

The Informix Online Admin Tool (OAT) has come on leaps and bounds and
is an
attractive, functional GUI view of what's going on on a particualr
instance.

In my view Sentinel, a 3rd-party product, still has the edge in terms
of
functionality, but I don't think it provides a status summary on a
single
screen. Also it has IMHO a very rigid pricing structure, with no
concept of
Site licence, so to deploy it to manage scores of instances you're
going to
need very deep pockets.

What about something really simple to see that the server is still in Online mode. Connect to TCP port, get server status (Online, Single-User, etc) and disconnect. Could something like this be done with a simple C script or must one use the connection libraries (informix or drda)?

I'd would use it with monit (http://mmonit.com/monit/). Simply connecting to the TCP port does not give me a status and results in spam in the online.log.

Regards,

Aleksander Kamenik
System Administrator
Krediidiinfo AS
an Experian Company
Phone: +372 665 9649
Email: aleksander (AT) krediidiinfo (DOT) ee

Reply With Quote
  #6  
Old   
Art Kagel
 
Posts: n/a

Default Re: Monitoring Informixservers - 03-30-2011 , 11:28 AM



My package utils_ak contains dbping.ec which can do what you want it to do.
Currently it just reports the actual name of the server it connected to and
the time it took to connect, but you can fetch the server status easily
enough. You will find the query:

EXEC SQL SELECT cf_effective, dbinfo( 'dbhostname' )
INTO :connected_name, :hostname
FROM sysmaster:sysconfig WHERE cf_name = 'DBSERVERNAME';

Change it to:

EXEC SQL SELECT cf_effective, dbinfo( 'dbhostname' ), sh_mode
INTO :connected_name, :hostname, :Server_Mode
FROM sysmaster:sysconfig, sysmaster:sysshmvals WHERE cf_name =
'DBSERVERNAME';

Add the host variable Server_Mode as an integer to the BEGIN DECLARE SECTION
at the top of main(), and, finally, print out the value of sh_mode. The
mode value for full online mode for a standalone server is '5', the server
mode values are documented in the Administrator's Guide.

Art

Art S. Kagel
Advanced DataTools (www.advancedatatools.com)
Blog: http://informix-myview.blogspot.com/

Disclaimer: Please keep in mind that my own opinions are my own opinions and
do not reflect on my employer, Advanced DataTools, the IIUG, nor any other
organization with which I am associated either explicitly, implicitly, or by
inference. Neither do those opinions reflect those of other individuals
affiliated with any entity with which I am affiliated nor those of the
entities themselves.



On Wed, Mar 30, 2011 at 7:06 AM, Kamenik, Aleksander <
aleksander.kamenik (AT) krediidiinfo (DOT) ee> wrote:

Quote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?

You'd probably have to script something. I don't know of anything
commercially available.

The Informix Online Admin Tool (OAT) has come on leaps and bounds and
is an
attractive, functional GUI view of what's going on on a particualr
instance.

In my view Sentinel, a 3rd-party product, still has the edge in terms
of
functionality, but I don't think it provides a status summary on a
single
screen. Also it has IMHO a very rigid pricing structure, with no
concept of
Site licence, so to deploy it to manage scores of instances you're
going to
need very deep pockets.

What about something really simple to see that the server is still in
Online mode. Connect to TCP port, get server status (Online, Single-User,
etc) and disconnect. Could something like this be done with a simple C
script or must one use the connection libraries (informix or drda)?

I'd would use it with monit (http://mmonit.com/monit/). Simply connecting
to the TCP port does not give me a status and results in spam in the
online.log.

Regards,

Aleksander Kamenik
System Administrator
Krediidiinfo AS
an Experian Company
Phone: +372 665 9649
Email: aleksander (AT) krediidiinfo (DOT) ee
_______________________________________________
Informix-list mailing list
Informix-list (AT) iiug (DOT) org
http://www.iiug.org/mailman/listinfo/informix-list

Reply With Quote
  #7  
Old   
Nick
 
Posts: n/a

Default Re: Monitoring Informixservers - 03-31-2011 , 09:53 AM



We use Big Brother to monitor all servers like this. We have a single
line for each server that shows a single dot (green, yellow, red) for
each of cpu, disk, msgs, etc. And it's been very easy to add the
scripting lines for Informix online (onstat -), able to connect (quick
select of a single row), logs not full, dbspaces not full, and
informix memory not grown beyond what we expect.

It's actually pretty nice to have this all monitored with all the
other systems.

Reply With Quote
  #8  
Old   
mpruet
 
Posts: n/a

Default Re: Monitoring Informixservers - 03-31-2011 , 08:42 PM



On Mar 29, 5:49*pm, red_valsen <red_val... (AT) yahoo (DOT) com> wrote:
Quote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?
Gee - wouldn't it be nice to have a global sysmaster that could span
nodes...

Reply With Quote
  #9  
Old   
Fernando Nunes
 
Posts: n/a

Default Re: Monitoring Informixservers - 04-01-2011 , 06:10 AM



11.70.xC3?! :P

Seriously, sysadmin and tasks present a robust layer to build on.
It's pretty simple to generate local collection data and replicate that to a
central repository. OAT can be used to connect to that central instance and
present the information in a friendly format.
This is a requirement for customer with some instances.

On a customer site I've started to do this. Currently only alarms are
centralized and there is a plugin to present them in a unified view (showing
the usual information plus instance/host)

Regards

On Fri, Apr 1, 2011 at 2:42 AM, mpruet <mpruet1 (AT) verizon (DOT) net> wrote:

Quote:
On Mar 29, 5:49 pm, red_valsen <red_val... (AT) yahoo (DOT) com> wrote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?

Gee - wouldn't it be nice to have a global sysmaster that could span
nodes...
_______________________________________________
Informix-list mailing list
Informix-list (AT) iiug (DOT) org
http://www.iiug.org/mailman/listinfo/informix-list



--
Fernando Nunes
Portugal

http://informix-technology.blogspot.com
My email works... but I don't check it frequently...

Reply With Quote
  #10  
Old   
Richard Kofler
 
Posts: n/a

Default Re: Monitoring Informixservers - 04-01-2011 , 08:08 AM



Am 30.03.2011 00:49, schrieb red_valsen:
Quote:
Is there a tool that enables me to monitor several -- or scores -- of
informixservers, perhaps on a single screen? e.g., a single scrolling
display with one or two lines per instance?
some yrs ago, Tivoli's TEC had agents & presentation to do what you want
Have done some digging in the cellar & found this (dated 2002):
http://www.iiug.org/library/ids/technical/sg246613.pdf

But Tivoli never was a cheap bargain, so be warned that it is only
for the wealthy

dic_k
--
Richard Kofler
SOLID STATE EDV
Dienstleistungen GmbH
Vienna/Austria/Europe

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.