How to Monitor AI files

nancydrew72

New Member
Does anyone have a script to monitor if AI is running or know how I could monitor that? I've done quite a bit of reading today and the best I've come up with is to run the rfutil aimage query command to check for the status on each of the AI files. Does anyone have a better solution or a script they wouldn't mind sharing that already does this?

Regards,
NancyDrew72
 
You can see this information in various places in promon, like R&D | 1 (Status) | 8 ( Logging):

Code:
11/30/11        Status: Logging Summary
19:12:54

Crash protection:                  Yes
Delayed Commit:                    3 seconds
Before-image I/O:                  Reliable
Before-image cluster age time:     0 seconds
BI Writer status:                  Executing
Two Phase Commit:                  *** OFF ***
After-image journalling:           Yes           <----
After-image I/O:                   Reliable
AI Writer status:                  Executing

Enter <return>, R, P, T, or X (? for help):

You see above, "After-image journalling: Yes".

If you can run code in an editor you can use the following:

Code:
find _Logging.
display _Logging._Logging-AiJournal.

Output:
Code:
┌───────────────────────┐
│After-image journalling│
│───────────────────────│
│Yes                    │
└───────────────────────┘
 
Back
Top