Author |
Message
|
DarXide |
Posted: Wed Mar 24, 2010 7:19 am Post subject: msg size monitor |
|
|
Apprentice
Joined: 02 Dec 2007 Posts: 43 Location: israel
|
hello
with what program i can monitor the msg size in my queues ?
suggest me plz monitor tools for statistics
i need to know
msg size
how many msg put in queue
if you know some program publish it here plz |
|
Back to top |
|
 |
Vitor |
Posted: Wed Mar 24, 2010 7:27 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
The queue manager (along with most of the commerical products discussed on this forum) can tell you message enqueue/dequeue rates (i.e. how many messages were placed on and taken from a given queue) from which you can calculate average queue depth.
I'm not aware of any application which can tell you average size of message on a queue. I'm not entirely certain why you'd want or need that information (aside from some utterly pointless audit requirement). Which is not to say there isn't an application or a valid need for the information. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
DarXide |
Posted: Wed Mar 24, 2010 9:50 pm Post subject: |
|
|
Apprentice
Joined: 02 Dec 2007 Posts: 43 Location: israel
|
i need to track this info
i know omegamon can do somthing like this
is there some other program ? |
|
Back to top |
|
 |
fjb_saper |
Posted: Thu Mar 25, 2010 7:24 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
DarXide wrote: |
i need to track this info
i know omegamon can do somthing like this
is there some other program ? |
Most good commercial monitoring tools will give you that info  _________________ MQ & Broker admin |
|
Back to top |
|
 |
DarXide |
Posted: Mon Apr 05, 2010 9:09 pm Post subject: |
|
|
Apprentice
Joined: 02 Dec 2007 Posts: 43 Location: israel
|
|
Back to top |
|
 |
ninapat |
Posted: Mon Jun 07, 2010 2:17 am Post subject: |
|
|
Newbie
Joined: 27 Feb 2008 Posts: 6
|
|
Back to top |
|
 |
Mr Butcher |
Posted: Mon Jun 07, 2010 6:00 am Post subject: |
|
|
 Padawan
Joined: 23 May 2005 Posts: 1716
|
if messages are coming in / sent out by channels channel message exits may be an option to count messages and bytes. Channel status is source of some information too (e.g. bytes transferred), but some of this information is lost if the channel is stopped (as the "current" channel status is dropped then). And the information is not only related to messages (e.g. heartbeats will increase the byte count too)
otherwise you must write your own application to count messages and bytes. if messages arrive on Q1, you must make the application read Q2 instead of Q1, and your statistic program reads Q1, counts whatever it needs to count and then puts the message to Q2 so it can be picked up by the appplication.
but be aware that you cause delays, and that any problem with your statistic program will cause problems in the applicaion (no messages passed to application, or or or ...)
however, its cheap  _________________ Regards, Butcher |
|
Back to top |
|
 |
RogerLacroix |
Posted: Mon Jun 07, 2010 7:47 am Post subject: |
|
|
 Jedi Knight
Joined: 15 May 2001 Posts: 3264 Location: London, ON Canada
|
DarXide wrote: |
somthing else ? |
I believe MQ Auditor may be what you are looking for. Currently, we are beta testing MQ Auditor on Linux, Unix, IBM i (OS/400) and Windows and we are looking for feedback from users on it.
Here is the posting regarding it:
http://www.mqseries.net/phpBB2/viewtopic.php?t=53459
Links to the manual and sample audit files are posted in topic.
Please let me know if you have any questions or comments.
Regards,
Roger Lacroix
http://www.capitalware.biz _________________ Capitalware: Transforming tomorrow into today.
Connected to MQ!
Twitter |
|
Back to top |
|
 |
|