1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2003 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <dlfcn.h>
#if HAVE_JEMALLOC
# include <jemalloc/jemalloc.h>
#else
# if defined(LINUX) || defined(AIX43) || defined(AIX51) || defined(IRIX) || defined(SOLARIS) || defined(HP11)
# include <malloc.h> /* mallinfo */
# endif
#endif /* HAVE_JEMALLOC */
#include "uti/sge_mtutil.h"
#include "uti/sge_rmon.h"
#include "uti/sge_monitor.h"
#include "uti/sge_dstring.h"
#include "uti/sge_time.h"
#include "uti/sge_log.h"
#include "uti/msg_utilib.h"
#include "sgeobj/sge_conf.h"
/*************************************************
*
* structure definition to hand the threading
* information over to the comlib
*
**************************************************/
typedef struct {
const char *name; /* thread name */
struct timeval last_wait_time; /* last wait time, last time when one thread loop finished */
thread_warning_t warning_timeout; /* how long can the thread be blocked before a warning is shown */
thread_error_t error_timeout; /* how long can the thread be blocked before an error is shown */
time_t update_time; /* last update time */
dstring* output; /* thread specific info line */
pthread_mutex_t Output_Mutex; /* guards one line */
}Output_t;
#define MAX_OUTPUT_LINES 10 /* number of threads to monitor, currently 10 threads at max
at the same time*/
static Output_t Output[MAX_OUTPUT_LINES] = {
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
{NULL, {0,0}, NO_WARNING, NO_ERROR, 0, NULL, PTHREAD_MUTEX_INITIALIZER},
};
/* global mutex used for mallinfo initialization and also used to access the Info_Line string */
static pthread_mutex_t global_mutex = PTHREAD_MUTEX_INITIALIZER;
/* a static dstring used as a temporary buffer to build the commlib info string */
static dstring Info_Line= DSTRING_INIT;
#if !HAVE_JEMALLOC
/* mallinfo related data */
#if defined(LINUX) || defined(AIX43) || defined(AIX51) || defined(IRIX) || defined(SOLARIS) || defined(HP11)
static bool mallinfo_initialized = false;
static void *mallinfo_shlib_handle = NULL;
static struct mallinfo (*mallinfo_func_pointer)(void) = NULL;
#endif
#endif /* HAVE_JEMALLOC */
/***********************************************
* static function def. for special extensions
***********************************************/
static void ext_gdi_output(dstring *message, void *monitoring_extension, double time);
static void ext_lis_output(dstring *message, void *monitoring_extension, double time);
static void ext_edt_output(dstring *message, void *monitoring_extension, double time);
static void ext_tet_output(dstring *message, void *monitoring_extension, double time);
static void ext_sch_output(dstring *message, void *monitoring_extension, double time);
/************************************************
* implementation
************************************************/
/****** uti/monitor/sge_monitor_free() *****************************************
* NAME
* sge_monitor_free() -- frees the monitoring data structure
*
* SYNOPSIS
* void sge_monitor_free(monitoring_t *monitor)
*
* FUNCTION
* removes the line for the commlib output, and frees memory in the
* monitoring structure
*
* INPUTS
* monitoring_t *monitor - monitoring structure
*
* NOTES
* MT-NOTE: sge_monitor_free() is MT safe
*
*******************************************************************************/
void sge_monitor_free(monitoring_t *monitor)
{
DENTER(GDI_LAYER, "sge_monitor_free");
sge_dstring_free(monitor->output_line1);
sge_dstring_free(monitor->output_line2);
sge_free(&(monitor->output_line1));
sge_free(&(monitor->output_line2));
sge_free(&(monitor->ext_data));
if(monitor->pos != -1) {
sge_mutex_lock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[monitor->pos].Output_Mutex));
Output[monitor->pos].output = NULL;
Output[monitor->pos].name = NULL;
Output[monitor->pos].warning_timeout = NO_WARNING;
Output[monitor->pos].error_timeout = NO_ERROR;
sge_mutex_unlock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[monitor->pos].Output_Mutex));
}
monitor->ext_data_size = 0;
monitor->ext_output = NULL;
monitor->ext_type = NONE_EXT;
monitor->monitor_time = 0;
monitor->pos = -1;
monitor->output = false;
monitor->work_line = NULL;
monitor->thread_name = NULL;
#if HAVE_JEMALLOC
/* fixme: anything to do? */
#else
/* fixme: replace by configured value */
#if defined(LINUX) || defined(AIX43) || defined(AIX51) || defined(IRIX) || defined(SOLARIS) || defined(HP11)
sge_mutex_lock("sge_monitor_status", SGE_FUNC, __LINE__, &global_mutex);
if (mallinfo_shlib_handle != NULL) {
dlclose(mallinfo_shlib_handle);
mallinfo_shlib_handle = NULL;
}
sge_mutex_unlock("sge_monitor_status", SGE_FUNC, __LINE__, &global_mutex);
#endif
#endif /* HAVE_JEMALLOC */
DEXIT;
}
/****** uti/monitor/sge_monitor_init() *****************************************
* NAME
* sge_monitor_init() -- init the monitoring structure
*
* SYNOPSIS
* void sge_monitor_init(monitoring_t *monitor, const char *thread_name,
* extension_t ext, thread_warning_t warning_timeout, thread_error_t
* error_timeout)
*
* FUNCTION
* Sets the default values and inits the structure, finds the line pos
* for the comlib output
*
* INPUTS
* monitoring_t *monitor - monitoring structure
* const char *thread_name - the thread name
* extension_t ext - the extension time (-> enum)
* thread_warning_t warning_timeout - the warning timeout (-> enum)
* thread_error_t error_timeout - the error timeout (-> enum)
*
* NOTES
* MT-NOTE: sge_monitor_init() is MT safe
*
*******************************************************************************/
void
sge_monitor_init(monitoring_t *monitor, const char *thread_name, extension_t ext,
thread_warning_t warning_timeout, thread_error_t error_timeout)
{
DENTER(GDI_LAYER, "sge_monitor_init");
#if HAVE_JEMALLOC
#else
/*
* initialize the mallinfo function pointer if it is available
*/
#if defined(LINUX) || defined(AIX43) || defined(AIX51) || defined(IRIX) || defined(SOLARIS) || defined(HP11)
sge_mutex_lock("sge_monitor_status", SGE_FUNC, __LINE__, &global_mutex);
if (mallinfo_initialized == false) {
const char *function_name = "mallinfo";
mallinfo_initialized = true;
# ifdef RTLD_NODELETE
mallinfo_shlib_handle = dlopen(NULL, RTLD_LAZY | RTLD_NODELETE);
# else
mallinfo_shlib_handle = dlopen(NULL, RTLD_LAZY );
# endif /* RTLD_NODELETE */
if (mallinfo_shlib_handle != NULL) {
mallinfo_func_pointer = (struct mallinfo (*)(void)) dlsym(mallinfo_shlib_handle, function_name);
}
}
sge_mutex_unlock("sge_monitor_status", SGE_FUNC, __LINE__, &global_mutex);
#endif
#endif /* HAVE_JEMALLOC */
monitor->thread_name = thread_name;
monitor->output_line1 = (dstring*) malloc(sizeof(dstring));
monitor->output_line2 = (dstring*) malloc(sizeof(dstring));
if (monitor->output_line1 == NULL || monitor->output_line2 == NULL) {
CRITICAL((SGE_EVENT, SFNMAX, MSG_UTI_MONITOR_MEMERROR));
exit(1);
}
memset(monitor->output_line1, 0, sizeof(dstring));
memset(monitor->output_line2, 0, sizeof(dstring));
sge_dstring_append(monitor->output_line1, thread_name);
sge_dstring_append(monitor->output_line1, MSG_UTI_MONITOR_NODATA);
sge_dstring_clear(monitor->output_line2);
monitor->work_line = monitor->output_line2;
switch(ext) {
case SCH_EXT :
monitor->ext_data = malloc(sizeof(m_sch_t));
if (monitor->ext_data != NULL) {
monitor->ext_type = SCH_EXT;
monitor->ext_data_size = sizeof(m_sch_t);
monitor->ext_output = &ext_sch_output;
} else {
monitor->ext_type = NONE_EXT;
ERROR((SGE_EVENT, SFNMAX, MSG_UTI_MONITOR_MEMERROREXT));
}
break;
case GDI_EXT :
monitor->ext_data = malloc(sizeof(m_gdi_t));
if (monitor->ext_data != NULL) {
monitor->ext_type = GDI_EXT;
monitor->ext_data_size = sizeof(m_gdi_t);
monitor->ext_output = &ext_gdi_output;
} else {
monitor->ext_type = NONE_EXT;
ERROR((SGE_EVENT, SFNMAX, MSG_UTI_MONITOR_MEMERROREXT));
}
break;
case LIS_EXT :
monitor->ext_data = malloc(sizeof(m_lis_t));
if (monitor->ext_data != NULL) {
monitor->ext_type = LIS_EXT;
monitor->ext_data_size = sizeof(m_lis_t);
monitor->ext_output = &ext_lis_output;
} else {
monitor->ext_type = NONE_EXT;
ERROR((SGE_EVENT, SFNMAX, MSG_UTI_MONITOR_MEMERROREXT));
}
break;
case EDT_EXT :
monitor->ext_data = malloc(sizeof(m_edt_t));
if (monitor->ext_data != NULL) {
monitor->ext_type = EDT_EXT;
monitor->ext_data_size = sizeof(m_edt_t);
monitor->ext_output = &ext_edt_output;
} else {
monitor->ext_type = NONE_EXT;
ERROR((SGE_EVENT, SFNMAX, MSG_UTI_MONITOR_MEMERROREXT));
}
break;
case TET_EXT :
monitor->ext_data = malloc(sizeof(m_tet_t));
if (monitor->ext_data != NULL) {
monitor->ext_type = TET_EXT;
monitor->ext_data_size = sizeof(m_tet_t);
monitor->ext_output = &ext_tet_output;
} else {
monitor->ext_type = NONE_EXT;
ERROR((SGE_EVENT, SFNMAX, MSG_UTI_MONITOR_MEMERROREXT));
}
break;
case NONE_EXT :
monitor->ext_type = NONE_EXT;
break;
default :
monitor->ext_type = NONE_EXT;
ERROR((SGE_EVENT, MSG_UTI_MONITOR_UNSUPPORTEDEXT_D, ext));
};
if (monitor->ext_type == NONE_EXT) {
monitor->ext_data_size = 0;
monitor->ext_data = NULL;
monitor->ext_output = NULL;
}
sge_monitor_reset(monitor);
{
int i;
struct timeval time;
monitor->pos = -1;
gettimeofday(&time, NULL);
for (i = 0; i < MAX_OUTPUT_LINES; i++) {
sge_mutex_lock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
if (Output[i].name == NULL) {
monitor->pos = i;
Output[i].output = monitor->output_line1;
Output[i].name = thread_name;
Output[i].warning_timeout = warning_timeout;
Output[i].error_timeout = error_timeout;
Output[i].update_time = time.tv_sec;
sge_mutex_unlock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
break;
}
sge_mutex_unlock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
}
sge_set_last_wait_time(monitor, time);
}
if (monitor->pos == -1) {
ERROR((SGE_EVENT, MSG_UTI_MONITOR_NOLINES_S, monitor->thread_name));
}
DEXIT;
}
#if HAVE_JEMALLOC
static void write_cb(void *dstr, const char *string)
{
sge_dstring_append(dstr, string);
}
#endif
/****** uti/monitor/sge_monitor_status() ***************************************
* NAME
* sge_monitor_status() -- generates the status for qping / commlib
*
* SYNOPSIS
* u_long32 sge_monitor_status(char **info_message, u_long32 monitor_time)
*
* FUNCTION
* This method creates the health monitoring output and returns the monitoring
* info to the commlib.
*
* INPUTS
* char **info_message - info_message pointer, has to point to a NULL string
* u_long32 monitor_time - the configured monitoring interval
*
* RESULT
* u_long32 - 0 : everything is okay
* 1 : warning
* 2 : error
* 3 : init problems
*
* NOTES
* MT-NOTE: sge_monitor_status() is MT safe
*
*******************************************************************************/
u_long32 sge_monitor_status(char **info_message, u_long32 monitor_time)
{
u_long32 ret = 0;
DENTER(GDI_LAYER, "sge_monitor_status");
if (info_message == NULL) {
DEXIT;
return 3;
}
sge_mutex_lock("sge_monitor_status", SGE_FUNC, __LINE__, &global_mutex);
sge_dstring_clear(&Info_Line);
{/* this is the qping info section, it checks if each thread is still alive */
int i;
int error_count = 0;
struct timeval now;
double time;
gettimeofday(&now,NULL);
for (i = 0; i < MAX_OUTPUT_LINES; i++) {
char state = 'R';
sge_mutex_lock("sge_monitor_status", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
if (Output[i].name != NULL) {
time = now.tv_usec - Output[i].last_wait_time.tv_usec;
time = now.tv_sec - Output[i].last_wait_time.tv_sec + (time /1000000);
if (Output[i].warning_timeout != NO_WARNING) {
if (Output[i].warning_timeout < time) {
if (Output[i].error_timeout < time) {
state = 'E';
}
else {
state = 'W';
}
error_count++;
}
}
sge_dstring_sprintf_append(&Info_Line, MSG_UTI_MONITOR_INFO_SCF, Output[i].name, state, time);
}
sge_mutex_unlock("sge_monitor_status", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
}
if (error_count == 0) {
sge_dstring_append(&Info_Line, MSG_UTI_MONITOR_OK);
}
else if (error_count == 1) {
ret = 1;
sge_dstring_append(&Info_Line, MSG_UTI_MONITOR_WARNING);
}
else {
ret = 2;
sge_dstring_append(&Info_Line, MSG_UTI_MONITOR_ERROR);
}
sge_dstring_append(&Info_Line, "\n");
}
#if HAVE_JEMALLOC
if (mconf_get_print_malloc_info())
malloc_stats_print(&write_cb, &Info_Line, "ga");
#else
#if defined(LINUX) || defined(AIX43) || defined(AIX51) || defined(IRIX) || defined(SOLARIS) || defined(HP11)
if (mallinfo_func_pointer != NULL) {
struct mallinfo mallinfo_data = mallinfo_func_pointer();
sge_dstring_sprintf_append(&Info_Line, MSG_UTI_MONITOR_SCHEXT_UUUUUUUUUU,
mallinfo_data.arena,
mallinfo_data.ordblks,
mallinfo_data.smblks,
mallinfo_data.hblks,
mallinfo_data.hblkhd,
mallinfo_data.usmblks,
mallinfo_data.fsmblks,
mallinfo_data.uordblks,
mallinfo_data.fordblks,
mallinfo_data.keepcost);
sge_dstring_append(&Info_Line, "\n");
}
#endif
#endif /* HAVE_JEMALLOC */
if (monitor_time != 0) { /* generates the output monitoring output data */
int i;
sge_dstring_append(&Info_Line, MSG_UTI_MONITOR_COLON);
sge_dstring_append(&Info_Line, "\n");
for (i = 0; i < MAX_OUTPUT_LINES; i++) {
sge_mutex_lock("sge_monitor_status", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
if (Output[i].name != NULL) {
append_time(Output[i].update_time, &Info_Line, false);
sge_dstring_append(&Info_Line, " | ");
sge_dstring_append_dstring(&Info_Line, Output[i].output);
sge_dstring_append(&Info_Line,"\n");
}
sge_mutex_unlock("sge_monitor_status", SGE_FUNC, __LINE__, &(Output[i].Output_Mutex));
}
}
else {
sge_dstring_append(&Info_Line, MSG_UTI_MONITOR_DISABLED);
sge_dstring_append(&Info_Line, "\n");
}
*info_message = strdup(sge_dstring_get_string(&Info_Line));
sge_mutex_unlock("sge_monitor_status", SGE_FUNC, __LINE__, &global_mutex);
DEXIT;
return ret;
}
/****** uti/monitor/sge_set_last_wait_time() ***********************************
* NAME
* sge_set_last_wait_time() -- updates the last wait time (health monitoring)
*
* SYNOPSIS
* void sge_set_last_wait_time(monitoring_t *monitor, struct timeval after)
*
* FUNCTION
* Updates the last wait time, which is used for the health monitoring to
* determine if a thread has a problem or not.
*
* INPUTS
* monitoring_t *monitor - monitoring structure
* struct timeval wait_time - current time
*
* NOTES
* MT-NOTE: sge_set_last_wait_time() is MT safe
*
*******************************************************************************/
void sge_set_last_wait_time(monitoring_t *monitor, struct timeval wait_time)
{
DENTER(GDI_LAYER, "sge_set_last_wait_time");
if (monitor->pos != -1) {
sge_mutex_lock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[monitor->pos].Output_Mutex));
Output[monitor->pos].last_wait_time = wait_time;
sge_mutex_unlock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[monitor->pos].Output_Mutex));
}
DEXIT;
}
/****** uti/monitor/sge_monitor_output() ***************************************
* NAME
* sge_monitor_output() -- outputs the result into the message file
*
* SYNOPSIS
* void sge_monitor_output(monitoring_t *monitor)
*
* FUNCTION
* This function computes the output line from the gathered statistics.
* The output is only generated, when the output flag in the
* monitoring structure is set.
*
* The monitoring line is printed to the message file in the profiling
* class and it made available for the qping -f output. For the qping
* output, it stores the generation time, though that qping can
* show, when the message was generated.
*
* If an extension is set, it calls the appropriate output function for
* it.
*
* INPUTS
* monitoring_t *monitor - the monitoring info
*
* NOTES
* MT-NOTE: sge_monitor_output() is MT safe
*
*******************************************************************************/
void sge_monitor_output(monitoring_t *monitor)
{
DENTER(GDI_LAYER, "sge_monitor_output");
if ((monitor != NULL) && (monitor->output == true)) {
struct timeval after;
double time;
gettimeofday(&after, NULL);
time = after.tv_usec - monitor->now.tv_usec;
time = after.tv_sec - monitor->now.tv_sec + (time/1000000);
sge_dstring_clear(monitor->work_line);
sge_dstring_sprintf_append(monitor->work_line, MSG_UTI_MONITOR_DEFLINE_SF,
monitor->thread_name, monitor->message_in_count/time);
if (monitor->ext_type != NONE_EXT) {
sge_dstring_append(monitor->work_line, " (");
monitor->ext_output(monitor->work_line, monitor->ext_data, time);
sge_dstring_append(monitor->work_line, ")");
};
sge_dstring_sprintf_append(monitor->work_line, MSG_UTI_MONITOR_DEFLINE_FFFFF,
monitor->message_out_count/time,
monitor->message_in_count ? (time - monitor->idle)/monitor->message_in_count: 0,
monitor->idle/time*100, monitor->wait/time*100, time);
/* only log into the message file, if the user wants it */
if (monitor->log_monitor_mes) {
sge_log(LOG_PROF, sge_dstring_get_string(monitor->work_line),__FILE__,SGE_FUNC,__LINE__);
}
if (monitor->pos != -1) {
dstring *tmp = NULL;
sge_mutex_lock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[monitor->pos].Output_Mutex));
tmp = Output[monitor->pos].output;
Output[monitor->pos].output = monitor->work_line;
Output[monitor->pos].update_time = after.tv_sec;
sge_mutex_unlock("sge_monitor_init", SGE_FUNC, __LINE__, &(Output[monitor->pos].Output_Mutex));
monitor->work_line = tmp;
}
sge_monitor_reset(monitor);
}
DRETURN_VOID;
}
/****** uti/monitor/sge_monitor_reset() ****************************************
* NAME
* sge_monitor_reset() -- resets the monitoring data
*
* SYNOPSIS
* void sge_monitor_reset(monitoring_t *monitor)
*
* FUNCTION
* Resets the data structure including the extension. No data in the
* extension is preserved.
*
* INPUTS
* monitoring_t *monitor - monitoring structure
*
* NOTES
* MT-NOTE: sge_monitor_reset() is MT safe
*
*******************************************************************************/
void sge_monitor_reset(monitoring_t *monitor)
{
DENTER(GDI_LAYER, "sge_monitor_reset");
monitor->monitor_time = 0;
monitor->now.tv_sec = 0;
monitor->now.tv_usec = 0;
monitor->output = false;
monitor->message_in_count = 0;
monitor->message_out_count = 0;
monitor->idle = 0.0;
monitor->wait = 0.0;
if (monitor->ext_type != NONE_EXT) {
memset(monitor->ext_data, 0, monitor->ext_data_size);
}
DEXIT;
}
/****************************************
* implementation section for extensions
****************************************/
/****** uti/monitor/ext_sch_output() *******************************************
* NAME
* ext_sch_output() -- generates a string from the scheduler extension
*
* SYNOPSIS
* static void
* ext_sch_output(char *message, int size, void
* *monitoring_extension, double time)
*
* FUNCTION
* generates a string from the extension and returns it.
*
* INPUTS
* char *message - initialized string buffer
* int size - buffer size
* void *monitoring_extension - the extension structure
* double time - length of the measurement interval
*
* NOTES
* MT-NOTE: ext_gdi_output() is MT safe
*******************************************************************************/
static void ext_sch_output(dstring *message, void *monitoring_extension _UNUSED, double time _UNUSED)
{
sge_dstring_sprintf_append(message, "%s", "");
}
/****** uti/monitor/ext_gdi_output() *******************************************
* NAME
* ext_gdi_output() -- generates a string from the GDI extension
*
* SYNOPSIS
* static void ext_gdi_output(char *message, int size, void
* *monitoring_extension, double time)
*
* FUNCTION
* generates a string from the extension and returns it.
*
* INPUTS
* char *message - initialized string buffer
* int size - buffer size
* void *monitoring_extension - the extension structure
* double time - length of the measurement interval
*
* NOTES
* MT-NOTE: ext_gdi_output() is MT safe
*******************************************************************************/
static void ext_gdi_output(dstring *message, void *monitoring_extension, double time)
{
m_gdi_t *gdi_ext = (m_gdi_t*) monitoring_extension;
sge_dstring_sprintf_append(message, MSG_UTI_MONITOR_GDIEXT_FFFFFFFFFFFFI,
gdi_ext->eload_count/time, gdi_ext->ejob_count/time,
gdi_ext->econf_count/time, gdi_ext->eproc_count/time,
gdi_ext->eack_count/time,
gdi_ext->gdi_add_count/time, gdi_ext->gdi_get_count/time,
gdi_ext->gdi_mod_count/time, gdi_ext->gdi_del_count/time,
gdi_ext->gdi_cp_count/time, gdi_ext->gdi_trig_count/time,
gdi_ext->gdi_perm_count/time,
sge_u32c(gdi_ext->queue_length));
}
/****** uti/monitor/ext_lis_output() *******************************************
* NAME
* ext_lis_output() -- generates a string from the listener extension
*
* SYNOPSIS
* static void
* ext_lis_output(char *message, int size, void
* *monitoring_extension, double time)
*
* FUNCTION
* generates a string from the extension and returns it.
*
* INPUTS
* char *message - initialized string buffer
* int size - buffer size
* void *monitoring_extension - the extension structure
* double time - length of the measurement interval
*
* NOTES
* MT-NOTE: ext_lis_output() is MT safe
*******************************************************************************/
static void ext_lis_output(dstring *message, void *monitoring_extension, double time)
{
m_lis_t *gdi_ext = (m_lis_t*) monitoring_extension;
sge_dstring_sprintf_append(message, MSG_UTI_MONITOR_LISEXT_FFFF,
gdi_ext->inc_gdi/time,
gdi_ext->inc_ack/time,
gdi_ext->inc_ece/time,
gdi_ext->inc_rep/time);
}
/****** uti/monitor/ext_edt_output() *******************************************
* NAME
* ext_edt_output() -- generates a string from the GDI extension
*
* SYNOPSIS
* static void ext_edt_output(char *message, int size, void
* *monitoring_extension, double time)
*
* FUNCTION
* generates a string from the extension and returns it.
*
* INPUTS
* char *message - initialized string buffer
* int size - buffer size
* void *monitoring_extension - the extension structure
* double time - length of the measurement interval
*
* NOTES
* MT-NOTE: ext_edt_output() is MT safe
*
*******************************************************************************/
static void ext_edt_output(dstring *message, void *monitoring_extension, double time)
{
m_edt_t *edt_ext = (m_edt_t*) monitoring_extension;
sge_dstring_sprintf_append(message, MSG_UTI_MONITOR_EDTEXT_FFFFFFFF,
((double)edt_ext->client_count) / edt_ext->count,
edt_ext->mod_client_count / time,
edt_ext->ack_count / time,
((double)edt_ext->blocked_client_count) / edt_ext->count,
((double)edt_ext->busy_client_count) / edt_ext->count,
edt_ext->new_event_count / time,
edt_ext->added_event_count / time,
edt_ext->skip_event_count / time);
}
/****** uti/monitor/ext_tet_output() *******************************************
* NAME
* ext_tet_output() -- generates a string from the GDI extension
*
* SYNOPSIS
* static void ext_edt_output(char *message, int size, void
* *monitoring_extension, double time)
*
* FUNCTION
* generates a string from the extension and returns it.
*
* INPUTS
* dstring *message - initialized string buffer
* void *monitoring_extension - the extension structure
* double time - length of the measurement interval
*
* NOTES
* MT-NOTE: ext_tet_output() is MT safe
*
*******************************************************************************/
static void ext_tet_output(dstring *message, void *monitoring_extension, double time)
{
m_tet_t *tet_ext = (m_tet_t*) monitoring_extension;
sge_dstring_sprintf_append(message, MSG_UTI_MONITOR_TETEXT_FF,
((double)tet_ext->event_count) / tet_ext->count,
tet_ext->exec_count / time
);
}
|