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 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
|
#!/bin/sh
# the next line restarts using wish and correctly pass the arguments to this\
exec wish "$0" -- "$@"
###############################################################################
#
# Copyright (c) 2000, 2001 David Doubrava (linux_monitor(at)volny(dot)cz)
#
# Primary-site: http://www.volny.cz:/linux_monitor/isag
#
# This program/module is free software; you can redistribute it
# and/or modify it under the terms of the GNU General Public License
# as published by 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 usefull,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY of FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
###############################################################################
#
# 2006/04/14 : Sebastien GODARD
# isag v1.3
# Updated to current sysstat version (6.1.2).
#
# $Id: isag.m4,v 1.26 2004/03/22 19:39:14 david Exp $
# $State: Exp $
#
# $Log: isag.m4,v $
# Revision 1.26 2004/03/22 19:39:14 david
# fully avoided shell script, i hope the temp file issue is fixed
#
# Revision 1.25 2004/03/22 19:13:18 david
# eliminated shell script, security issue
#
# Revision 1.24 2004/03/02 20:28:00 david
# replaced <> by () in mangled e-mails
#
# Revision 1.23 2004/02/24 07:40:14 david
# replaced (at) and (dot) in most e-mail addresses
#
# Revision 1.22 2003/02/26 18:19:09 david
# realized new layout of files
#
# Revision 1.21 2003/02/23 21:07:35 david
# first prototype of sag
#
# Revision 1.20 2003/01/26 20:41:48 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.19 2002/03/04 20:23:26 david
# fixed whole day functionality
#
# Revision 1.17 2001/07/30 18:05:41 sarrep
# fix: bug2001060501; set LC_ALL to sane value; see Debian bug #101545
#
# Revision 1.16 2001/04/22 14:19:34 sarrep
# Added GPL related text
# remove notes about solving R switch problems
#
# Revision 1.15 2001/03/17 17:30:15 sarrep
# CVSizing, unified headers of each element file
#
# Revision 1.14 2001/03/17 16:55:26 sarrep
# LINUX RESTART zeroes all counters.
#
# Revision 1.13 2001/03/11 20:15:19 sarrep
# First step after CVSizing
#
# Revision 1.12 2001/02/20 19:06:10 sarrep
# added q switch and actialize B switch to version 3.3.6
#
# Revision 1.11 2001/02/10 10:42:03 sarrep
# finally renamed from sarrep to isag
# added additional commnts in header
# added patching
#
# Revision 1.10 2001/02/03 11:02:17 sarrep
# removed many same (for family) parts to different files.
# improved generationg of cmd array.
#
# Revision 1.9 2001/01/27 19:28:43 root
# added secondary Y axes functionality
# added -c cfg_file cmdln option
# writting of selected config data to cfg_file
# renamed chart lines to names used in sar
# parametrized creating of cmd() array
# added generic var __M4_TIMELEN__ for proc_line_generic
#
# Revision 1.8 2001/01/20 19:02:53 root
# added version check due to bug.2312200001
# added secondary Y label
#
# Revision 1.7 2000/12/30 18:35:06 root
# split into few parts. main idea next extensibility for other platforms
#
# Revision 1.6 2000/12/30 11:30:20 root
# command line argument(s) functionality was added
# preparation for config file was done
# and few small changes
#
# Revision 1.5 2000/12/23 21:22:10 root
# fixed situation if LINUX RESTART is in data file
# fixed if no more than one line in data file.
# try to fix wrong graph size after resizing appl. window
#
# Revision 1.4 2000/12/23 20:48:31 root
# function rescale_graph was renamed to redraw_graph
# and one menu item was added.
#
# Revision 1.3 2000/12/16 13:37:12 root
# resize window related functions
#
# Revision 1.2 2000/12/11 18:54:17 root
# behavior will be parametrized
#
# Revision 1.1 2000/12/11 15:01:07 root
# Initial revision
#
#
###############################################################################
# specific for sebastien's sar
#
###############################################################################
# $Id: version.m4,v 1.4 2002/03/04 20:20:27 david Rel $
# $State: Rel $
# $Log: version.m4,v $
# Revision 1.4 2002/03/04 20:20:27 david
# make new end line
#
# Revision 1.3 2001/03/17 17:43:07 sarrep
# About dialog modify
#
# Revision 1.2 2001/03/17 17:30:26 sarrep
# CVSizing, unified headers of each element file
#
#
###############################################################################
set ident "/usr/bin/ident"
set version ""
# This can be set only if small interactive change in result code was occured
set patchlevel ""
if {[catch {set fp [open "| $ident $argv0" "r"]}] == 0} {
set n 0
while {[gets $fp line] != -1} {
if {$n != 0 && -1 != [string first "Id:" $line]} {
set version "$version\n[string trim $line]"
} else {
set n 1
}
}
} else {
set version "Unknown! $ident is missing"
}
if {"" != $patchlevel} {
set version "$version\nPatch level: $patchlevel"
}
# $Source: /var/CVSROOT/cvs/i-sag/common/version.m4,v $
##############################################################################
# Tcl/Tk: version check
#
# $Id: ver_check.m4,v 1.6 2003/03/03 20:11:16 david Exp $
# $State: Exp $
# $Log: ver_check.m4,v $
# Revision 1.6 2003/03/03 20:11:16 david
# fixed tools name
#
# Revision 1.5 2002/03/24 15:18:26 david
# added
#
# Revision 1.4 2002/03/04 20:20:27 david
# make new end line
#
# Revision 1.3 2001/03/17 17:30:25 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
set needed_version 8.0
if {$tcl_version < $needed_version} {
out_msg "Warning Version check" "sag needs $needed_version, but this is version $tcl_version of Tcl.\nSome features can fail"
# exit
}
# $Source: /var/CVSROOT/cvs/i-sag/common/ver_check.m4,v $
###############################################################################
# default paths, programs and other variables
#
# $Id: variables.m4,v 1.5 2003/01/26 20:41:49 david Rel $
# $State: Rel $
# $Log: variables.m4,v $
# Revision 1.5 2003/01/26 20:41:49 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.4 2002/03/04 20:20:27 david
# make new end line
#
# Revision 1.3 2001/03/17 17:30:24 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
set gnuplot "/usr/bin/gnuplot"
set grep "/bin/grep"
set sh "/bin/sh"
# default placement of config file
set isag_cfg_file "$env(HOME)/.isag.cfg"
set sag_graph_wd 720
set sag_graph_ht 400
# $Source: /var/CVSROOT/cvs/i-sag/common/variables.m4,v $
###############################################################################
# Message box functionality
#
# $Id: msg_box.m4,v 1.6 2002/03/24 15:18:26 david Exp $
# $State: Exp $
# $Log: msg_box.m4,v $
# Revision 1.6 2002/03/24 15:18:26 david
# added
#
# Revision 1.5 2002/03/04 20:21:08 david
# make new end line
#
# Revision 1.4 2001/06/03 19:58:04 sarrep
# improved behaviour, added grab capability
# removed (softly) Cancel button
#
# Revision 1.3 2001/03/17 17:30:22 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
proc msg_box_btn {w} {
destroy $w
}
proc err_msg {title text} {
tk_messageBox -icon error -type ok -message $text -title $title
}
proc out_msg {title text} {
toplevel .msg_box
wm title .msg_box $title
label .msg_box.l -text $text -justify left
pack .msg_box.l -side top
frame .msg_box.b
pack .msg_box.b -side top
button .msg_box.b.ok -text OK -command {msg_box_btn .msg_box}
pack .msg_box.b.ok -side left
# button .msg_box.b.cancel -text cancel -command {msg_box_btn .msg_box}
# pack .msg_box.b.cancel -side left
grab .msg_box
tkwait window .msg_box
}
# $Source: /var/CVSROOT/cvs/i-sag/isag/msg_box.m4,v $
# specific paths and programs
set sar_data_path "@SA_DIR@"
set sar_data_mask "sa\[0-9\]{\[0-9\],\[0-9\]\[0-9\]\[0-9\]\[0-9\]\[0-9\]\[0-9\]\[0-9\]}"
set prefix "@prefix@"
set exec_prefix "@exec_prefix@"
set sar "@bindir@/sar.sysstat"
# following check added: Thu Mar 18 21:44:52 GMT+1 2004
if { 1 != [file executable $sar]} {
err_msg "Error" "File: $sar does not exist"
exit
}
#fix: bug2001060501; set LC_ALL to sane value; see Debian bug #101545
set env(LC_ALL) "C"
###############################################################################
# $Id: isag_common_options.m4,v 1.6 2003/01/26 20:41:48 david Rel $
# $State: Rel $
# $Log: isag_common_options.m4,v $
# Revision 1.6 2003/01/26 20:41:48 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.5 2002/03/24 15:18:26 david
# added
#
# Revision 1.4 2002/03/04 20:21:51 david
# make new end line
#
# Revision 1.3 2001/03/17 17:30:20 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
proc Usage {} {
global sar_data_path sar_data_mask isag_cfg_file sag_graph_wd sag_graph_ht
out_msg "Usage" \
"isag \[options\]
Options:
\t-p data_path (default: $sar_data_path)
\t-m data_file_mask (default: $sar_data_mask)
\t-c cfg_file (default: $isag_cfg_file)
\t-gwd graph_width (default: $sag_graph_wd)
\t-ght graph_height (default: $sag_graph_ht) "
exit
}
proc getopt {argv opt} {
set rv ""
if {-1 != [set t [lsearch -exact $argv "-$opt"]]} {
set rv [lindex $argv [expr $t + 1]]
}
return $rv
}
if {-1 != [set t [lsearch -exact $argv "-h"]]} {
Usage
}
if {-1 != [set t [lsearch -exact $argv "-?"]]} {
Usage
}
if {[set t [getopt $argv c]] != ""} {
# check for path
if {1 == ([file exist $t] && [file isfile $t])} {
set isag_cfg_file $t
} else {
out_msg "Error" "<$t> is not regular file, using default <$isag_cfg_file>"
}
}
if {[set t [getopt $argv p]] != ""} {
# check for path
if {1 == ([file exist $t] && [file isdirectory $t])} {
set sar_data_path $t
} else {
out_msg "Error" "<$t> is not directory, using default <$sar_data_path>"
}
}
if {[set t [getopt $argv m]] != ""} {
set sar_data_mask $t
}
if {[set t [getopt $argv ght]] != ""} {
if {1 == [string is digit $t]} {
set sag_graph_ht $t
} else {
out_msg "Error" "<$t> is not decimal number, using default <$sag_graph_ht>"
}
}
if {[set t [getopt $argv gwd]] != ""} {
if {1 == [string is digit $t]} {
set sag_graph_wd $t
} else {
out_msg "Error" "<$t> is not decimal number, using default <$sag_graph_wd>"
}
}
unset t
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag_common_options.m4,v $
###############################################################################
#
# Variables connected to graphs and their default values
#
# selected archive file for sa data, typically saNN
# this variable is set thru: data Chooser (see: Concept Guide)
set sag_if_archive ""
# full path to archive file for sa data: either $sar_data_path/sa?? or
# $fgnr_tmpdir/sa_data (if the former file was compressed)
set sag_if_archive_uncompressed ""
# last_graph contains last drawing function as letter
set last_graph ""
# path to the newest sa data file. Set by fill_file_menu, used by the main
# procedure to autoload the file on program's startup
set sag_latest_file ""
# SGo 2008-07-06: Update options (options -S added).
# SGo 2008-06-15: Update options (options -c and -w have been merged).
# sar switches as names for object-instances (final and curent)
set prog_swtch [list b B q r R S u v w W]
# maximal and current values for each graph indexed by sar switch i.e. for cpu
# is index u not -u
foreach l $prog_swtch {
set val_max($l) 0
set val_cur($l) 0
set has_negative($l) 0
}
unset l
# exceptions
set val_max(u) 100
set has_negative(R) 1
set val_max(W) 1
set val_cur(W) 1
# graph/view names this is shoved in menu-view and as name of the graph
# and other functional parameters
# xlabel - label for x-axis
# ylabel - label for y-axis
# y2label - label for secondary y-axis
# plotstr - string plot for gnuplot, describes a graph
#
# SGo 2008-07-06: Add menu option, ylabel and y2label for option -S.
# SGo 2008-06-15: Update menu functions and ylabel names
# view_n(ame) array
set view_n(b) "I/O Transfer Rate"
set view_n(B) "Paging Statistics"
set view_n(q) "Run Queue"
set view_n(r) "Memory Utilization"
set view_n(R) "Memory Statistics"
set view_n(S) "Swap Utilization"
set view_n(u) "CPU Utilization"
set view_n(v) "Inode Status"
set view_n(w) "Process Creation and Context Switches"
set view_n(W) "System Swapping"
# xlabel is not an array - all values are same
set xlabel "Time"
# ylabel array
set ylabel(b) "ops/s"
set ylabel(B) "pages/s"
set ylabel(q) ""
set ylabel(r) "kB"
set ylabel(R) "ops/s"
set ylabel(S) "kB"
set ylabel(u) "Percent"
set ylabel(v) ""
set ylabel(w) "ops/s"
set ylabel(W) "swp/s"
set y2label(b) ""
set y2label(B) ""
set y2label(q) ""
set y2label(r) ""
set y2label(R) ""
set y2label(S) ""
set y2label(u) ""
set y2label(v) ""
set y2label(w) ""
set y2label(W) ""
# sag_if_out_tokens describes how is input file covered
# if no list specified the proc_line_$l() is called
# Note: first element has index 0 (zero)!
# SGo 2007-07-06: Add fields for option -S.
# SGo 2007-10-21: Update fields taken for option -B.
# SGo 2006-04-14: Update fields taken for options -B, -q, -r, -R, -v.
# SGo 2008-06-15: Options -c and -w have been merged.
set sag_if_out_tokens(b) [list 1 2 3 4]
set sag_if_out_tokens2(b) ""
set sag_if_out_tokens(B) [list 0 1 2 3 4 5 6 7]
set sag_if_out_tokens2(B) ""
set sag_if_out_tokens(q) [list 0 1 2 3 4]
set sag_if_out_tokens2(q) ""
set sag_if_out_tokens(r) [list 0 1 3 4 5]
set sag_if_out_tokens2(r) ""
set sag_if_out_tokens(R) [list 0 1 2]
set sag_if_out_tokens2(R) ""
set sag_if_out_tokens(S) [list 0 1 3]
set sag_if_out_tokens2(S) ""
# CPU needs special computation, following list must be empty
# if no list is entered then following functions must be defined
# __output_zero_metrics_$l & proc_line_$l (see: proc_line_u())
set sag_if_out_tokens(u) ""
set sag_if_out_tokens2(u) ""
set sag_if_out_tokens(v) [list 0 1 2 3 5 7]
set sag_if_out_tokens2(v) ""
set sag_if_out_tokens(w) [list 0 1]
set sag_if_out_tokens2(w) ""
set sag_if_out_tokens(W) [list 0 1]
set sag_if_out_tokens2(W) ""
#
# The sar_elim() array contains string which have to be eliminated from sar's output
# SGo 2008-07-06: Add string for option -S.
#
set sar_elim(b) "tps"
set sar_elim(B) "pgpgin"
set sar_elim(c) "proc"
set sar_elim(q) "runq-sz"
set sar_elim(r) "kbmemfree"
set sar_elim(R) "frmpg"
set sar_elim(S) "kbswpfree"
set sar_elim(u) "user"
set sar_elim(v) "dentunusd"
set sar_elim(w) "cswch"
set sar_elim(W) "pswpin"
proc refresh_file_menu {} {
set x [winfo x .file.menu.m]
set y [winfo y .file.menu.m]
destroy .file.menu.m
fill_file_menu
.file.menu.m post $x $y
}
# Functions which are responsible for data source selection and processing
# funcs are referred from GUI
proc fill_file_menu {} {
global sar_data_path sar_data_mask sag_latest_file
set max_timestamp 0
set directories [lsort -decreasing [glob -nocomplain -directory $sar_data_path -type d \[0-9\]\[0-9\]\[0-9\]\[0-9\]\[0-9\]\[0-9\]]]
menu .file.menu.m -tearoff false
set ldirectory [string length $sar_data_path]
# List of strings in format "directory:mtime:menu_item_label:real_file_name" created from log file names
set tmpfiles [list]
foreach directory [concat $directories $sar_data_path ] {
set files [glob -nocomplain -directory $directory -type f $sar_data_mask ]
# add compressed files too
set files [concat $files [glob -nocomplain -directory $directory -type f $sar_data_mask.gz $sar_data_mask.bz2 $sar_data_mask.xz ]]
# remove $sar_data_path prefix from $directory
set directory [string range $directory [expr $ldirectory + 1] end]
foreach file $files {
# skip symbolic links
if { "link" == [ file type $file]} { continue }
# remove $sar_data_path prefix from $file
set file [string range $file [expr $ldirectory + 1] end]
if { $directory == ""} {
set l [string length $file]
if { $l < 10 } {
# old file format: saDD
set timestamp [file mtime "$sar_data_path/$file"]
set tmpfiles [linsert $tmpfiles end ".:$timestamp:$file:$file"]
} else {
# new file format: saYYYYMMDD
set dir [string range $file 0 7]
set basefile [string range $file 8 end]
set tmpfiles [linsert $tmpfiles end "$dir:0:$basefile:$file"]
}
} else {
# old file format: YYYYMM/saDD
set l [string last "/" $file]
set basefile [string range $file [expr $l + 1] end]
set tmpfiles [linsert $tmpfiles end "$directory:0:$basefile:$file"]
}
}
}
# Sort the list
set tmpfiles [lsort -decreasing $tmpfiles]
set prevdir ""
# Fill menu with files
foreach file $tmpfiles {
set components [split $file ":"]
lassign $components dir timestamp label basefile
if { $prevdir != $dir } {
set prevdir $dir
if { $dir == "." } {
set menudir ".file.menu.m"
} else {
set menudir ".file.menu.m.dir$dir"
menu $menudir -tearoff 0
.file.menu.m add cascade -label $dir -menu $menudir
}
}
set label [string map { .gz "" } $label]
set label [string map { .bz2 "" } $label]
set label [string map { .xz "" } $label]
$menudir add command -label "$label" -command "set_file $basefile"
set file "$sar_data_path/$basefile"
if { $timestamp == 0 } {
set timestamp [file mtime $file]
}
# Ignore files smaller then 4kB to avoid "No data found" error
if { ($timestamp > $max_timestamp) && ([file size $file] > 4096) } {
set sag_latest_file $basefile
set max_timestamp $timestamp
}
}
# Add Refresh button to fix https://bugs.launchpad.net/ubuntu/+source/sysstat/+bug/924197
.file.menu.m add command -label "Refresh" -command "refresh_file_menu"
}
proc set_file {name} {
global sar_data_path sag_if_archive sag_if_archive_uncompressed last_graph fngr_tmpdir
set sag_if_archive $name
.file.lbl configure -text "Data Source: $name"
set l [string last "." $sag_if_archive]
switch [string range $sag_if_archive $l end] {
".xz" { set filter "xzcat" }
".bz2" { set filter "bzcat" }
".gz" { set filter "zcat" }
default { set filter "" }
}
if {"" == $filter} {
set sag_if_archive_uncompressed "$sar_data_path/$sag_if_archive"
} else {
# uncompress file to sa_data located in the temporary dir
set sag_if_archive_uncompressed "$fngr_tmpdir/sa_data"
exec "$filter" "$sar_data_path/$sag_if_archive" > $sag_if_archive_uncompressed
}
if {"" != $last_graph} {
new_chart $last_graph
}
}
###############################################################################
# GUI
#
# $Id: isag.GUI.m4,v 1.14 2004/03/02 20:28:00 david Exp $
# $State: Exp $
# $Log: isag.GUI.m4,v $
# Revision 1.14 2004/03/02 20:28:00 david
# replaced <> by () in mangled e-mails
#
# Revision 1.13 2004/02/24 07:40:14 david
# replaced (at) and (dot) in most e-mail addresses
#
# Revision 1.12 2003/01/26 20:41:48 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.11 2002/10/31 15:07:21 david
# fixed bad behaviour with OpenMotif WM
#
# Revision 1.10 2002/03/24 15:18:26 david
# added
#
# Revision 1.9 2002/03/04 20:23:26 david
# fixed whole day functionality
#
# Revision 1.8 2002/03/04 18:36:37 david
# grid feature implemented
#
# Revision 1.7 2001/03/17 17:43:06 sarrep
# About dialog modify
#
# Revision 1.6 2001/03/17 17:30:11 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
set isag_title "System Activity Grapher"
wm title . $isag_title
frame .menu -relief raised -borderwidth 2
pack .menu -side top -fill x
menubutton .menu.file -text "Program" -menu .menu.file.m -underline 0
menu .menu.file.m -tearoff false
.menu.file.m add command -label "Redraw" -underline 0 \
-command "set isag_gr_scale_old 0;redraw_graph" -accelerator "F5"
.menu.file.m add command -label "Save Picture" -underline 0 \
-command "sag_save_graph"
.menu.file.m add separator
.menu.file.m add command -label "Exit Program" -underline 0 \
-command "exit_program" -accelerator "Alt-X"
menubutton .menu.chart -text "Chart" -menu .menu.chart.m -underline 0
menu .menu.chart.m -tearoff true
# creates for each sar-switch menu item with apropriate command
foreach l $prog_swtch {
.menu.chart.m add command -label $view_n($l) \
-command "new_chart $l" -accelerator $l
bind all $l "new_chart $l"
}
menubutton .menu.opt -text "Options" -menu .menu.opt.m -underline 0
menu .menu.opt.m -tearoff false
.menu.opt.m add checkbutton -label "Whole Day (00:00-23:59)" -underline 0 \
-variable sag_opt_whole_day \
-command "set isag_gr_scale_old 0;redraw_graph"
.menu.opt.m add checkbutton -label "Show Grid" -underline 0 \
-variable sag_opt_grid -command "set isag_gr_scale_old 0;redraw_graph"
menubutton .menu.help -text "Help" -menu .menu.help.m -underline 0
menu .menu.help.m -tearoff false
.menu.help.m add command -label "About" -underline 0 \
-command {About}
pack .menu.file .menu.chart .menu.opt -side left
pack .menu.help -side right
frame .file -relief raised
pack .file -side top -fill x
label .file.lbl -text "(No File)" -borderwidth 2
menubutton .file.menu -relief raised -borderwidth 2 -text "-" -menu .file.menu.m
fill_file_menu
pack .file.lbl .file.menu -side left
frame .graph
pack .graph -side top -expand true -fill both
# this var contains a current value
set sag_gr_scale 0
scale .graph.scale -orient vertical -length $sag_graph_ht -to 0 -from 1 -variable sag_gr_scale
bind .graph.scale <Leave> "redraw_graph"
canvas .graph.canv -width $sag_graph_wd -height $sag_graph_ht
pack .graph.scale -side left -fill y
pack .graph.canv -side right -expand true -fill both
#bind all <Enter> "%W configure -highlightbackground blue"
#bind all <Leave> "%W configure -highlightbackground white"
bind all <Alt-x> "exit_program"
bind all <F5> "set isag_gr_scale_old 0;redraw_graph"
# acction to do when user closes isag with the window managers's close button
wm protocol . WM_DELETE_WINDOW exit_program
###############################################################################
#
# this function normalizes max val and sets scale and so on.
# this part is most common for draw_? functions
proc set_cur_max {l} {
global val_max sag_gr_scale val_cur
set norm [num_norm $val_max($l)]
set val_max($l) [lindex $norm 0]
.graph.scale configure -from $val_max($l) -resolution [lindex $norm 1]
unset norm
set val_cur($l) $sag_gr_scale
if {$val_cur($l) == 0} {
set val_cur($l) $val_max($l)
set sag_gr_scale $val_cur($l)
}
}
###############################################################################
#
# this function is called when mouse leaves a graph-scale widget
# and here is local variable isag_gr_scale_old
#
# this can be also as flag, is set to 0 after resizing
set isag_gr_scale_old 0
proc redraw_graph {} {
global last_graph sag_gr_scale isag_gr_scale_old sag_if_archive
if {($last_graph == "") || ($sag_if_archive == "")} {
return
}
if {$isag_gr_scale_old != $sag_gr_scale} {
set isag_gr_scale_old $sag_gr_scale
sag_draw $last_graph
}
}
###############################################################################
#
# this function is called from menu-view and decides which graph will be drawn
#
proc new_chart {l} {
global last_graph val_cur sag_gr_scale
if {$last_graph != "$l"} {
set m [.graph.scale configure -from]
if {$m < $val_cur($l)} {
.graph.scale configure -from $val_cur($l)
}
set sag_gr_scale $val_cur($l)
set last_graph "$l"
unset m
}
sag_draw $l
}
###############################################################################
#
# About message box
#
proc About {} {
global version
out_msg About "Sar Grapher\n\nBuild info:$version\n\nhttp://www.volny.cz/linux_monitor/isag/index.html\ne-mail: linux_monitor(at)volny(dot)cz"
}
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag.GUI.m4,v $
###############################################################################
# Resizing graph window
#
# $Id: isag.ResizeAll.m4,v 1.7 2003/01/26 20:41:48 david Exp $
# $State: Exp $
# $Log:#
#
#
###############################################################################
bind . <Configure> {ResizeAll}
set isag_enResizing 0
# first time this function is empty
proc gnuplot {w} {}
proc ResizeAll {} {
global isag_enResizing isag_gr_scale_old
set width [winfo width .]
set height [winfo height .]
set w [expr [winfo width .graph.scale] + [winfo width .graph.canv]]
set h [expr [winfo height .menu] + [winfo height .file] + [winfo height .graph.scale]]
if {($w >= $width) && ($h == $height)} {
incr isag_enResizing
return
}
if {0 == $isag_enResizing} {
return
}
set isag_enResizing 0
if {$w <= $width} {
# number two look as magic number
.graph.canv configure -width [expr $width - [winfo width .graph.scale] - 2]
}
if {$h != $height} {
set h1 [expr [winfo height .menu] + [.file cget -height]]
.graph.canv configure -height [expr $height - $h1]
.graph.scale configure -length [expr $height - $h1]
}
# set isag_gr_scale_old 0
# redraw_graph
## not reliable WHY?
gnuplot .graph.canv
#set isag_enResizing 1
}
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag.ResizeAll.m4,v $
###############################################################################
# Other functions
#
# $Id: isag.Other.Funcs.m4,v 1.20 2004/03/22 19:39:14 david Exp $
# $State: Exp $
# $Log: isag.Other.Funcs.m4,v $
# Revision 1.20 2004/03/22 19:39:14 david
# fully avoided shell script, i hope the temp file issue is fixed
#
#
###############################################################################
##############################################################################
#
#
proc strrep {str old new} {
set l [string length $old]
for {set n [string first $old $str]} {$n != -1} {set n [string first $old $str]} {
set str "[string range $str 0 [expr $n - 1]]$new[string range $str [expr $n + $l] end]"
}
return $str
}
# eof: strrep.m4
# normalizes time if HH:MM:SS PM to 00-24 `format' for gnuplot
proc time_normalize {time} {
set n [string first "AM" $time]
if {$n > 0} {
set time [string trim [string range $time 0 [expr $n - 1]]]
set hours [string range $time 0 1]
# if hour is 12 then time is after midnight
if {$hours == 12} {
set time "[format %02d [expr $hours - 12]][string range $time 2 end]"
} else {
return [string trim [string range $time 0 [expr $n - 1]]]
}
unset hours
}
set n [string first "PM" $time]
if {$n > 0} {
set time [string trim [string range $time 0 [expr $n - 1]]]
set hours [string range $time 0 1]
# if hours string looks like 07, then is evaluated as octal number
# in case of 08 and 09 generates an error
if {"0" == [string range $hours 0 0]} {
set hours [string range $hours 1 1]
}
if {$hours < 12} {
set time "[format %02d [expr $hours + 12]][string range $time 2 end]"
}
unset hours
}
unset n
return $time
}
# tokens are divided by one or more space(s)
proc parse_line {ln} {
global needed_version tcl_version
set res ""
if {$tcl_version > $needed_version} {
# this is a more effective
set rest [string map { \t " " } [string trim $ln]]
} else {
set rest [strrep [string trim $ln] \t " "]
}
for {} {[string length $rest] > 0} {} {
set a [string first " " $rest]
if {$a == -1} {
lappend res "$rest"
set rest ""
} else {
set token [string trim [string range $rest 0 [expr $a - 1]]]
set rest [string trim [string range $rest [expr $a + 1] end]]
lappend res "$token"
}
}
unset rest
return $res
}
# normalizes number to 2valid digits representation
# and returns lis of norm number and step for list
proc num_norm {num} {
if {$num < 10.0} {
return [list 10 1]
}
set l [expr int ([expr log10 ($num)])]
set n [expr int ([expr pow (10, [expr $l - 1])])]
set m [expr int ([expr ($num - 1) / $n]) + 1]
set max [expr $m * $n]
set step [expr int ([expr pow (10, [expr $l - 2])])]
if {$step < 1} {
set step 1
}
unset l n m
return [list $max $step]
}
##
## Parameters
## gp_term - gnuplot terminal (currently used: tkcanvas & jpeg)
## ext - out filename extension (related to gp_term)
## fn - file name base for resulting file
## title - graph title/name
## xlabel - xlabel text
## ylabel - primary ylabel text
## y2label - secondary ylabel text (scale 0-100%)
## yrange - yrange (y-maximum)
## plot_str - gplot command which produces desired output graph
## f_grid - flag if grid should be drawn
##
proc create_gnuplot_file {gp_term ext fn title xlabel ylabel y2label yrange plot_str f_grid} {
global sag_graph_wd sag_graph_ht
# Y2 percentage
set fp [open $fn.gp "w"]
# not consistent workaround
if { $gp_term == "jpeg" } {
puts $fp "set term $gp_term transparent interlace size $sag_graph_wd,$sag_graph_ht"
} else {
puts $fp "set term $gp_term"
}
# puts $fp "set title \"$title\""
# puts $fp "set xlabel \"$xlabel\""
puts $fp "set ylabel \"$ylabel\""
if {$y2label != ""} {
puts $fp "set y2label \"$y2label\""
puts $fp "set y2range \[0:100\]"
}
puts $fp "set timefmt \"%H:%M:%S\""
puts $fp "set xdata time"
puts $fp "set format x \"%H:%M\""
if {$yrange != ""} {
puts $fp "set yrange $yrange"
}
puts $fp "set output \"$fn.$ext\""
if { 0 != $f_grid } {
puts $fp "set grid"
}
# The last event recorded by sysstat may come after 23:59:59 and
# make isag think it happened at the beginning of the day.
# This shuffle works around the assumption by
# discarding each point that seems to travel backwards in time.
# Enforcing an ordered domain is a good idea regardless.
puts $fp "x2 = x1 = NaN"
puts $fp "cache(x) = (x2 = x1, x1 = x)"
regsub -all {using ([0-9]+):([0-9]+)} $plot_str {using \1:(cache($\1), $\1 < x2 ? 1 / 0 : $\2)} plot_str
# It is worth noting that in gnuplot
# both 1 / 0 and NaN produce the same value, but
# behave differently depending on context.
# The same applies to \1 and ($\1) for no reason.
puts $fp "plot $plot_str"
close $fp
}
set fngr_tmpdir [exec mktemp -d "/tmp/isag.XXXXXX"]
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag.Other.Funcs.m4,v $
###############################################################################
#
# Remaining graph paramaters
#
# plotstr array
# in future - this string will not be fixed but functions will coming
# SGo 2008-07-06: Added fields for option -S.
# SGo 2008-06-15: Update fields for option -w (options -c and -w have been merged).
# SGo 2007-10-21: Update fields for option -B.
# SGo 2006-04-14: Update fields for options -B, -q, -r, -R, -u, -v.
# SGo 2007-07-31: Update fields for option -v.
set plotstr(b) "\"__FNGR__\" using 1:2 t \"rtps\" with line, \"__FNGR__\" using 1:3 t \"wtps\" with line, \"__FNGR__\" using 1:4 t \"bread/s\" with line, \"__FNGR__\" using 1:5 t \"bwrtn/s\" with line"
set plotstr(B) "\"__FNGR__\" using 1:2 t \"pgpgin/s\" with line, \"__FNGR__\" using 1:3 t \"pgpgout/s\" with line, \"__FNGR__\" using 1:4 t \"fault/s\" with line, \"__FNGR__\" using 1:5 t \"majflt/s\" with line, \"__FNGR__\" using 1:6 t \"pgfree/s\" with line, \"__FNGR__\" using 1:7 t \"pgscank/s\" with line, \"__FNGR__\" using 1:8 t \"pgscand/s\" with line, \"__FNGR__\" using 1:9 t \"pgsteal/s\" with line"
set plotstr(n) ""
set plotstr(q) "\"__FNGR__\" using 1:2 t \"runq-sz\" with line, \"__FNGR__\" using 1:3 t \"plist-sz\" with line, \"__FNGR__\" using 1:4 t \"ldavg-1\" with line, \"__FNGR__\" using 1:5 t \"ldavg-5\" with line, \"__FNGR__\" using 1:6 t \"ldavg-15\" with line"
set plotstr(r) "\"__FNGR__\" using 1:2 t \"kbmemfree\" with line, \"__FNGR__\" using 1:3 t \"kbmemused\" with line, \"__FNGR__\" using 1:4 t \"kbbuffers\" with line, \"__FNGR__\" using 1:5 t \"kbcached\" with line, \"__FNGR__\" using 1:6 t \"kbcommit\" with line"
set plotstr(R) "\"__FNGR__\" using 1:2 t \"frmpg/s\" with line, \"__FNGR__\" using 1:3 t \"bufpg/s\" with line, \"__FNGR__\" using 1:4 t \"campg/s\" with line"
set plotstr(S) "\"__FNGR__\" using 1:2 t \"kbswpfree\" with line, \"__FNGR__\" using 1:3 t \"kbswpused\" with line, \"__FNGR__\" using 1:4 t \"kbswpcad\" with line"
set plotstr(u) "\"__FNGR__\" using 1:2 t \"%user\" with line, \"__FNGR__\" using 1:3 t \"%nice\" with line, \"__FNGR__\" using 1:4 t \"%system\" with line, \"__FNGR__\" using 1:5 t \"%iowait\" with line, \"__FNGR__\" using 1:6 t \"%steal\" with line"
set plotstr(v) "\"__FNGR__\" using 1:2 t \"dentunusd\" with line, \"__FNGR__\" using 1:3 t \"file-nr\" with line, \"__FNGR__\" using 1:4 t \"inode-nr\" with line, \"__FNGR__\" using 1:5 t \"pty-nr\" with line"
set plotstr(w) "\"__FNGR__\" using 1:2 t \"proc/s\" with line, \"__FNGR__\" using 1:3 t \"cswch/s\" with line"
set plotstr(W) "\"__FNGR__\" using 1:2 t \"pswpin/s\" with line, \"__FNGR__\" using 1:3 t \"pswpout/s\" with line"
###############################################################################
# Performance data processing
#
# $Id: isag.perf_data_procs.m4,v 1.11 2003/01/26 20:41:48 david Exp $
# $State: Exp $
# $Log: isag.perf_data_procs.m4,v $
# Revision 1.11 2003/01/26 20:41:48 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.10 2002/03/24 15:18:26 david
# added
#
# Revision 1.9 2002/03/04 20:23:26 david
# fixed whole day functionality
#
# Revision 1.8 2001/03/30 16:42:26 sarrep
# Fixed bug about _last_time, (mangled graph)
#
# Revision 1.7 2001/03/17 17:30:16 sarrep
# CVSizing, unified headers of each element file
#
# Revision 1.6 2001/03/17 16:55:27 sarrep
# LINUX RESTART zeroes all counters.
#
###############################################################################
# CPU measurement specific line processing
# SGo 2006-04-14: take into account time spent in iowait and steal modes
proc sag_if_proc_line_u {fp line} {
global val_cur val_max sag_if_last_time sag_if_reboot_flag
set rval 0
set a [string first "all" $line]
if {$a != -1} {
set time [string trim [string range $line 0 [expr $a - 1]]]
set time [time_normalize "$time"]
set rest [string trim [string range $line [expr $a + 3] end]]
if {1 == $sag_if_reboot_flag} {
# after reboot, set to zero also, all charts are with lines
set sag_if_reboot_flag 0
# NOTE: The func __output_zero_metrics() cannot be used, because 'u' don't have sag_if_out_tokens
puts $fp "$time 0 0 0 0 0"
}
set nums [parse_line $rest]
# user nice system iowait steal (idle)
set user [lindex $nums 0]
set nice [lindex $nums 1]
set syst [lindex $nums 2]
set iow [lindex $nums 3]
set steal [lindex $nums 4]
set total [expr $user + $nice + $syst + $iow + $steal]
if {$total > $val_max(u)} {set val_max(u) $total}
puts $fp "$time $total [expr $nice + $syst + $iow + $steal] [expr $syst + $iow + $steal] [expr $iow + $steal] $steal"
set rval 1
set sag_if_last_time $time
} else {if {-1 != [string first "RESTART" $line]} {
set sag_if_reboot_flag 1
# see previous NOTE
if {$sag_if_last_time != ""} {
puts $fp "$sag_if_last_time 0 0 0 0 0"
set rval 1
}
}}
return $rval
}
proc sag_if__output_zero_metrics_u {time} {
return "$time 0 0 0 0 0"
}
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag.perf_data_procs.m4,v $
###############################################################################
# Performance Data Processing and Drawing functions
# proces line functions
#
# $Id: proc_line_generic.m4,v 1.11 2004/03/22 19:39:14 david Exp $
# $State: Exp $
# $Log: proc_line_generic.m4,v $
# Revision 1.11 2004/03/22 19:39:14 david
# fully avoided shell script, i hope the temp file issue is fixed
#
# Revision 1.10 2003/01/26 20:41:49 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.9 2002/03/24 15:18:26 david
# added
#
# Revision 1.8 2002/03/04 20:23:26 david
# fixed whole day functionality
#
# Revision 1.7 2001/07/30 18:06:25 sarrep
# Fixed one debug print. It was on wrong place.
#
# Revision 1.6 2001/03/30 16:42:26 sarrep
# Fixed bug about _last_time, (mangled graph)
#
# Revision 1.5 2001/03/17 17:30:23 sarrep
# CVSizing, unified headers of each element file
#
# Revision 1.4 2001/03/17 16:55:28 sarrep
# LINUX RESTART zeroes all counters.
#
#
###############################################################################
#
# NOTE: following function is used when
# graph of whole day is required (see: draw() function)
#
proc sag_if__output_zero_metrics {time l} {
global sag_if_out_tokens sag_if_out_tokens2
set out "$time "
foreach N $sag_if_out_tokens($l) {
set out "$out 0"
}
foreach N $sag_if_out_tokens2($l) {
set out "$out 0"
}
return "$out"
}
#
# NOTE: `_last_time' related functionality is used when
# graph of whole day is required (see: draw() function)
#
set sag_if_last_time ""
set sag_if_reboot_flag 0
# generic line processing
proc sag_if_proc_line_generic {l fp line} {
global val_cur val_max sag_if_out_tokens sag_if_out_tokens2 sag_if_last_time sag_if_reboot_flag
set time [string trim [string range $line 0 12]]
# Here was a problem, time string was badly cutten
set time [time_normalize "$time"]
set rest [string trim [string range $line 12 end]]
#
# Sebastien's isag specific
# check for line: "time LINUX RESTART" and reset counter to next
# valid time stamp.
# NOTE: Values must be zeroed also for first valid time after reboot. For
# explanation you can imagin the chart
#
if {-1 == [string first "RESTART" $rest]} {
if {1 == $sag_if_reboot_flag} {
# after reboot, set to zero also, all charts are with lines
set sag_if_reboot_flag 0
puts $fp [sag_if__output_zero_metrics $time $l]
}
set nums [parse_line $rest]
set out "$time "
foreach N $sag_if_out_tokens($l) {
set n [lindex $nums $N]
set out "$out $n"
if {$n > $val_max($l)} {set val_max($l) $n}
}
foreach N $sag_if_out_tokens2($l) {
set n [lindex $nums $N]
set out "$out $n"
}
set sag_if_last_time $time
unset nums n N
} else {
# reboot detected, drop all metrics to zero
set sag_if_reboot_flag 1
if {$sag_if_last_time != ""} {
set out [sag_if__output_zero_metrics $sag_if_last_time $l]
}
}
catch {
puts $fp "$out"
unset out
}
unset rest time
return 1
}
# $Source: /var/CVSROOT/cvs/i-sag/common/proc_line_generic.m4,v $
###############################################################################
# Performance Data Processing and Drawing functions
# generic draw function
# parametrical draw func for each kind of graph
#
# $Id: draw.m4,v 1.16 2004/03/22 19:39:14 david Exp $
# $State: Exp $
# $Log: draw.m4,v $
# Revision 1.16 2004/03/22 19:39:14 david
# fully avoided shell script, i hope the temp file issue is fixed
#
# Revision 1.15 2004/03/22 19:13:18 david
# eliminated shell script, security issue
#
# Revision 1.14 2004/02/27 19:26:06 david
# fixed bug: CAN-2004-0108
#
# Revision 1.13 2003/02/23 19:48:16 david
# unified redundant code which generates data file
#
# Revision 1.12 2003/01/26 20:41:48 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.11 2002/03/24 15:18:26 david
# added
#
# Revision 1.10 2002/03/04 20:23:43 david
# fixed whole day functionality
#
# Revision 1.9 2002/03/04 18:36:37 david
# grid feature implemented
#
# Revision 1.8 2002/03/03 19:45:19 david
# added parameters to create_gnuplot_file()
#
# Revision 1.7 2001/03/30 16:42:26 sarrep
# Fixed bug about _last_time, (mangled graph)
#
# Revision 1.6 2001/03/17 17:30:10 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
proc sag_prepare_datafile {l} {
global sar sar_data_path sag_if_archive_uncompressed sag_if_out_tokens \
sag_opt_whole_day sag_if_last_time sar_elim fngr_tmpdir
set sag_if_last_time ""
set fp [open "|$sar -$l -f $sag_if_archive_uncompressed" "r"]
set fgrname "$fngr_tmpdir/data.$l"
set fpgr [open $fgrname w]
set nlines 0
# if needed set starting time
if { 0 != $sag_opt_whole_day } {
set sag_if_last_time "00:00"
if {"" != $sag_if_out_tokens($l)} {
puts $fpgr [sag_if__output_zero_metrics $sag_if_last_time $l]
} else {
puts $fpgr [sag_if__output_zero_metrics_$l $sag_if_last_time]
}
}
while {[gets $fp line] != -1} {
if {(1 == [string match \[0-9\]* $line]) && (0 == [string match *$sar_elim($l)* $line])} {
if {"" != $sag_if_out_tokens($l)} {
set n [sag_if_proc_line_generic $l $fpgr "$line"]
} else {
set n [sag_if_proc_line_$l $fpgr "$line"]
}
incr nlines $n
}
}
## make closing remark if necessary
# finishing whole day
if { 0 != $sag_opt_whole_day } {
if {"" != $sag_if_out_tokens($l)} {
puts $fpgr [sag_if__output_zero_metrics $sag_if_last_time $l]
} else {
puts $fpgr [sag_if__output_zero_metrics_$l $sag_if_last_time]
}
if {"" != $sag_if_out_tokens($l)} {
puts $fpgr [sag_if__output_zero_metrics "23:59" $l]
} else {
puts $fpgr [sag_if__output_zero_metrics_$l "23:59"]
}
}
catch {close $fp}
catch {close $fpgr}
unset fp fpgr line
return [list $nlines $fgrname]
}
#
# generic draw function
# Parameter:
# l - graph letter other values are parameters
#
proc sag_draw {l} {
global sag_if_archive isag_title sh sar grep sar_data_path gnuplot \
sag_gr_scale val_cur val_max view_n sag_if_cmd xlabel sag_if_out_tokens \
ylabel y2label plotstr has_negative \
sag_if_last_time sag_opt_grid sag_opt_whole_day fngr_tmpdir last_graph
if {$sag_if_archive == ""} {
err_msg "Error" "No data source selected for: $view_n($l)"
return
}
wm title . "$isag_title: $view_n($l)"
set prepared [sag_prepare_datafile $l]
set nlines [lindex $prepared 0]
set fgrname [lindex $prepared 1]
# at least two lines of data
if {$nlines > 1} {
set_cur_max $l
if {1 == $has_negative($l)} {
set yrange "\[-$val_cur($l):$val_cur($l)\]"
} else {
set yrange "\[0:$val_cur($l)\]"
}
set fngr "$fngr_tmpdir/draw.$l"
create_gnuplot_file tkcanvas tk $fngr "$view_n($l)" \
"$xlabel" \
"$ylabel($l)" $y2label($l) \
$yrange \
[strrep "$plotstr($l)" __FNGR__ $fgrname] $sag_opt_grid
exec $gnuplot $fngr.gp
source $fngr.tk
gnuplot .graph.canv
file delete $fngr.gp
file delete $fngr.tk
file delete $fngr
} else {
.graph.canv delete all
err_msg "Datafile: $sag_if_archive" "No data to show"
.graph.canv delete all
}
file delete $fgrname
unset nlines
}
# $Source: /var/CVSROOT/cvs/i-sag/isag/draw.m4,v $
###############################################################################
# Performance Data Processing and Drawing functions
# proces line functions
#
# $Id: sag.save_graph.m4,v 1.3 2003/02/23 21:07:41 david Exp $
# $State: Exp $
# $Log: sag.save_graph.m4,v $
# Revision 1.3 2003/02/23 21:07:41 david
# first prototype of sag
#
# Revision 1.2 2003/02/23 19:48:16 david
# unified redundant code which generates data file
#
# Revision 1.1 2003/01/26 20:41:49 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.9 2002/03/24 15:18:26 david
# added
#
# Revision 1.8 2002/03/04 20:23:26 david
# fixed whole day functionality
#
# Revision 1.7 2001/07/30 18:06:25 sarrep
# Fixed one debug print. It was on wrong place.
#
# Revision 1.6 2001/03/30 16:42:26 sarrep
# Fixed bug about _last_time, (mangled graph)
#
# Revision 1.5 2001/03/17 17:30:23 sarrep
# CVSizing, unified headers of each element file
#
# Revision 1.4 2001/03/17 16:55:28 sarrep
# LINUX RESTART zeroes all counters.
#
#
###############################################################################
proc sag_save_graph {} {
global sag_if_archive isag_title sh sar grep sar_data_path gnuplot \
sag_gr_scale val_cur val_max view_n sag_if_cmd xlabel sag_if_out_tokens \
ylabel y2label plotstr has_negative \
sag_if_last_time sag_opt_grid sag_opt_whole_day last_graph fngr_tmpdir
set l $last_graph
if {$sag_if_archive == ""} {
# out_msg "Error" "No data source selected for: $view_n($l)"
return
}
set prepared [sag_prepare_datafile $l]
set nlines [lindex $prepared 0]
set fgrname [lindex $prepared 1]
# at least two lines of data
if {$nlines > 1} {
# set_cur_max $l
if {$val_cur($l) != 0} {
if {1 == $has_negative($l)} {
set yrange "\[-$val_cur($l):$val_cur($l)\]"
} else {
set yrange "\[0:$val_cur($l)\]"
}
} else {
set yrange ""
}
set fngr "$fngr_tmpdir/jpeg.$l"
create_gnuplot_file jpeg jpg $fngr "$view_n($l)" \
"$xlabel" \
"$ylabel($l)" $y2label($l) \
$yrange \
[strrep "$plotstr($l)" __FNGR__ $fgrname] $sag_opt_grid
exec $gnuplot $fngr.gp
file delete $fngr.gp
file delete $fngr
set filename [tk_getSaveFile -title "Save Picture" \
-initialfile [string map { / _ } $sag_if_archive].$l.jpg \
-filetypes {{{JPEG Images} {.jpg}} {{All files} *}} ]
if { "" != $filename } {
file rename -force $fngr.jpg $filename
} else {
file delete $fngr.jpg
}
} else {
.graph.canv delete all
err_msg "Datafile: $sag_if_archive" "No data to show"
}
file delete "$fgrname"
unset nlines
}
# $Source: /var/CVSROOT/cvs/i-sag/common/sag.save_graph.m4,v $
###############################################################################
# $Id: isag_cfg_file.m4,v 1.10 2004/03/22 19:39:14 david Exp $
# $State: Exp $
#
# $Log: isag_cfg_file.m4,v $
# Revision 1.10 2004/03/22 19:39:14 david
# fully avoided shell script, i hope the temp file issue is fixed
#
# Revision 1.9 2004/03/22 19:13:18 david
# eliminated shell script, security issue
#
# Revision 1.8 2004/02/27 19:53:28 david
# hide temporary files
#
# Revision 1.7 2004/02/27 19:26:06 david
# fixed bug: CAN-2004-0108
#
# Revision 1.6 2003/01/26 20:41:48 david
# partially renamed variables, 1st implementation of "Save Graph"
#
# Revision 1.5 2002/03/04 20:21:51 david
# make new end line
#
# Revision 1.4 2002/03/04 18:36:37 david
# grid feature implemented
#
# Revision 1.3 2001/03/17 17:30:19 sarrep
# CVSizing, unified headers of each element file
#
#
#
###############################################################################
if {[file isfile $isag_cfg_file] == 1} {
source $isag_cfg_file
if {"" != $last_graph} {
if {$val_max($last_graph) > 0} {
.graph.scale configure -to 0 \
-from $val_max($last_graph)
set sag_gr_scale $val_cur($last_graph)
}
}
}
if { "" != $sag_latest_file } {
catch { set_file $sag_latest_file }
}
#
# Finishing a program and writting of config file
#
proc exit_program {} {
global isag_cfg_file prog_swtch val_max val_cur last_graph \
sag_opt_whole_day sag_opt_grid \
fngr_tmpdir
set fp [open $isag_cfg_file w]
foreach l $prog_swtch {
puts $fp "set val_max($l) $val_max($l)"
puts $fp "set val_cur($l) $val_cur($l)"
}
if {$last_graph == ""} {
puts $fp "set last_graph \"\""
} else {
puts $fp "set last_graph $last_graph"
}
puts $fp "set sag_opt_whole_day $sag_opt_whole_day"
puts $fp "set sag_opt_grid $sag_opt_grid"
close $fp
file delete -force -- "$fngr_tmpdir"
destroy .
exit
}
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag_cfg_file.m4,v $
# $Source: /var/CVSROOT/cvs/i-sag/isag/isag.m4,v $
|