#include <stdlib.h>
#include <string.h>
#include <stdint.h>
+#include <unistd.h>
#include <dbDefs.h>
#include <registryFunction.h>
long evtbuild_proc( struct genSubRecord *pgsub )
{
- uint32_t *out[13];
+ uint32_t *out[14];
unsigned long tmp;
static unsigned long temp[10] = {0};
int i;
out[10] = (uint32_t *)pgsub->valk; /* evtDRate = events discarded rate */
out[11] = (uint32_t *)pgsub->vall; /* dataMover = number of selected Data Mover */
out[12] = (uint32_t *)pgsub->valm; /* diskNr = disk number where data is being written */
+ out[13] = (uint32_t *)pgsub->valn; /* number of EB machine (1 = lxhadeb01) */
/* pgsub->vall : bytesWrittenRate in stringin record (array of char's) */
for( i=0; i<12; i++ )
printf("<E> evtbuild.c: Worker_getStatistic failed for nrOfMsgs!\n");
}
else {
- *out[7] = 1; /* status: Event Builder is on */
+ *out[0] = (uint32_t)tmp; /* nrOfMsgs */
+ *out[7] = 1; /* status: Event Builder is on */
if(evtbuildDebug) {
printf("<E> evtbuild.c: Worker_getStatistic::nrOfMsgs = %lu\n", tmp);
printf("<E> evtbuild.c: status = %lu\n", (unsigned long)1);
*out[12] = (uint32_t)tmp;
}
-
char ebbuf[100];
for( i=0; i<(*out[0]); i++ ) {
}
}
+ /* Get host name and extract the number from its name */
+ char hostname[30];
+ char *c_ptr;
+ char host_nr[2];
+
+ gethostname(hostname, 30);
+ c_ptr = strchr(hostname, '0');
+
+ if( c_ptr == (char*) NULL ){
+ if(evtbuildDebug)
+ printf("<E> evtbuild.c: failed to extract a number from the hostname: %s!\n", hostname);
+ }
+ else{
+ strcpy(host_nr,c_ptr);
+ printf("EB name number: %s\n", c_ptr);
+ *out[13] = (uint32_t) strtoul(c_ptr, NULL, 0);
+ }
+
/*
* int bytedCoverted;
* sprintf( buf, "%s", unit(*out[9]));