Commit 3e599866 authored by Claes Sjofors's avatar Claes Sjofors

Server rt_post for email and sms added

parent fd93b6eb
......@@ -159,6 +159,7 @@ struct s_Active {
mh_eEvent event;
pwr_tAttrRef eventSound;
pwr_tString256 eventMoreText;
pwr_tString256 receiver;
pwr_tBoolean local;
sEventTab *detect_etp;
sEventTab *return_etp;
......@@ -257,6 +258,7 @@ struct s_Sup {
mh_mEventFlags EventFlags pwr_dAlignW;
pwr_tAttrRef Sound pwr_dAlignW;
pwr_tText256 MoreText pwr_dAlignW;
pwr_tString40 Recipient pwr_dAlignW;
/* Internal attributes */
pwr_sAttrRef Attribute pwr_dAlignW;
mh_uEventInfo AlarmStatus pwr_dAlignW;
......@@ -1630,6 +1632,7 @@ formatSupEvent (
mp->Object = sp->link.object;
mp->SupObject = sp->link.supObject;
strncpy(mp->EventName, sp->link.eventName, sizeof(mp->EventName));
strncpy(mp->Receiver, sup->Recipient, sizeof(mp->Receiver));
memcpy(&mp->SupInfo.mh_uSupInfo_u, sp->supInfoP, sp->supInfoSize);
*size = sizeof(mh_sMessage);
......@@ -2639,7 +2642,8 @@ initSupActiveCB (
sts = gdh_AttrrefToName(&Object, sp->link.objName, sizeof(sp->link.objName), cdh_mNName);
if (EVEN(sts))
errh_Error("Couldn't get name for supervised object\n%m", sts);
errh_Error("Couldn't get name for supervised object, %s\n%m",
cdh_ObjidToString(0, SupObject->Objid, 1), sts);
strncpy(sp->link.eventName, sp->link.objName, sizeof(sp->link.eventName));
cdh_ToUpper(sp->link.objName, NULL);
......@@ -2718,7 +2722,8 @@ initSupActiveCB (
&sp->attribute, (pwr_tAddress *)&sp->actualValue, &sp->attrDlid
);
if (EVEN(sts)) {
errh_Error("%s\n%m", "Couldn't link to supervised attribute", sts);
errh_Error("%s, %s\n%m", "Couldn't link to supervised attribute",
cdh_ObjidToString(0, SupObject->Objid, 1), sts);
sp->agent = mh_eAgent_None;
}
}
......
......@@ -124,6 +124,7 @@
# define cPrio_sysmon (cPrio_base + 16)
# define cPrio_opc_server (cPrio_base + 15)
# define cPrio_statussrv (cPrio_base + 15)
# define cPrio_post (cPrio_base + 5)
# define cPrio_sevhistmon (cPrio_base + 15)
# define cPrio_sev_server (cPrio_base + 15)
# define cPrio_plc_init (cPrio_base + 5)
......@@ -2094,6 +2095,9 @@ ini_ProcTable (
pp = ini_ProcInsert(sts, cp, "pwr_statussrv", "pwr_statussrv_%d", 0, 1, "rt_statussrv", cPrio_statussrv, 0, "");
pp->proc.flags.b.system = 1;
pp = ini_ProcInsert(sts, cp, "pwr_post", "pwr_post_%d", 0, 1, "rt_post", cPrio_post, 0, "");
pp->proc.flags.b.system = 1;
pp = ini_ProcInsert(sts, cp, "pwr_sevhistmon", "pwr_sevhistmon_%d", 0, 1, "rt_sevhistmon", cPrio_sevhistmon, 0, "");
pp->proc.flags.b.system = 1;
......
include $(pwre_dir_symbols)
-include $(pwre_sroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq ($($(type_name)_generic_mk),)
-include $(pwre_sroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq ($($(type_name)_generic_mk),)
include $(pwre_sroot)/tools/bld/src/$(type_name)_generic.mk
endif
-include ../../special.mk
-include ../special.mk
-include special.mk
ifndef link_rule_mk
link_rule_mk := 1
link = $(ldxx) $(linkflags) $(domap) -o $(export_exe) \
$(export_obj) $(objects) $(rt_msg_objs) \
$(pwr_obj)/rt_io_user.o\
$(pwre_conf_libdir) $(pwre_conf_libpwrrt) $(pwre_conf_lib)
endif
/*
* Proview Open Source Process Control.
* Copyright (C) 2005-2011 SSAB Oxelosund AB.
*
* This file is part of Proview.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview give you permission to, from the build function in the
* Proview Configurator, combine Proview with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview (the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
*/
#include <math.h>
#include <float.h>
#include <stdlib.h>
#include "rt_post.h"
#include "co_error.h"
#include "rt_gdh.h"
#include "co_cdh.h"
#include "co_time.h"
#include "co_dcli.h"
#include "rt_errh.h"
#include "rt_qcom.h"
#include "rt_ini_event.h"
#include "rt_aproc.h"
#include "rt_pwr_msg.h"
#include "rt_qcom_msg.h"
#include "rt_mh_util.h"
static rt_post *post = 0;
typedef union alau_Event ala_uEvent;
union alau_Event
{
mh_sMsgInfo Info;
mh_sAck Ack;
mh_sMessage Msg;
mh_sReturn Return;
mh_sBlock Block;
};
void rt_post::open()
{
pwr_tStatus sts;
pwr_tObjid oid;
pwr_tFileName filename;
// Open server configuration object PostConfig
sts = gdh_GetClassList( pwr_cClass_PostConfig, &oid);
if ( ODD(sts)) {
sts = gdh_ObjidToPointer( oid, (void **)&conf);
if ( EVEN(sts)) throw co_error( sts);
aproc_RegisterObject( oid);
}
else {
errh_Info( "No Post configuration");
conf->Status = 0;
exit(0);
}
conf->Status = PWR__SRVSTARTUP;
// Connect to mh
mh_UtilWaitForMh();
sts = mh_OutunitConnect(
oid,
mh_eOutunitType_Post,
0,
mh_ack_bc,
mh_alarm_bc,
mh_block_bc,
mh_cancel_bc,
mh_clear_alarmlist_bc,
mh_clear_blocklist_bc,
mh_info_bc,
mh_return_bc
);
if ( EVEN(sts)) {
errh_Error( "Post terminated: %m", sts);
conf->Status = sts;
exit(0);
}
// Load user database
sts = gdh_GetObjectInfo( "pwrNode-System.SystemGroup", &systemgroup,
sizeof(systemgroup));
if ( EVEN(sts)) {
errh_Error( "Post terminated: %m", sts);
conf->Status = sts;
exit(0);
}
udb = new GeUser();
sts = dcli_get_defaultfilename( user_cFilename, filename, "");
udb->load( filename);
conf->Status = PWR__SRUN;
}
void rt_post::close()
{
mh_OutunitDisconnect();
}
void rt_post::scan()
{
pwr_tStatus sts = 1;
while (ODD(sts))
sts = mh_OutunitReceive();
aproc_TimeStamp( scantime(), 5);
}
void rt_post::init( qcom_sQid *qid)
{
qcom_sQid qini;
qcom_sQattr qAttr;
pwr_tStatus sts;
sts = gdh_Init("rt_post");
if ( EVEN(sts)) {
errh_Fatal( "gdh_Init, %m", sts);
exit(sts);
}
errh_Init("pwr_post", errh_eAnix_post);
errh_SetStatus( PWR__SRVSTARTUP);
if (!qcom_Init(&sts, 0, "pwr_post")) {
errh_Fatal("qcom_Init, %m", sts);
errh_SetStatus( PWR__SRVTERM);
exit(sts);
}
qAttr.type = qcom_eQtype_private;
qAttr.quota = 100;
if (!qcom_CreateQ(&sts, qid, &qAttr, "events")) {
errh_Fatal("qcom_CreateQ, %m", sts);
errh_SetStatus( PWR__SRVTERM);
exit(sts);
}
qini = qcom_cQini;
if (!qcom_Bind(&sts, qid, &qini)) {
errh_Fatal("qcom_Bind(Qini), %m", sts);
errh_SetStatus( PWR__SRVTERM);
exit(-1);
}
}
pwr_tStatus rt_post::mh_ack_bc( mh_sAck *MsgP)
{
return 1;
}
pwr_tStatus rt_post::mh_return_bc( mh_sReturn *MsgP)
{
return 1;
}
pwr_tStatus rt_post::mh_alarm_bc( mh_sMessage *MsgP)
{
ala_uEvent *event = (ala_uEvent *) MsgP;
int sts;
char str[256];
char user[80];
char group[80];
char *s;
pwr_tTime etime, current;
pwr_tDeltaTime diff;
int rcvnum;
char rcv_array[10][80];
if ( !post || post->conf->Disable)
return 1;
if ( !event->Info.EventFlags & pwr_mEventFlagsMask_Email ||
!event->Info.EventFlags & pwr_mEventFlagsMask_SMS)
return 1;
// Skip events older than 10 minutes
etime = net_NetTimeToTime( &event->Info.EventTime);
time_GetTime( &current);
time_Adiff( &diff, &current, &etime);
if ( time_DToFloat( 0, &diff) > 600)
return 1;
// Check if already handled
if ( event->Info.EventFlags & pwr_mEventFlagsMask_Email) {
if ( post->email_check( &event->Info.Id))
return 1;
else
post->email_register( &event->Info.Id);
}
if ( event->Info.EventFlags & pwr_mEventFlagsMask_SMS) {
if ( post->sms_check( &event->Info.Id))
return 1;
else
post->sms_register( &event->Info.Id);
}
post->replace_symbol( str, event->Msg.Receiver);
rcvnum = dcli_parse( str, ",", "",
(char *) rcv_array, sizeof( rcv_array)/sizeof( rcv_array[0]),
sizeof( rcv_array[0]), 0);
for ( int i = 0; i < rcvnum; i++) {
dcli_trim( str, rcv_array[i]);
s = strrchr( str, '.');
if ( s) {
*s = 0;
strncpy( group, post->systemgroup, sizeof(group));
strncat( group, ".", sizeof(group));
strncat( group, str, sizeof(group));
strncpy( user, s+1, sizeof(user));
}
else {
strncpy( group, post->systemgroup, sizeof(group));
strncpy( user, str, sizeof(user));
}
SystemName *sn = new SystemName( group);
sts = sn->parse();
if ( EVEN(sts)) {
delete sn;
errh_Error( "Post systemgroup parse error, %m", sts);
continue;
}
SystemList *sl = post->udb->find_system( sn);
delete sn;
if ( !sl) {
errh_Error( "No such system group, %s", group);
continue;
}
UserList *ul = (UserList *) sl->find_user( user);
if ( !ul) {
errh_Error( "No such user, %s", user);
continue;
}
if ( event->Info.EventFlags & pwr_mEventFlagsMask_Email &&
strcmp( post->conf->EmailCmd, "") != 0) {
char address[40];
pwr_tCmd cmd;
ul->get_email( address, sizeof(address));
post->format_cmd( cmd, post->conf->EmailCmd, address, event->Msg.EventText);
if ( post->conf->Log)
errh_Info( "Email: %s", cmd);
system( cmd);
post->conf->SentEmail++;
}
if ( event->Info.EventFlags & pwr_mEventFlagsMask_SMS &&
strcmp( post->conf->SMS_Cmd, "") != 0) {
char sms[40];
pwr_tCmd cmd;
ul->get_sms( sms, sizeof(sms));
post->format_cmd( cmd, post->conf->SMS_Cmd, sms, event->Msg.EventText);
if ( post->conf->Log)
errh_Info( "SMS: %s", cmd);
system( cmd);
post->conf->SentSMS++;
}
}
return 1;
}
pwr_tStatus rt_post::mh_block_bc( mh_sBlock *MsgP)
{
return 1;
}
pwr_tStatus rt_post::mh_cancel_bc( mh_sReturn *MsgP)
{
return 1;
}
pwr_tStatus rt_post::mh_info_bc( mh_sMessage *MsgP)
{
return 1;
}
pwr_tStatus rt_post::mh_clear_alarmlist_bc( pwr_tNodeIndex nix)
{
return 1;
}
pwr_tStatus rt_post::mh_clear_blocklist_bc( pwr_tNodeIndex nix)
{
return 1;
}
void rt_post::format_cmd( char *cmd, char *format, char *address, char *text)
{
char *s1;
pwr_tCmd str;
strncpy( cmd, format, sizeof(pwr_tCmd));
// Replace $address with address
s1 = strstr( cmd, "$address");
if ( s1) {
strncpy( str, s1 + strlen("$address"), sizeof(str));
*s1 = 0;
strncat( cmd, address, sizeof(pwr_tCmd));
strncat( cmd, str, sizeof(pwr_tCmd));
}
// Replace $text with text
s1 = strstr( cmd, "$text");
if ( s1) {
strncpy( str, s1 + strlen("$text"), sizeof(str));
*s1 = 0;
strncat( cmd, text, sizeof(pwr_tCmd));
strncat( cmd, str, sizeof(pwr_tCmd));
}
}
void rt_post::replace_symbol( char *outstr, char *instr)
{
char *s, *t, *u;
int symbolmode = 0;
char symbol[80];
char csymbol[80];
int size;
int found;
s = instr;
t = outstr;
while ( 1) {
if ( symbolmode) {
if ( *s == ',' || *s == ' ' || *s == ' ' || *s == 0) {
// End of symbol
size = (long int) s - (long int)(u+1);
strncpy( symbol, u + 1, size);
symbol[size] = 0;
// Find the symbol
found = 0;
for ( unsigned int j = 0; j < sizeof(conf->Symbols)/sizeof(conf->Symbols[0]); j++) {
dcli_trim( csymbol, conf->Symbols[j].Name);
if ( strcmp( symbol, csymbol) == 0) {
// Found, insert the value
strcpy( t, conf->Symbols[j].Value);
t += strlen( conf->Symbols[j].Value);
found = 1;
break;
}
}
if ( !found) {
// Not found
strcpy( t, "$");
t++;
strcat( t, symbol);
t += strlen(symbol);
}
symbolmode = 0;
*t = *s;
t++;
}
}
else {
if ( *s == '$') {
symbolmode = 1;
u = s;
}
else {
*t = *s;
t++;
}
}
if ( *s == 0)
break;
s++;
}
}
void rt_post::email_register( mh_sEventId *id) {
memcpy( &sent_email[sent_email_endidx], id, sizeof(sent_email[0]));
sent_email_endidx++;
if ( sent_email_endidx >= sizeof(sent_email)/sizeof(sent_email[0]))
sent_email_endidx = 0;
if ( sent_email_endidx == sent_email_startidx)
sent_email_startidx++;
if ( sent_email_startidx >= sizeof(sent_email)/sizeof(sent_email[0]))
sent_email_startidx = 0;
}
int rt_post::email_check( mh_sEventId *id)
{
unsigned int i;
for( i = sent_email_startidx; ; i++) {
if ( i >= sizeof(sent_email)/sizeof(sent_email[0]))
i = 0;
if ( i == sent_email_endidx)
break;
if ( memcmp( &sent_email[i], id, sizeof(*id)))
return 1;
}
return 0;
}
void rt_post::sms_register( mh_sEventId *id) {
memcpy( &sent_sms[sent_sms_endidx], id, sizeof(sent_sms[0]));
sent_sms_endidx++;
if ( sent_sms_endidx >= sizeof(sent_sms)/sizeof(sent_sms[0]))
sent_sms_endidx = 0;
if ( sent_sms_endidx == sent_sms_startidx)
sent_sms_startidx++;
if ( sent_sms_startidx >= sizeof(sent_sms)/sizeof(sent_sms[0]))
sent_sms_startidx = 0;
}
int rt_post::sms_check( mh_sEventId *id)
{
unsigned int i;
for( i = sent_sms_startidx; ; i++) {
if ( i >= sizeof(sent_sms)/sizeof(sent_sms[0]))
i = 0;
if ( i == sent_sms_endidx)
break;
if ( memcmp( &sent_sms[i], id, sizeof( *id)) == 0)
return 1;
}
return 0;
}
int main()
{
pwr_tStatus sts;
int tmo;
char mp[2000];
qcom_sQid qid = qcom_cNQid;
qcom_sGet get;
int swap = 0;
bool first_scan = true;
post = new rt_post();
post->init( &qid);
try {
post->open();
}
catch ( co_error& e) {
errh_Error( (char *)e.what().c_str());
errh_Fatal( "rt_post aborting");
errh_SetStatus( PWR__SRVTERM);
exit(0);
}
aproc_TimeStamp(post->scantime(), 10);
errh_SetStatus( PWR__SRUN);
first_scan = true;
for (;;) {
if ( first_scan) {
tmo = (int) (post->scantime() * 1000 - 1);
}
get.maxSize = sizeof(mp);
get.data = mp;
qcom_Get( &sts, &qid, &get, tmo);
if (sts == QCOM__TMO || sts == QCOM__QEMPTY) {
if ( !swap)
post->scan();
}
else {
ini_mEvent new_event;
qcom_sEvent *ep = (qcom_sEvent*) get.data;
new_event.m = ep->mask;
if (new_event.b.oldPlcStop && !swap) {
errh_SetStatus( PWR__SRVRESTART);
post->conf->Status = PWR__SRVRESTART;
swap = 1;
post->close();
} else if (new_event.b.swapDone && swap) {
swap = 0;
post->open();
errh_SetStatus( PWR__SRUN);
post->conf->Status = PWR__SRUN;
} else if (new_event.b.terminate) {
exit(0);
}
}
first_scan = false;
}
}
/*
* Proview Open Source Process Control.
* Copyright (C) 2005-2011 SSAB Oxelosund AB.
*
* This file is part of Proview.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview give you permission to, from the build function in the
* Proview Configurator, combine Proview with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview (the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
*/
#ifndef rt_post_h
#define rt_post_h
using namespace std;
#include <string.h>
#ifndef pwr_h
# include "pwr.h"
#endif
#ifndef rt_qmon_h
# include "rt_qcom.h"
#endif
#ifndef rt_mh_h
# include "rt_mh.h"
#endif
#ifndef rt_mh_outunit_h
# include "rt_mh_outunit.h"
#endif
#ifndef co_user_h
# include "co_user.h"
#endif
#include "pwr_baseclasses.h"
/*! \file rt_post.h
\brief Contains the rt_post class. */
/*! \addtogroup rt */
/*@{*/
class rt_post {
public:
rt_post() : scan_time(1), conf(0), udb(0), sent_sms_startidx(0), sent_sms_endidx(0),
sent_email_startidx(0), sent_email_endidx(0)
{ strcpy( systemgroup, ""); }
void init( qcom_sQid *qid);
void open();
void close();
void scan();
double scantime() { return scan_time;}
void format_cmd( char *cmd, char *format, char *address, char *text);
void replace_symbol( char *outstr, char *instr);
void email_register( mh_sEventId *id);
void sms_register( mh_sEventId *id);
int email_check( mh_sEventId *id);
int sms_check( mh_sEventId *id);
static pwr_tStatus mh_ack_bc( mh_sAck *MsgP);
static pwr_tStatus mh_return_bc( mh_sReturn *MsgP);
static pwr_tStatus mh_alarm_bc( mh_sMessage *MsgP);
static pwr_tStatus mh_block_bc( mh_sBlock *MsgP);
static pwr_tStatus mh_cancel_bc( mh_sReturn *MsgP);
static pwr_tStatus mh_info_bc( mh_sMessage *MsgP);
static pwr_tStatus mh_clear_alarmlist_bc( pwr_tNodeIndex nix);
static pwr_tStatus mh_clear_blocklist_bc( pwr_tNodeIndex nix);
double scan_time;
pwr_sClass_PostConfig *conf;
GeUser *udb;
char systemgroup[80];
mh_sEventId sent_sms[200];
mh_sEventId sent_email[200];
unsigned int sent_sms_startidx;
unsigned int sent_sms_endidx;
unsigned int sent_email_startidx;
unsigned int sent_email_endidx;
};
/*@}*/
#endif
......@@ -46,6 +46,7 @@
#include "rt_qcom_msg.h"
#include "rt_ini_event.h"
#include "rt_errh.h"
#include "rt_aproc.h"
#include "rt_sev_net.h"
#include "rt_sevhistmon.h"
#include "rt_sev_msg.h"
......@@ -64,8 +65,8 @@ int rt_sevhistmon::init()
pwr_tOid conf_oid;
pwr_tOName oname;
errh_Init("pwr_sevhistmon", errh_eNAnix);
// errh_SetStatus( PWR__SRVSTARTUP);
errh_Init("pwr_sevhistmon", errh_eAnix_sevhistmon);
errh_SetStatus( PWR__SRVSTARTUP);
sts = gdh_Init( "rt_sevhistmon");
if ( EVEN(sts)) throw co_error(sts);
......@@ -83,6 +84,8 @@ int rt_sevhistmon::init()
m_sts = gdh_RefObjectInfo( oname, (void **)&m_confp, &m_conf_refid, sizeof(*m_confp));
if ( EVEN(m_sts)) throw co_error(m_sts);
aproc_RegisterObject( conf_oid);
m_confp->Status = m_server_status = PWR__SRVSTARTUP;
m_scantime = m_confp->ScanTime;
if ( m_scantime < 0.02)
......@@ -594,6 +597,8 @@ int rt_sevhistmon::close()
{
close_objects();
m_confp->Status = PWR__SRVTERM;
errh_SetStatus( PWR__SRVTERM);
gdh_UnrefObjectInfo( m_conf_refid);
return 1;
}
......@@ -718,6 +723,7 @@ void rt_sevhistmon::set_status()
}
}
m_confp->Status = sts;
errh_SetStatus( sts);
}
int rt_sevhistmon::retry_connect()
......@@ -1045,6 +1051,7 @@ int rt_sevhistmon::mainloop()
if ( m_loopcnt % reconnect_time == 0)
retry_connect();
}
aproc_TimeStamp( m_scantime, 5);
continue;
}
......@@ -1072,7 +1079,7 @@ int rt_sevhistmon::mainloop()
new_event.m = ep->mask;
if (new_event.b.oldPlcStop && !m_swap) {
m_swap = 1;
// errh_SetStatus( PWR__SRVRESTART);
errh_SetStatus( PWR__SRVRESTART);
m_confp->Status = PWR__SRVRESTART;
close();
}
......@@ -1086,7 +1093,7 @@ int rt_sevhistmon::mainloop()
errh_Error( "SevHistMonitor terminating, %m", e.sts());
exit(0);
}
// errh_SetStatus( PWR__SRUN);
errh_SetStatus( PWR__SRUN);
m_confp->Status = PWR__SRUN;
errh_Info("Warm restart completed");
}
......
......@@ -1070,11 +1070,11 @@ struct pwr_s_Node {
pwr_tDeltaTime RestartStallTime pwr_dAlignLW;
pwr_tTime SystemTime pwr_dAlignLW;
pwr_tNetStatus SystemStatus pwr_dAlignW;
pwr_tStatus ProcStatus[40] pwr_dAlignW;
pwr_tStatus ProcMsgSeverity[40] pwr_dAlignW;
pwr_tString80 ProcMessage[40] pwr_dAlignW;
pwr_tOid ProcObject[40] pwr_dAlignW;
pwr_tTime ProcTimeStamp[40] pwr_dAlignLW;
pwr_tStatus ProcStatus[60] pwr_dAlignW;
pwr_tStatus ProcMsgSeverity[60] pwr_dAlignW;
pwr_tString80 ProcMessage[60] pwr_dAlignW;
pwr_tOid ProcObject[60] pwr_dAlignW;
pwr_tTime ProcTimeStamp[60] pwr_dAlignLW;
pwr_tBoolean EmergBreakTrue pwr_dAlignW;
pwr_tUInt32 EmergBreakSelect pwr_dAlignW;
};
......
......@@ -218,6 +218,8 @@ class UserList {
char *email, char *phone, char *sms);
UserList *next_user() { return next;}
char *get_name() { return name;}
void get_sms( char *s, int size) { strncpy(s, sms, size);}
void get_email( char *s, int size) { strncpy( s, email, size);}
unsigned long get_priv() { return priv;}
static char *pwcrypt( const char *str);
};
......
......@@ -64,9 +64,11 @@ pwrs_Node_Exec (
errh_eSeverity severity;
errh_eSeverity system_severity;
int new_idx = -1;
static int supervise[40] = {
static int supervise[60] = {
0,0,0,0,1,1,1,0,1,1,
1,1,1,0,0,1,0,1,1,1,
1,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
1,1,1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,1};
static int reboot_done = 0;
......
......@@ -119,26 +119,28 @@ typedef enum {
errh_eAnix_remote = 18,
errh_eAnix_opc_server = 19,
errh_eAnix_statussrv = 20,
errh_eAnix_appl1 = 21,
errh_eAnix_appl2 = 22,
errh_eAnix_appl3 = 23,
errh_eAnix_appl4 = 24,
errh_eAnix_appl5 = 25,
errh_eAnix_appl6 = 26,
errh_eAnix_appl7 = 27,
errh_eAnix_appl8 = 28,
errh_eAnix_appl9 = 29,
errh_eAnix_appl10 = 30,
errh_eAnix_appl11 = 31,
errh_eAnix_appl12 = 32,
errh_eAnix_appl13 = 33,
errh_eAnix_appl14 = 34,
errh_eAnix_appl15 = 35,
errh_eAnix_appl16 = 36,
errh_eAnix_appl17 = 37,
errh_eAnix_appl18 = 38,
errh_eAnix_appl19 = 39,
errh_eAnix_appl20 = 40
errh_eAnix_post = 21,
errh_eAnix_sevhistmon = 22,
errh_eAnix_appl1 = 41,
errh_eAnix_appl2 = 42,
errh_eAnix_appl3 = 43,
errh_eAnix_appl4 = 44,
errh_eAnix_appl5 = 45,
errh_eAnix_appl6 = 46,
errh_eAnix_appl7 = 47,
errh_eAnix_appl8 = 48,
errh_eAnix_appl9 = 49,
errh_eAnix_appl10 = 50,
errh_eAnix_appl11 = 51,
errh_eAnix_appl12 = 52,
errh_eAnix_appl13 = 53,
errh_eAnix_appl14 = 54,
errh_eAnix_appl15 = 55,
errh_eAnix_appl16 = 56,
errh_eAnix_appl17 = 57,
errh_eAnix_appl18 = 58,
errh_eAnix_appl19 = 59,
errh_eAnix_appl20 = 50
} errh_eAnix;
/**
......
......@@ -166,7 +166,8 @@ enum mh_eOutunitType{
mh_eOutunitType_File = 3,
mh_eOutunitType_Terminal = 4,
mh_eOutunitType_Logger = 5,
mh_eOutunitType_ = 6
mh_eOutunitType_Post = 6,
mh_eOutunitType_ = 7
};
enum mh_eSource {
......@@ -379,6 +380,7 @@ struct mh_sMessage {
pwr_sAttrRef Object;
pwr_sAttrRef SupObject;
pwr_tAName EventName;
pwr_tString40 Receiver;
};
struct mh_sReturn {
......
......@@ -309,6 +309,11 @@ mh_OutunitConnect (
l.pSelL = (void *)&((pwr_sClass_EventPrinter*) p)->SelectList[0];
l.SelectListIsUpdated = NULL;
break;
case pwr_cClass_PostConfig:
type = mh_eOutunitType_Post;
l.pSelL = (void *)&((pwr_sClass_PostConfig*) p)->EventSelectList[0];
l.SelectListIsUpdated = NULL;
break;
default:
return MH__NOOUTUNIT;
break;
......
!
! Proview Open Source Process Control.
! Copyright (C) 2005-2011 SSAB Oxelosund AB.
!
! This file is part of Proview.
!
! This program is free software; you can redistribute it and/or
! modify it under the terms of the GNU General Public License as
! published by the Free Software Foundation, either version 2 of
! the License, or (at your option) any later version.
!
! This program is distributed in the hope that it will be useful
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU General Public License for more details.
!
! You should have received a copy of the GNU General Public License
! along with Proview. If not, see <http://www.gnu.org/licenses/>
!
! Linking Proview statically or dynamically with other modules is
! making a combined work based on Proview. Thus, the terms and
! conditions of the GNU General Public License cover the whole
! combination.
!
! In addition, as a special exception, the copyright holders of
! Proview give you permission to, from the build function in the
! Proview Configurator, combine Proview with modules generated by the
! Proview PLC Editor to a PLC program, regardless of the license
! terms of these modules. You may copy and distribute the resulting
! combined work under the terms of your choice, provided that every
! copy of the combined work is accompanied by a complete copy of
! the source code of Proview (the version used to produce the
! combined work), being distributed under the terms of the GNU
! General Public License plus this exception.
!
! pwrb_c_a_symboldefinition.wb_load -- Defines the class SymbolDefinition.
!
SObject pwrb:Class
!/**
! @Version 1.0
! @Summary Definition of symbols.
! Definition of symbols.
!*/
Object SymbolDefinition $ClassDef 549
Body SysBody
Attr Editor = pwr_eEditor_AttrEd
Attr Method = pwr_eMethod_Standard
EndBody
Object RtBody $ObjBodyDef 1
Body SysBody
Attr StructName = "SymbolDefinition"
EndBody
!/**
! Symbol name.
!*/
Object Name $Attribute 1
Body SysBody
Attr TypeRef = "pwrs:Type-$String80"
EndBody
EndObject
!/**
! Symbol value.
!*/
Object Value $Attribute 2
Body SysBody
Attr TypeRef = "pwrs:Type-$String80"
EndBody
EndObject
EndObject
Object Template SymbolDefinition
Body RtBody
EndBody
EndObject
EndObject
EndSObject
......@@ -342,6 +342,15 @@ SObject pwrb:Class
EndBody
EndObject
!/**
! Recipient for epost and mms alarms.
! The recipient is a user defined in the user database.
!*/
Object Recipient $Attribute 41
Body SysBody
Attr TypeRef = "pwrs:Type-$String40"
EndBody
EndObject
!/**
! Specifies the complete name of supervised parameter.
! Attribute is filled in by the user if the input named
! IN is left open. If the input is connected the names
......
......@@ -379,6 +379,15 @@ SObject pwrb:Class
EndBody
EndObject
!/**
! Recipient for epost and mms alarms.
! The recipient is a user defined in the user database.
!*/
Object Recipient $Attribute 48
Body SysBody
Attr TypeRef = "pwrs:Type-$String40"
EndBody
EndObject
!/**
! Attribute is filled in by the user if the input named
! IN is left open. If the input is connected the names
! are filled in by the PROVIEW/R system at compilation.
......
......@@ -342,6 +342,15 @@ SObject pwrb:Class
EndBody
EndObject
!/**
! Recipient for epost and mms alarms.
! The recipient is a user defined in the user database.
!*/
Object Recipient $Attribute 38
Body SysBody
Attr TypeRef = "pwrs:Type-$String40"
EndBody
EndObject
!/**
! Attribute is filled in by the user if the input named
! IN is left open. If the input is connected the names
! are filled in by the PROVIEW/R system at compilation.
......
......@@ -334,6 +334,15 @@ SObject pwrb:Class
EndBody
EndObject
!/**
! Recipient for epost and mms alarms.
! The recipient is a user defined in the user database.
!*/
Object Recipient $Attribute 44
Body SysBody
Attr TypeRef = "pwrs:Type-$String40"
EndBody
EndObject
!/**
! Attribute is filled in by the server process to the
! NodeLinkSup object itself.
!*/
......
......@@ -257,7 +257,7 @@ SObject pwrb:Class
! identity according to the calling parameter EventName.
!
! SelectList specifies the hierarchies from which
! messages are to be sent to the user. Up to 20 different
! messages are to be sent to the user. Up to 40 different
! hierarchies can be specified. If messages from e.g. a
! Watchdog object in a node will be received, then the
! name of the node will be specified.
......
!
! Proview Open Source Process Control.
! Copyright (C) 2005-2011 SSAB Oxelosund AB.
!
! This file is part of Proview.
!
! This program is free software; you can redistribute it and/or
! modify it under the terms of the GNU General Public License as
! published by the Free Software Foundation, either version 2 of
! the License, or (at your option) any later version.
!
! This program is distributed in the hope that it will be useful
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU General Public License for more details.
!
! You should have received a copy of the GNU General Public License
! along with Proview. If not, see <http://www.gnu.org/licenses/>
!
! Linking Proview statically or dynamically with other modules is
! making a combined work based on Proview. Thus, the terms and
! conditions of the GNU General Public License cover the whole
! combination.
!
! In addition, as a special exception, the copyright holders of
! Proview give you permission to, from the build function in the
! Proview Configurator, combine Proview with modules generated by the
! Proview PLC Editor to a PLC program, regardless of the license
! terms of these modules. You may copy and distribute the resulting
! combined work under the terms of your choice, provided that every
! copy of the combined work is accompanied by a complete copy of
! the source code of Proview (the version used to produce the
! combined work), being distributed under the terms of the GNU
! General Public License plus this exception.
!
! pwrb_c_postconfig.wb_load -- Defines the class PostConfig.
!
SObject pwrb:Class
!/**
! @Version 1.0
! @Group Servers,NodeConfiguration
! @Summary Configuration of event post server.
! Configuration of event post server.
!*/
Object PostConfig $ClassDef 548
Body SysBody
Attr Editor = pwr_eEditor_AttrEd
Attr Method = pwr_eMethod_Standard
EndBody
Object RtBody $ObjBodyDef 1
Body SysBody
Attr StructName = "PostConfig"
EndBody
!/**
! Specifies the email shell command.
!*/
Object EmailCmd $Attribute 1
Body SysBody
Attr TypeRef = "pwrs:Type-$String256"
EndBody
EndObject
!/**
! Specifies the SMS shell command.
!*/
Object SMS_Cmd $Attribute 2
Body SysBody
Attr TypeRef = "pwrs:Type-$String256"
EndBody
EndObject
!/**
! SelectList specifies the hierarchies from which
! messages are to be sent to the user. Up to 20 different
! hierarchies can be specified. If messages from e.g. a
! Watchdog object in a node will be received, then the
! name of the node will be specified.
!
! Note! If the SelectList is left blank no message at all is
! sent to the user.
!*/
Object EventSelectList $Attribute 3
Body SysBody
Attr TypeRef = "pwrs:Type-$String80"
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 40
EndBody
EndObject
!/**
! Symbol definitions.
!*/
Object Symbols $Attribute 4
Body SysBody
Attr TypeRef = "pwrb:Class-SymbolDefinition"
Attr Flags |= PWR_MASK_ARRAY
Attr Flags |= PWR_MASK_CLASS
Attr Elements = 20
EndBody
EndObject
!/**
! Server status.
!*/
Object Status $Attribute 5
Body SysBody
Attr TypeRef = "pwrs:Type-$Status"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_NOEDIT
EndBody
EndObject
!/**
! Number of sent SMS.
!*/
Object SentSMS $Attribute 6
Body SysBody
Attr TypeRef = "pwrs:Type-$UInt32"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_NOEDIT
EndBody
EndObject
!/**
! Number of sent Email.
!*/
Object SentEmail $Attribute 7
Body SysBody
Attr TypeRef = "pwrs:Type-$UInt32"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_NOEDIT
EndBody
EndObject
!/**
! Disable post.
!*/
Object Disable $Attribute 8
Body SysBody
Attr TypeRef = "pwrs:Type-$Boolean"
EndBody
EndObject
!/**
! Print posted commands to console log.
!*/
Object Log $Attribute 9
Body SysBody
Attr TypeRef = "pwrs:Type-$Boolean"
EndBody
EndObject
EndObject
Object Template PostConfig
Body RtBody
EndBody
EndObject
EndObject
EndSObject
......@@ -125,6 +125,28 @@ SObject pwrb:Type
Attr Value = 64
EndBody
EndObject
!/**
! The message will be handle by the email server and
! forwarded to the specified receiver.
!*/
Object Email $Bit
Body SysBody
Attr PgmName = "Email"
Attr Text = "Email"
Attr Value = 128
EndBody
EndObject
!/**
! The message will be handle by the SMS server and
! forwarded to the specified receiver.
!*/
Object SMS $Bit
Body SysBody
Attr PgmName = "SMS"
Attr Text = "SMS"
Attr Value = 256
EndBody
EndObject
EndObject
EndSObject
......
......@@ -204,7 +204,7 @@ SObject pwrs:Class
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_INVISIBLE
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 40
Attr Elements = 60
EndBody
EndObject
!/**
......@@ -216,7 +216,7 @@ SObject pwrs:Class
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_INVISIBLE
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 40
Attr Elements = 60
EndBody
EndObject
!/**
......@@ -228,7 +228,7 @@ SObject pwrs:Class
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_INVISIBLE
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 40
Attr Elements = 60
EndBody
EndObject
!/**
......@@ -240,7 +240,7 @@ SObject pwrs:Class
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_INVISIBLE
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 40
Attr Elements = 60
EndBody
EndObject
!/**
......@@ -252,7 +252,7 @@ SObject pwrs:Class
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_INVISIBLE
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 40
Attr Elements = 60
EndBody
EndObject
!/**
......
......@@ -2959,6 +2959,7 @@ pwr_tStatus lfu_check_appl_file( char *nodename, int bus_number)
"#pwr_webmonelog, , noload, norun, , 5, debug, \"\"" << endl <<
"#pwr_opc_server, , noload, norun, , 5, debug, \"\"" << endl <<
"#pwr_statussrv, , noload, norun, , 5, debug, \"\"" << endl <<
"#pwr_post, , noload, norun, , 5, debug, \"\"" << endl <<
"#pwr_sevhistmon, , noload, norun, , 5, debug, \"\"" << endl <<
"#pwr_sev_server, , noload, norun, , 5, debug, \"\"" << endl;
......
0! DefaultWidth 813
0! DefaultHeight 692
0! DefaultHeight 729
1
100 20
135 20
101 20
102 -95
103 -69
104 3.0024
136 3.0024
102 -136
103 245
104 2.94388
136 2.94388
105 100
106 -14
107 -10
106 -20
107 6
108 40.4564
109 0.64779
110 36.185
110 38.0472
111 2.37709
116 0
117 0
118 101
119 91
117 30
118 99
119 119
120 1
121 Claes context
122 0
......@@ -36,7 +36,7 @@
134
22
2200 0
2201 389
2201 411
2202 pwr_c_node
2203 51
2205 0
......@@ -47,7 +47,7 @@
2209 0.35
2210 1.9
2211 41
2212 36.5
2212 38.4
2213 4
2214
pwrp_pop:
......@@ -613,6 +613,7 @@ pwr_exe:
3003 2.4
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -646,6 +647,7 @@ pwr_exe:
3003 4.34929
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -936,6 +938,7 @@ pwr_exe:
3003 5.16052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -1233,6 +1236,7 @@ pwr_exe:
3003 6.01052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -1398,6 +1402,7 @@ pwr_exe:
3003 6.86052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -1563,6 +1568,7 @@ pwr_exe:
3003 5.16052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -1728,6 +1734,7 @@ pwr_exe:
3003 6.01052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -1893,6 +1900,7 @@ pwr_exe:
3003 6.86052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -2058,6 +2066,7 @@ pwr_exe:
3003 5.16052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -2223,6 +2232,7 @@ pwr_exe:
3003 6.01052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -2439,7 +2449,7 @@ pwr_exe:
0
1006 40.4564
1007 0.64779
1008 36.185
1008 38.0472
1009 8.42103
1013 -1e+37
1014 1e+37
......@@ -2485,7 +2495,7 @@ pwr_exe:
2801 0
2802 -5.03915
2803 0
2804 6.94099
2804 7.40654
2805 8.42103
2806 0
99
......@@ -2642,6 +2652,7 @@ pwr_exe:
3003 8.76052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -6130,6 +6141,7 @@ pwr_exe:
3003 10.6605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -7300,6 +7312,7 @@ pwr_exe:
3003 13.8605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -7555,6 +7568,7 @@ pwr_exe:
3003 15.4605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -7810,6 +7824,7 @@ pwr_exe:
3003 17.0605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -8065,6 +8080,7 @@ pwr_exe:
3003 17.8605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -8320,6 +8336,7 @@ pwr_exe:
3003 18.6605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -8575,6 +8592,7 @@ pwr_exe:
3003 20.2605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -8830,6 +8848,7 @@ pwr_exe:
3003 21.0605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -9085,6 +9104,7 @@ pwr_exe:
3003 22.6605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -9278,6 +9298,7 @@ pwr_exe:
3003 9.76052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13487,6 +13508,7 @@ pwr_exe:
3003 9.76052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13520,6 +13542,7 @@ pwr_exe:
3003 9.76052
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13553,6 +13576,7 @@ pwr_exe:
3003 10.7105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13586,6 +13610,7 @@ pwr_exe:
3003 11.5105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13619,6 +13644,7 @@ pwr_exe:
3003 13.1105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13652,6 +13678,7 @@ pwr_exe:
3003 14.7105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13685,6 +13712,7 @@ pwr_exe:
3003 16.3105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -13718,6 +13746,7 @@ pwr_exe:
3003 12.3105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -15368,12 +15397,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 28.55
1009 27.9
1008 30.5
1009 29.85
1013 6.95
1014 6.35
1015 28.55
1016 27.9
1015 30.5
1016 29.85
1003
0
0
......@@ -15415,7 +15444,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 27.8
2805 29.75
2806 0
99
2716 0
......@@ -15433,7 +15462,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[20]##status
3100 $object.ProcStatus[40]##status
3101 38
99
99
......@@ -15497,12 +15526,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 28.55
1009 27.85
1008 30.5
1009 29.8
1013 21.3185
1014 7.15
1015 28.55
1016 27.85
1015 30.5
1016 29.8
1003
0
0
......@@ -15544,7 +15573,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 27.85
2805 29.8
2806 0
99
2716 0
......@@ -15562,7 +15591,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[20]##status
1200 $object.ProcStatus[40]##status
1201 %1m
1202 1
1203 1
......@@ -15629,12 +15658,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 28.55
1009 27.9
1008 30.5
1009 29.85
1013 22.65
1014 22.05
1015 28.55
1016 27.9
1015 30.5
1016 29.85
1003
0
0
......@@ -15676,7 +15705,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 27.8
2805 29.75
2806 0
99
2716 0
......@@ -15694,7 +15723,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[20]##status
3100 $object.ProcMsgSeverity[40]##status
3101 38
99
99
......@@ -15758,12 +15787,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 28.55
1009 27.85
1008 30.5
1009 29.8
1013 40.0598
1014 22.8
1015 28.55
1016 27.85
1015 30.5
1016 29.8
1003
0
0
......@@ -15805,7 +15834,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 27.85
2805 29.8
2806 0
99
2716 0
......@@ -15823,7 +15852,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[20]##string80
1200 $object.ProcMessage[40]##string80
1201 %s
1202 1
1203 1
......@@ -15890,12 +15919,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 29.35
1009 28.7
1008 31.3
1009 30.65
1013 6.95
1014 6.35
1015 29.35
1016 28.7
1015 31.3
1016 30.65
1003
0
0
......@@ -15937,7 +15966,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 28.6
2805 30.55
2806 0
99
2716 0
......@@ -15955,7 +15984,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[21]##status
3100 $object.ProcStatus[41]##status
3101 38
99
99
......@@ -16019,12 +16048,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 29.35
1009 28.65
1008 31.3
1009 30.6
1013 21.3185
1014 7.15
1015 29.35
1016 28.65
1015 31.3
1016 30.6
1003
0
0
......@@ -16066,7 +16095,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 28.65
2805 30.6
2806 0
99
2716 0
......@@ -16084,7 +16113,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[21]##status
1200 $object.ProcStatus[41]##status
1201 %1m
1202 1
1203 1
......@@ -16151,12 +16180,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 29.35
1009 28.7
1008 31.3
1009 30.65
1013 22.65
1014 22.05
1015 29.35
1016 28.7
1015 31.3
1016 30.65
1003
0
0
......@@ -16198,7 +16227,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 28.6
2805 30.55
2806 0
99
2716 0
......@@ -16216,7 +16245,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[21]##status
3100 $object.ProcMsgSeverity[41]##status
3101 38
99
99
......@@ -16280,12 +16309,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 29.35
1009 28.65
1008 31.3
1009 30.6
1013 40.0598
1014 22.8
1015 29.35
1016 28.65
1015 31.3
1016 30.6
1003
0
0
......@@ -16327,7 +16356,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 28.65
2805 30.6
2806 0
99
2716 0
......@@ -16345,7 +16374,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[21]##string80
1200 $object.ProcMessage[41]##string80
1201 %s
1202 1
1203 1
......@@ -16412,12 +16441,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 30.15
1009 29.5
1008 32.1
1009 31.45
1013 6.95
1014 6.35
1015 30.15
1016 29.5
1015 32.1
1016 31.45
1003
0
0
......@@ -16459,7 +16488,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 29.4
2805 31.35
2806 0
99
2716 0
......@@ -16477,7 +16506,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[22]##status
3100 $object.ProcStatus[42]##status
3101 38
99
99
......@@ -16541,12 +16570,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 30.15
1009 29.45
1008 32.1
1009 31.4
1013 21.3185
1014 7.15
1015 30.15
1016 29.45
1015 32.1
1016 31.4
1003
0
0
......@@ -16588,7 +16617,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 29.45
2805 31.4
2806 0
99
2716 0
......@@ -16606,7 +16635,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[22]##status
1200 $object.ProcStatus[42]##status
1201 %1m
1202 1
1203 1
......@@ -16673,12 +16702,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 30.15
1009 29.5
1008 32.1
1009 31.45
1013 22.65
1014 22.05
1015 30.15
1016 29.5
1015 32.1
1016 31.45
1003
0
0
......@@ -16720,7 +16749,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 29.4
2805 31.35
2806 0
99
2716 0
......@@ -16738,7 +16767,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[22]##status
3100 $object.ProcMsgSeverity[42]##status
3101 38
99
99
......@@ -16802,12 +16831,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 30.15
1009 29.45
1008 32.1
1009 31.4
1013 40.0598
1014 22.8
1015 30.15
1016 29.45
1015 32.1
1016 31.4
1003
0
0
......@@ -16849,7 +16878,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 29.45
2805 31.4
2806 0
99
2716 0
......@@ -16867,7 +16896,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[22]##string80
1200 $object.ProcMessage[42]##string80
1201 %s
1202 1
1203 1
......@@ -16934,12 +16963,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 30.95
1009 30.3
1008 32.9
1009 32.25
1013 6.95
1014 6.35
1015 30.95
1016 30.3
1015 32.9
1016 32.25
1003
0
0
......@@ -16981,7 +17010,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 30.2
2805 32.15
2806 0
99
2716 0
......@@ -16999,7 +17028,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[23]##status
3100 $object.ProcStatus[43]##status
3101 38
99
99
......@@ -17063,12 +17092,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 30.95
1009 30.25
1008 32.9
1009 32.2
1013 21.3185
1014 7.15
1015 30.95
1016 30.25
1015 32.9
1016 32.2
1003
0
0
......@@ -17110,7 +17139,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 30.25
2805 32.2
2806 0
99
2716 0
......@@ -17128,7 +17157,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[23]##status
1200 $object.ProcStatus[43]##status
1201 %1m
1202 1
1203 1
......@@ -17195,12 +17224,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 30.95
1009 30.3
1008 32.9
1009 32.25
1013 22.65
1014 22.05
1015 30.95
1016 30.3
1015 32.9
1016 32.25
1003
0
0
......@@ -17242,7 +17271,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 30.2
2805 32.15
2806 0
99
2716 0
......@@ -17260,7 +17289,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[23]##status
3100 $object.ProcMsgSeverity[43]##status
3101 38
99
99
......@@ -17324,12 +17353,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 30.95
1009 30.25
1008 32.9
1009 32.2
1013 40.0598
1014 22.8
1015 30.95
1016 30.25
1015 32.9
1016 32.2
1003
0
0
......@@ -17371,7 +17400,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 30.25
2805 32.2
2806 0
99
2716 0
......@@ -17389,7 +17418,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[23]##string80
1200 $object.ProcMessage[43]##string80
1201 %s
1202 1
1203 1
......@@ -17456,12 +17485,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 31.75
1009 31.1
1008 33.7
1009 33.05
1013 6.95
1014 6.35
1015 31.75
1016 31.1
1015 33.7
1016 33.05
1003
0
0
......@@ -17503,7 +17532,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 31
2805 32.95
2806 0
99
2716 0
......@@ -17521,7 +17550,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[24]##status
3100 $object.ProcStatus[44]##status
3101 38
99
99
......@@ -17585,12 +17614,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 31.75
1009 31.05
1008 33.7
1009 33
1013 21.3185
1014 7.15
1015 31.75
1016 31.05
1015 33.7
1016 33
1003
0
0
......@@ -17632,7 +17661,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 31.05
2805 33
2806 0
99
2716 0
......@@ -17650,7 +17679,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[24]##status
1200 $object.ProcStatus[44]##status
1201 %1m
1202 1
1203 1
......@@ -17717,12 +17746,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 31.75
1009 31.1
1008 33.7
1009 33.05
1013 22.65
1014 22.05
1015 31.75
1016 31.1
1015 33.7
1016 33.05
1003
0
0
......@@ -17764,7 +17793,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 31
2805 32.95
2806 0
99
2716 0
......@@ -17782,7 +17811,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[24]##status
3100 $object.ProcMsgSeverity[44]##status
3101 38
99
99
......@@ -17846,12 +17875,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 31.75
1009 31.05
1008 33.7
1009 33
1013 40.0598
1014 22.8
1015 31.75
1016 31.05
1015 33.7
1016 33
1003
0
0
......@@ -17893,7 +17922,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 31.05
2805 33
2806 0
99
2716 0
......@@ -17911,7 +17940,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[24]##string80
1200 $object.ProcMessage[44]##string80
1201 %s
1202 1
1203 1
......@@ -17978,12 +18007,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 32.55
1009 31.9
1008 34.5
1009 33.85
1013 6.95
1014 6.35
1015 32.55
1016 31.9
1015 34.5
1016 33.85
1003
0
0
......@@ -18025,7 +18054,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 31.8
2805 33.75
2806 0
99
2716 0
......@@ -18043,7 +18072,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[25]##status
3100 $object.ProcStatus[45]##status
3101 38
99
99
......@@ -18107,12 +18136,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 32.55
1009 31.85
1008 34.5
1009 33.8
1013 21.3185
1014 7.15
1015 32.55
1016 31.85
1015 34.5
1016 33.8
1003
0
0
......@@ -18154,7 +18183,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 31.85
2805 33.8
2806 0
99
2716 0
......@@ -18172,7 +18201,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[25]##status
1200 $object.ProcStatus[45]##status
1201 %1m
1202 1
1203 1
......@@ -18239,12 +18268,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 32.55
1009 31.9
1008 34.5
1009 33.85
1013 22.65
1014 22.05
1015 32.55
1016 31.9
1015 34.5
1016 33.85
1003
0
0
......@@ -18286,7 +18315,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 31.8
2805 33.75
2806 0
99
2716 0
......@@ -18304,7 +18333,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[25]##status
3100 $object.ProcMsgSeverity[45]##status
3101 38
99
99
......@@ -18368,12 +18397,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 32.55
1009 31.85
1008 34.5
1009 33.8
1013 40.0598
1014 22.8
1015 32.55
1016 31.85
1015 34.5
1016 33.8
1003
0
0
......@@ -18415,7 +18444,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 31.85
2805 33.8
2806 0
99
2716 0
......@@ -18433,7 +18462,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[25]##string80
1200 $object.ProcMessage[45]##string80
1201 %s
1202 1
1203 1
......@@ -18500,12 +18529,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 33.35
1009 32.7
1008 35.3
1009 34.65
1013 6.95
1014 6.35
1015 33.35
1016 32.7
1015 35.3
1016 34.65
1003
0
0
......@@ -18547,7 +18576,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 32.6
2805 34.55
2806 0
99
2716 0
......@@ -18565,7 +18594,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[26]##status
3100 $object.ProcStatus[46]##status
3101 38
99
99
......@@ -18629,12 +18658,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 33.35
1009 32.65
1008 35.3
1009 34.6
1013 21.3185
1014 7.15
1015 33.35
1016 32.65
1015 35.3
1016 34.6
1003
0
0
......@@ -18676,7 +18705,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 32.65
2805 34.6
2806 0
99
2716 0
......@@ -18694,7 +18723,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[26]##status
1200 $object.ProcStatus[46]##status
1201 %1m
1202 1
1203 1
......@@ -18761,12 +18790,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 33.35
1009 32.7
1008 35.3
1009 34.65
1013 22.65
1014 22.05
1015 33.35
1016 32.7
1015 35.3
1016 34.65
1003
0
0
......@@ -18808,7 +18837,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 32.6
2805 34.55
2806 0
99
2716 0
......@@ -18826,7 +18855,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[26]##status
3100 $object.ProcMsgSeverity[46]##status
3101 38
99
99
......@@ -18890,12 +18919,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 33.35
1009 32.65
1008 35.3
1009 34.6
1013 40.0598
1014 22.8
1015 33.35
1016 32.65
1015 35.3
1016 34.6
1003
0
0
......@@ -18937,7 +18966,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 32.65
2805 34.6
2806 0
99
2716 0
......@@ -18955,7 +18984,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[26]##string80
1200 $object.ProcMessage[46]##string80
1201 %s
1202 1
1203 1
......@@ -19022,12 +19051,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 34.15
1009 33.5
1008 36.1
1009 35.45
1013 6.95
1014 6.35
1015 34.15
1016 33.5
1015 36.1
1016 35.45
1003
0
0
......@@ -19069,7 +19098,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 33.4
2805 35.35
2806 0
99
2716 0
......@@ -19087,7 +19116,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[27]##status
3100 $object.ProcStatus[47]##status
3101 38
99
99
......@@ -19151,12 +19180,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 34.15
1009 33.45
1008 36.1
1009 35.4
1013 21.3185
1014 7.15
1015 34.15
1016 33.45
1015 36.1
1016 35.4
1003
0
0
......@@ -19198,7 +19227,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 33.45
2805 35.4
2806 0
99
2716 0
......@@ -19216,7 +19245,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[27]##status
1200 $object.ProcStatus[47]##status
1201 %1m
1202 1
1203 1
......@@ -19283,12 +19312,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 34.15
1009 33.5
1008 36.1
1009 35.45
1013 22.65
1014 22.05
1015 34.15
1016 33.5
1015 36.1
1016 35.45
1003
0
0
......@@ -19330,7 +19359,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 33.4
2805 35.35
2806 0
99
2716 0
......@@ -19348,7 +19377,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[27]##status
3100 $object.ProcMsgSeverity[47]##status
3101 38
99
99
......@@ -19412,12 +19441,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 34.15
1009 33.45
1008 36.1
1009 35.4
1013 40.0598
1014 22.8
1015 34.15
1016 33.45
1015 36.1
1016 35.4
1003
0
0
......@@ -19459,7 +19488,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 33.45
2805 35.4
2806 0
99
2716 0
......@@ -19477,7 +19506,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[27]##string80
1200 $object.ProcMessage[47]##string80
1201 %s
1202 1
1203 1
......@@ -19544,12 +19573,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 34.95
1009 34.3
1008 36.9
1009 36.25
1013 6.95
1014 6.35
1015 34.95
1016 34.3
1015 36.9
1016 36.25
1003
0
0
......@@ -19591,7 +19620,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 34.2
2805 36.15
2806 0
99
2716 0
......@@ -19609,7 +19638,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[28]##status
3100 $object.ProcStatus[48]##status
3101 38
99
99
......@@ -19673,12 +19702,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 34.95
1009 34.25
1008 36.9
1009 36.2
1013 21.3185
1014 7.15
1015 34.95
1016 34.25
1015 36.9
1016 36.2
1003
0
0
......@@ -19720,7 +19749,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 34.25
2805 36.2
2806 0
99
2716 0
......@@ -19738,7 +19767,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[28]##status
1200 $object.ProcStatus[48]##status
1201 %1m
1202 1
1203 1
......@@ -19805,12 +19834,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 34.95
1009 34.3
1008 36.9
1009 36.25
1013 22.65
1014 22.05
1015 34.95
1016 34.3
1015 36.9
1016 36.25
1003
0
0
......@@ -19852,7 +19881,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 34.2
2805 36.15
2806 0
99
2716 0
......@@ -19870,7 +19899,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[28]##status
3100 $object.ProcMsgSeverity[48]##status
3101 38
99
99
......@@ -19934,12 +19963,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 34.95
1009 34.25
1008 36.9
1009 36.2
1013 40.0598
1014 22.8
1015 34.95
1016 34.25
1015 36.9
1016 36.2
1003
0
0
......@@ -19981,7 +20010,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 34.25
2805 36.2
2806 0
99
2716 0
......@@ -19999,7 +20028,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[28]##string80
1200 $object.ProcMessage[48]##string80
1201 %s
1202 1
1203 1
......@@ -20066,12 +20095,12 @@ pwr_exe:
0
1006 6.95
1007 6.35
1008 35.75
1009 35.1
1008 37.7
1009 37.05
1013 6.95
1014 6.35
1015 35.75
1016 35.1
1015 37.7
1016 37.05
1003
0
0
......@@ -20113,7 +20142,7 @@ pwr_exe:
2802 6.2
2803 0
2804 1
2805 35
2805 36.95
2806 0
99
2716 0
......@@ -20131,7 +20160,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcStatus[29]##status
3100 $object.ProcStatus[49]##status
3101 38
99
99
......@@ -20195,12 +20224,12 @@ pwr_exe:
0
1006 21.3185
1007 7.15
1008 35.75
1009 35.05
1008 37.7
1009 37
1013 21.3185
1014 7.15
1015 35.75
1016 35.05
1015 37.7
1016 37
1003
0
0
......@@ -20242,7 +20271,7 @@ pwr_exe:
2802 7.15
2803 0
2804 1
2805 35.05
2805 37
2806 0
99
2716 0
......@@ -20260,7 +20289,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcStatus[29]##status
1200 $object.ProcStatus[49]##status
1201 %1m
1202 1
1203 1
......@@ -20327,12 +20356,12 @@ pwr_exe:
0
1006 22.65
1007 22.05
1008 35.75
1009 35.1
1008 37.7
1009 37.05
1013 22.65
1014 22.05
1015 35.75
1016 35.1
1015 37.7
1016 37.05
1003
0
0
......@@ -20374,7 +20403,7 @@ pwr_exe:
2802 21.9
2803 0
2804 1
2805 35
2805 36.95
2806 0
99
2716 0
......@@ -20392,7 +20421,7 @@ pwr_exe:
102 65532
103 0
31
3100 $object.ProcMsgSeverity[29]##status
3100 $object.ProcMsgSeverity[49]##status
3101 38
99
99
......@@ -20456,12 +20485,12 @@ pwr_exe:
0
1006 40.0598
1007 22.8
1008 35.75
1009 35.05
1008 37.7
1009 37
1013 40.0598
1014 22.8
1015 35.75
1016 35.05
1015 37.7
1016 37
1003
0
0
......@@ -20503,7 +20532,7 @@ pwr_exe:
2802 22.8
2803 0
2804 1
2805 35.05
2805 37
2806 0
99
2716 0
......@@ -20521,7 +20550,7 @@ pwr_exe:
102 65532
103 0
12
1200 $object.ProcMessage[29]##string80
1200 $object.ProcMessage[49]##string80
1201 %s
1202 1
1203 1
......@@ -20588,12 +20617,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 28.7124
1009 27.9066
1008 30.6624
1009 29.8566
1013 6.065
1014 0.95
1015 28.7124
1016 27.9066
1015 30.6624
1016 29.8566
1003
0
0
......@@ -20635,7 +20664,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 27.717
2805 29.667
2806 0
99
2716 0
......@@ -20653,7 +20682,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[20]##objid
1200 $object.ProcObject[40]##objid
1201 %o
1202 1
1203 1
......@@ -20723,12 +20752,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 29.501
1009 28.6952
1008 31.451
1009 30.6452
1013 6.065
1014 0.95
1015 29.501
1016 28.6952
1015 31.451
1016 30.6452
1003
0
0
......@@ -20770,7 +20799,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 28.5056
2805 30.4556
2806 0
99
2716 0
......@@ -20788,7 +20817,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[21]##objid
1200 $object.ProcObject[41]##objid
1201 %o
1202 1
1203 1
......@@ -20858,12 +20887,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 30.2895
1009 29.4837
1008 32.2395
1009 31.4337
1013 6.065
1014 0.95
1015 30.2895
1016 29.4837
1015 32.2395
1016 31.4337
1003
0
0
......@@ -20905,7 +20934,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 29.2941
2805 31.2441
2806 0
99
2716 0
......@@ -20923,7 +20952,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[22]##objid
1200 $object.ProcObject[42]##objid
1201 %o
1202 1
1203 1
......@@ -20993,12 +21022,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 31.0781
1009 30.2723
1008 33.0281
1009 32.2223
1013 6.065
1014 0.95
1015 31.0781
1016 30.2723
1015 33.0281
1016 32.2223
1003
0
0
......@@ -21040,7 +21069,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 30.0827
2805 32.0327
2806 0
99
2716 0
......@@ -21058,7 +21087,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[23]##objid
1200 $object.ProcObject[43]##objid
1201 %o
1202 1
1203 1
......@@ -21128,12 +21157,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 31.8666
1009 31.0608
1008 33.8166
1009 33.0108
1013 6.065
1014 0.95
1015 31.8666
1016 31.0608
1015 33.8166
1016 33.0108
1003
0
0
......@@ -21175,7 +21204,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 30.8712
2805 32.8212
2806 0
99
2716 0
......@@ -21193,7 +21222,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[24]##objid
1200 $object.ProcObject[44]##objid
1201 %o
1202 1
1203 1
......@@ -21263,12 +21292,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 32.6552
1009 31.8494
1008 34.6052
1009 33.7994
1013 6.065
1014 0.95
1015 32.6552
1016 31.8494
1015 34.6052
1016 33.7994
1003
0
0
......@@ -21310,7 +21339,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 31.6598
2805 33.6098
2806 0
99
2716 0
......@@ -21328,7 +21357,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[25]##objid
1200 $object.ProcObject[45]##objid
1201 %o
1202 1
1203 1
......@@ -21398,12 +21427,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 33.4438
1009 32.638
1008 35.3938
1009 34.588
1013 6.065
1014 0.95
1015 33.4438
1016 32.638
1015 35.3938
1016 34.588
1003
0
0
......@@ -21445,7 +21474,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 32.4484
2805 34.3984
2806 0
99
2716 0
......@@ -21463,7 +21492,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[26]##objid
1200 $object.ProcObject[46]##objid
1201 %o
1202 1
1203 1
......@@ -21533,12 +21562,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 34.2323
1009 33.4265
1008 36.1823
1009 35.3765
1013 6.065
1014 0.95
1015 34.2323
1016 33.4265
1015 36.1823
1016 35.3765
1003
0
0
......@@ -21580,7 +21609,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 33.2369
2805 35.1869
2806 0
99
2716 0
......@@ -21598,7 +21627,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[27]##objid
1200 $object.ProcObject[47]##objid
1201 %o
1202 1
1203 1
......@@ -21668,12 +21697,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 35.0209
1009 34.2151
1008 36.9709
1009 36.1651
1013 6.065
1014 0.95
1015 35.0209
1016 34.2151
1015 36.9709
1016 36.1651
1003
0
0
......@@ -21715,7 +21744,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 34.0255
2805 35.9755
2806 0
99
2716 0
......@@ -21733,7 +21762,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[28]##objid
1200 $object.ProcObject[48]##objid
1201 %o
1202 1
1203 1
......@@ -21803,12 +21832,12 @@ pwr_exe:
0
1006 6.065
1007 0.95
1008 35.8094
1009 35.0036
1008 37.7594
1009 36.9536
1013 6.065
1014 0.95
1015 35.8094
1016 35.0036
1015 37.7594
1016 36.9536
1003
0
0
......@@ -21850,7 +21879,7 @@ pwr_exe:
2802 0.485
2803 0
2804 0.948008
2805 34.814
2805 36.764
2806 0
99
2716 0
......@@ -21868,7 +21897,7 @@ pwr_exe:
102 65535
103 0
12
1200 $object.ProcObject[29]##objid
1200 $object.ProcObject[49]##objid
1201 %o
1202 1
1203 1
......@@ -22078,6 +22107,7 @@ pwr_exe:
3003 23.4605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -22138,10 +22168,11 @@ pwr_exe:
3004 O375
3000 5
3001 1.1
3002 27.6605
3003 27.0605
3002 29.6105
3003 29.0105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -22163,7 +22194,7 @@ pwr_exe:
2802 -1.249e-16
2803 0
2804 1
2805 25.0605
2805 27.0105
2806 0
99
99
......@@ -22171,8 +22202,8 @@ pwr_exe:
2004 O376
2000 40.45
2001 0.7
2002 27.7
2003 27.7
2002 29.65
2003 29.65
2009 33
2010 0
2005
......@@ -22197,7 +22228,7 @@ pwr_exe:
2802 0
2803 0
2804 1
2805 17.35
2805 19.3
2806 0
99
99
......@@ -22205,8 +22236,8 @@ pwr_exe:
2004 O377
2000 40.45
2001 0.7
2002 26.85
2003 26.85
2002 28.8
2003 28.8
2009 30
2010 0
2005
......@@ -22231,7 +22262,7 @@ pwr_exe:
2802 0
2803 0
2804 1
2805 16.5
2805 18.45
2806 0
99
99
......@@ -22273,10 +22304,11 @@ pwr_exe:
3004 O379
3000 8.65
3001 6.35
3002 27.6605
3003 27.0605
3002 29.6105
3003 29.0105
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -22298,7 +22330,7 @@ pwr_exe:
2802 5.25
2803 0
2804 1
2805 25.0605
2805 27.0105
2806 0
99
99
......@@ -22306,10 +22338,11 @@ pwr_exe:
3004 O380
3000 26.5
3001 22.05
3002 27.6105
3003 27.0105
3002 29.5605
3003 28.9605
3008 103
3010 4
3011 2
3007 0
3006
3005
......@@ -22331,7 +22364,7 @@ pwr_exe:
2802 20.95
2803 0
2804 1
2805 25.0105
2805 26.9605
2806 0
99
99
......@@ -22534,6 +22567,7 @@ pwr_exe:
3003 21.8605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -23311,6 +23345,7 @@ pwr_exe:
3003 24.2605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -23566,6 +23601,7 @@ pwr_exe:
3003 25.0605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -23821,6 +23857,7 @@ pwr_exe:
3003 25.8605
3008 103
3010 0
3011 2
3007 0
3006
3005
......@@ -23877,5 +23914,1561 @@ pwr_exe:
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O393
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.95
1007 6.35
1008 27.3
1009 26.65
1013 6.95
1014 6.35
1015 27.3
1016 26.65
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.2
2803 0
2804 1
2805 26.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $object.ProcStatus[20]##status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O394
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 21.3185
1007 7.15
1008 27.3
1009 26.6
1013 21.3185
1014 7.15
1015 27.3
1016 26.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.532649
2801 0
2802 7.15
2803 0
2804 1
2805 26.6
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.ProcStatus[20]##status
1201 %1m
1202 1
1203 1
1204 0
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O395
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 22.65
1007 22.05
1008 27.3
1009 26.65
1013 22.65
1014 22.05
1015 27.3
1016 26.65
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 21.9
2803 0
2804 1
2805 26.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $object.ProcMsgSeverity[20]##status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O396
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 40.0598
1007 22.8
1008 27.3
1009 26.6
1013 40.0598
1014 22.8
1015 27.3
1016 26.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.648863
2801 0
2802 22.8
2803 0
2804 1
2805 26.6
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.ProcMessage[20]##string80
1201 %s
1202 1
1203 1
1204 0
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O400
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.95
1007 6.35
1008 28.1
1009 27.45
1013 6.95
1014 6.35
1015 28.1
1016 27.45
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.2
2803 0
2804 1
2805 27.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $object.ProcStatus[21]##status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O401
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 21.3185
1007 7.15
1008 28.1
1009 27.4
1013 21.3185
1014 7.15
1015 28.1
1016 27.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.532649
2801 0
2802 7.15
2803 0
2804 1
2805 27.4
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.ProcStatus[21]##status
1201 %1m
1202 1
1203 1
1204 0
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O402
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 22.65
1007 22.05
1008 28.1
1009 27.45
1013 22.65
1014 22.05
1015 28.1
1016 27.45
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 21.9
2803 0
2804 1
2805 27.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $object.ProcMsgSeverity[21]##status
3101 38
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O403
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 40.0598
1007 22.8
1008 28.1
1009 27.4
1013 40.0598
1014 22.8
1015 28.1
1016 27.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.648863
2801 0
2802 22.8
2803 0
2804 1
2805 27.4
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.ProcMessage[21]##string80
1201 %s
1202 1
1203 1
1204 0
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp409_
1002 Grp409_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.07329
1007 0.949998
1008 27.35
1009 26.6
1013 6.07329
1014 0.949998
1015 27.35
1016 26.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 33619964
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.ProcObject[20]
99
55
5500 open graph/classgraph/instance=&$object.ProcObject[20]
99
99
99
3501
36
3600
3
300 Grp409_
301
2
19
1904 O387
1900 6.07329
1901 0.949998
1902 27.35
1903 26.6
1908 0
1909 32
1910 32
1911 1
1915 1
1913 16
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 1.44318
2801 0
2802 -0.421023
2803 0
2804 1
2805 16
2806 0
99
99
30
3004 O388
3000 3.55511
3001 1.45511
3002 27.3105
3003 26.7105
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 rt_post
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1.44318
2801 0
2802 -0.132387
2803 0
2804 1
2805 24.7105
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
99
99
35
3500
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp410_
1002 Grp410_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.07329
1007 0.949998
1008 28.15
1009 27.4
1013 6.07329
1014 0.949998
1015 28.15
1016 27.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 33619964
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2721
1
100 0
101 66
102 65535
103 0
50
5000 &$object.ProcObject[21]
99
55
5500 open graph/classgraph/instance=&$object.ProcObject[21]
99
99
99
3501
36
3600
3
300 Grp410_
301
2
19
1904 O387
1900 6.07329
1901 0.949998
1902 28.15
1903 27.4
1908 0
1909 32
1910 32
1911 1
1915 1
1913 16
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 1.44318
2801 0
2802 -0.421023
2803 0
2804 1
2805 16.8
2806 0
99
99
30
3004 O388
3000 5.65511
3001 1.45511
3002 28.1105
3003 27.5105
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 rt_sevhistmon
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1.44318
2801 0
2802 -0.132387
2803 0
2804 1
2805 25.5105
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
99
99
99
99
0! DefaultWidth 613
0! DefaultHeight 167
1
100 20
135 20
101 20
102 -34
103 -82
104 3.89525
136 3.89525
105 100
106 -6
107 -15
108 30.2132
109 0.7
110 7.86052
111 0.35
116 0
117 0
118 131
119 118
120 1
121 Claes context
122 0
126 1
127 1
128 0
129 0.3
130 1.5
131 0.8
132 3
133 2
137 4510
138 3
139 2
134
22
2200 0
2201 94
2202 pwr_c_postconfig
2203 51
2205 0
2204
2206 0
2207
2208
2209 0
2210 0
2211 30.7
2212 8.4
2213 4
2214
pwrp_pop:
pwrp_exe:
ssab_exe:
pwr_exe:
2215 0
2236 0
2216 0
2221 0
2237 0
2238 0
2239 0
2240 0
2241 0
2242 0
2217 0
2218 0
2219 0
2220
2230 0
2231 1
2222
2223 1
2224 0.5
2232 0.5
2225 0.5
2226 700
2227
2228 0
2229 0
2233 1
2234 3
2235 1
2243 0
2245 0
2244
99
123
2
3
300 pwr_valuelong
301
2
19
1904
1900 26.6
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 26.6
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
1307 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
2901 2
99
99
302 0
304 0
303
305 0
306
307
308 1024
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
3
300 pwr_indsquare
301
2
19
1904
1900 0.75
1901 0.15
1902 0.75
1903 0.1
1908 0
1909 293
1910 293
1911 1
1915 0
1913 15
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0.15
701 0.1
99
503
7
700 0.75
701 0.75
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 4
321 0
309 29
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
3
300 pwr_valuesmall
301
2
19
1904
1900 2.3
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 2.3
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
1307 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
2901 2
99
99
302 0
304 0
303
305 0
306
307
308 1024
321 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
99
99
124
2
99
125
2
30
3004 O70
3000 2.55
3001 0.7
3002 6.86052
3003 6.26052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 Status
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 4.26052
2806 0
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O50
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.6
1007 6
1008 6.9
1009 6.25
1013 6.6
1014 6
1015 6.9
1016 6.25
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.85
2803 0
2804 1
2805 6.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $node.ProcStatus[20]##status
3101 38
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O51
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.6
1007 6
1008 7.8
1009 7.15
1013 6.6
1014 6
1015 7.8
1016 7.15
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.85
2803 0
2804 1
2805 7.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 33554432
101 0
102 65532
103 0
31
3100 $node.ProcMsgSeverity[20]##status
3101 38
99
99
99
30
3004 O71
3000 4.55
3001 0.7
3002 7.86052
3003 7.26052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 LogMessage
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 5.26052
2806 0
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O53
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.206
1007 6.8
1008 6.9
1009 6.2
1013 30.206
1014 6.8
1015 6.9
1016 6.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.879925
2801 0
2802 6.8
2803 0
2804 1
2805 6.2
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $node.ProcStatus[20]##Status
1201 %1m
1202 1
1203 1
1204 0
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O54
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.2132
1007 6.8
1008 7.85
1009 7.15
1013 30.2132
1014 6.8
1015 7.85
1016 7.15
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.880194
2801 0
2802 6.8
2803 0
2804 1
2805 7.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $node.ProcMessage[20]##String80
1201 %s
1202 1
1203 1
1204 0
99
99
99
30
3004 O73
3000 1.8
3001 0.7
3002 5.81052
3003 5.21052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 Log
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 3.21052
2806 0
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O55
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.6
1007 6
1008 5.85
1009 5.2
1013 6.6
1014 6
1015 5.85
1016 5.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.85
2803 0
2804 1
2805 5.1
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 4
101 0
102 65532
103 0
2
200 $object.Log##Boolean
201 9999
99
99
99
30
3004 O77
3000 3.55
3001 0.7
3002 1.06052
3003 0.46052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 Sent SMS
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 -1.53948
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O57
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8.25
1007 5.95
1008 1.05
1009 0.35
1013 8.25
1014 5.95
1015 1.05
1016 0.35
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.95
2803 0
2804 1
2805 0.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.SentSMS##UInt32
1201 %d
1202 1
1203 1
1204 0
99
99
99
30
3004 O78
3000 4
3001 0.7
3002 1.96052
3003 1.36052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 Send Email
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 -0.63948
2806 0
99
99
27
2703 33
2704 31
2722 10000
2705 31
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuesmall
1002 O58
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8.25
1007 5.95
1008 1.95
1009 1.25
1013 8.25
1014 5.95
1015 1.95
1016 1.25
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.25
701 2.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.95
2803 0
2804 1
2805 1.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.SentEmail##UInt32
1201 %d
1202 1
1203 1
1204 0
99
99
99
30
3004 O87
3000 5.25
3001 0.7
3002 2.86052
3003 2.26052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 SMS Command
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 0.26052
2806 0
99
99
30
3004 O88
3000 5.5
3001 0.7
3002 3.81052
3003 3.21052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 Email Command
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 1.21052
2806 0
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O90
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.2058
1007 5.95
1008 2.95
1009 2.25
1013 30.2058
1014 5.95
1015 2.95
1016 2.25
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.911873
2801 0
2802 5.95
2803 0
2804 1
2805 2.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.SMS_Cmd##String256
1201 %s
1202 1
1203 1
1204 0
99
99
99
27
2703 33
2704 10000
2722 10000
2705 10000
2723 10000
2706 33
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O91
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 30.2058
1007 5.95
1008 3.9
1009 3.2
1013 30.2058
1014 5.95
1015 3.9
1016 3.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.75
701 5.6
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 0.911873
2801 0
2802 5.95
2803 0
2804 1
2805 3.2
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 1
101 1
102 65532
103 0
12
1200 $object.EmailCmd##String256
1201 %s
1202 1
1203 1
1204 0
99
99
99
30
3004 O92
3000 3.35
3001 0.7
3002 4.86052
3003 4.26052
3008 103
3010 4
3011 2
3007 0
3006
3005
9
900 2
901 303
904 0
902 Disabled
903
7
700 1.1
701 2.5
99
99
3009
28
2800 1
2801 0
2802 -0.4
2803 0
2804 1
2805 2.26052
2806 0
99
99
27
2703 10000
2704 175
2722 10000
2705 175
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_indsquare
1002 O93
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.6
1007 6
1008 4.9
1009 4.25
1013 6.6
1014 6
1015 4.9
1016 4.25
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.95
701 8.95
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.85
2803 0
2804 1
2805 4.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 4
101 0
102 65532
103 0
2
200 $object.Disable##Boolean
201 9999
99
99
99
99
99
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment