[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

6123.0. "Having alarms rule running without interactive session on MCC." by AZUR::DURIF () Thu Sep 29 1994 05:50

Hello,

I should want to have alarms rule active without any interactive MCC session.

I use VMS and local MIR.

create reference r1
set reference r1 phone number = xxx

create domain .test rule rule1 -
expression = ( reference r1 phone number = 123, at every 00:01:00.00),-
severity = critical,-
batch queue = sys$batch,-
alarm fired procedure = user1:[mcctest.cld18829]alarms_fired.com,-
description = "Phone number fired"

My procedure is simple :

$! alarms_fired.com
$ REPLY/USERNAME = MCCTEST "The phone number rule has fired."
$ EXIT

This runs if i have an FCL session.

Any idea to have alarms_fired.com to run even with no interactive MCC session
running FCL.

I know about DETmcc but i search for a solution with DECmcc.

Benoit DURIF
T.RTitleUserPersonal
Name
DateLines
6123.1Try a batch jobWELLIN::MCCALLUMThu Sep 29 1994 07:0310
    
    The simple solution is to write a batch job like
    $start:
    $man/ent
    enable domain fred alarm rule *
    show domain fred alarm rule * all status, at start 23:59:00
    exit
    $goto start
    
    
6123.2MCC Alarms in batchAZUR::DURIFFri Sep 30 1994 05:246
Hello,

Thank you for your response. It works fine.
It was exactly what i was searching for.

Benoit DURIF