Added queue count to mona monitors. Added email notification on ProcessMonaQueue. Added hard limit of 2000 requests to be sent to MonInBufferedWorker at one time. Fixed outdated Shipment_Services in SharedTest environment.
19 lines
580 B
Plaintext
19 lines
580 B
Plaintext
compile insert MONA_QUEUE_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 26/06/2025
|
|
Description : Insert for Table MONA_QUEUE
|
|
----------------------------------------*/
|
|
#ifndef __MONA_QUEUE_EQUATES__
|
|
#define __MONA_QUEUE_EQUATES__
|
|
|
|
equ MONA_QUEUE.REQUEST_DTM$ to 1
|
|
equ MONA_QUEUE.MONITOR_NAME$ to 2
|
|
equ MONA_QUEUE.STATUS_NAME$ to 3
|
|
equ MONA_QUEUE.STATUS_STATE$ to 4
|
|
equ MONA_QUEUE.METRIC_NAME$ to 5
|
|
equ MONA_QUEUE.METRIC_NUMBER$ to 6
|
|
equ MONA_QUEUE.METRIC_TYPE$ to 7
|
|
|
|
#endif
|