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
|
<?xml version = '1.0' encoding = 'ISO-8859-1'?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<!-- $Id: stats.xml,v 1.2 2007/07/18 12:36:16 ea Exp $ -->
<chapter id="statistic-module">
<title>Stats module</title>
<para>
Stats and reports are essential for companies.
On the basis of stats, information can be evaluated and rated,
and eventually informed decisions can be made.
</para>
<para>
A stats module should meet a multitude of requirements:
</para>
<para>
<itemizedlist>
<listitem>
<para>
Various OTRS modules are to be evaluated,
</para>
</listitem>
<listitem>
<para>
the user permission settings of the respective installation should be
considered,
</para>
</listitem>
<listitem>
<para>
it should be able to generate complex statistics,
</para>
</listitem>
<listitem>
<para>
configuration of stats should be easy and quick,
</para>
</listitem>
<listitem>
<para>
performance should be high,
</para>
</listitem>
<listitem>
<para>
and a number of output variants should be supported.
</para>
</listitem>
</itemizedlist>
</para>
<para>
The stats module tries to meet all these requirements. The core
feature is a GUI which allows to configure stats with the click
of a mouse.
</para>
<para>
Statistical elements, i.e. files which supplement the functionalities of the
stats module for specific requirements, can be integrated to model complex
stats.
</para>
<para>
All requirements concerning the evaluation of personal data have been
considered. It is, for instance, not possible to directly evaluate
the activities of individual agents in the standard configuration.
</para>
<para>
All things considered, the stats module enables OTRS users a quick
and easy evaluation of the activities on their system.
</para>
<sect1 id="stats-usage" >
<title>Handling of the module by the agent</title>
<para>
As soon as the stats module has been installed and configured
successfully by the OTRS admin, the navigation
bar of every agent with read and/or write rights displays
the additional module link "Stats".
</para>
<para>
<screenshot>
<screeninfo>The stats module</screeninfo>
<graphic fileref="screenshots/stats-icon.png" scale="40" srccredit="stats-icon - Screenshot" />
</screenshot>
</para>
<para>
After the link has been activated, various action links for the stats
module are shown in the navigation bar.
</para>
<para>
<itemizedlist>
<listitem>
<para>
"Overview"
</para>
<para>
is also shown automatically if the module link "Stats"
is chosen
</para>
</listitem>
<listitem>
<para>
"New"
</para>
<para>
rw rights required
</para>
</listitem>
<listitem>
<para>
"Import"
</para>
<para>
rw rights required
</para>
</listitem>
<listitem>
<para>
"Preferences"
</para>
<para>
OTRS user interface for personal settings
</para>
</listitem>
</itemizedlist>
</para>
<sect2 id="stats-overview" >
<title>Overview</title>
<para>
A list of all pre-configured stats the agent can use.
</para>
<para>
The easiest way to access the overview is to select the "Stat"
link and then the action link "Overview" in the navigation bar. The
stats overview is called up automatically when the module
link "Stats" in the navigation bar is chosen.
</para>
<para>
<screenshot>
<screeninfo>Overview with standard stats</screeninfo>
<graphic fileref="screenshots/stats-overview.png" scale="40" srccredit="stats-overview - Screenshot" />
</screenshot>
</para>
<para>
The following information is provided about the stats listed
in the overview:
</para>
<para>
<itemizedlist>
<listitem>
<para>
"Stat#"
</para>
<para>
the unique stat number
</para>
</listitem>
<listitem>
<para>
"Title"
</para>
<para>
the stat title
</para>
</listitem>
<listitem>
<para>
"Object"
</para>
<para>
Object used for generating the stat. In the case of a static stat
no object is displayed as no dynamic object is used for the
generation.
</para>
</listitem>
<listitem>
<para>
"Description"
</para>
<para>
Excerpt of the description
</para>
</listitem>
</itemizedlist>
</para>
<para>
A results display can be found above the list. It provides
information about the number of accessible stats. If the
overview covers more than one page, the agent can browse
through the different pages.
</para>
<para>
The agents can sort the stats according to their needs
with the blue "up" and "down" icons in the headline.
</para>
<para>
To generate a stat the right one is chosen by clicking the
link with the stat number which leads to the "View" user interface.
</para>
<para>
A few sample stats are imported when the stats module
is used for the first time.
</para>
</sect2>
<sect2 id="stats-viewing-generating">
<title>Generate and view stats</title>
<para>
The view user interface is supposed to provide the agent with an
overview of the stat's pre-configuration.
</para>
<para>
The agents can perform configurations within the range of the
pre-configuration. The originator of a stat configuration can determine
the degree to which the stat generation can be influenced. The most extreme
examples of this would be agents who cannot effect any changes or can
change all attributes, respectively.
</para>
<para>
<screenshot id="stats-view-screenshot" >
<screeninfo>Stat view</screeninfo>
<graphic fileref="screenshots/stats-view.png" scale="40" srccredit="stats-view - Screenshot" />
</screenshot>
</para>
<para>
The page shows the following:
</para>
<para>
<itemizedlist>
<listitem>
<para>
the menu links
</para>
<para>
<itemizedlist>
<listitem>
<para>
"Back"
</para>
<para>
Link back to the starting point
</para>
</listitem>
<listitem>
<para>
"Edit"
</para>
<para>
Link to the edit user interface of the stat
(rw rights required)
</para>
</listitem>
<listitem>
<para>
"Delete"
</para>
<para>
Delete a stat (rw rights required)
</para>
</listitem>
<listitem>
<para>
"Export Config"
</para>
<para>
Export a stat configuration via file download
(rw rights required)
</para>
<para>
Usage: export and import functions allow for the convenient
creation and testing of stats on test systems and subsequent
easy integration into the production system.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
Meta data (grey block on the right)
</para>
<para>
Provides information about the stat originators. Information
is provided about who created the stat and when as well
as who last changed it.
</para>
</listitem>
<listitem>
<para>
The stat data itself
</para>
<para>
can be found in the central block of the user interface.
</para>
</listitem>
</itemizedlist>
</para>
<para>
In the following, details to the stat input are provided as this input
contains the core information.
</para>
<para>
General information is provided first.
</para>
<para>
<itemizedlist>
<listitem>
<para>
"Stat#"
</para>
<para>
The stat number
</para>
</listitem>
<listitem>
<para>
"Title"
</para>
<para>
The stat title
</para>
</listitem>
<listitem>
<para>
"Object"
</para>
<para>
Object used for generating the stat
</para>
</listitem>
<listitem>
<para>
"Description"
</para>
<para>
The description provides more detailed information
about the intention of the
stat.
</para>
</listitem>
<listitem>
<para>
"Format"
</para>
<para>
Stat output format. Depending on the configuration, following output
formats can be chosen:
</para>
<para>
<itemizedlist>
<listitem>
<para>
"CSV" -> stat download in csv format
</para>
</listitem>
<listitem>
<para>
"Print" -> printable html or pdf table
</para>
</listitem>
<listitem>
<para>
Graph-lines
</para>
</listitem>
<listitem>
<para>
"Graph-bars"
</para>
</listitem>
<listitem>
<para>
"Graph-hbars"
</para>
</listitem>
<listitem>
<para>
"Graph-points"
</para>
</listitem>
<listitem>
<para>
"Graph-lines-points"
</para>
</listitem>
<listitem>
<para>
"Graph-area"
</para>
</listitem>
<listitem>
<para>
"Graph-pie"
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
"Graphsize"
</para>
<para>
size which the graphic / chart may have
</para>
<para>
<itemizedlist>
<listitem>
<para>
indicated in pixels
</para>
<para>
this option is only given when the stat pre-configuration
allows for a chart.
</para>
</listitem>
<listitem>
<para>
All generally usable graphic sizes are configured by the
OTRS admin in the SysConfig. The agent can then pre-select all
relevant formats while configuring the stats.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
"Sum rows"
</para>
<para>
Indicates whether the stat is amended by a column whose cells
state the sums of the respective rows.
</para>
</listitem>
<listitem>
<para>
"Sum columns"
</para>
<para>
Indicates whether the stat is amended by a
row whose cells state the sum of the
respective columns
</para>
</listitem>
<listitem>
<para>
"Cache"
</para>
<para>
Indicates whether the generated stats are
cached in the file system.
</para>
</listitem>
<listitem>
<para>
"Valid"
</para>
<para>
The "valid" element is set "invalid" if a pre-configured statistic
is still being created or must not be used temoprarily for certain
reasons. Also the "Start" button in the bottom right of the
block is then no longer displayed. The stat can no longer
be generated.
</para>
</listitem>
<listitem>
<para>
"Exchange axis"
</para>
<para>
Using this function, the agent can exchange the x
and y axes (only when activated by the OTRS
administrator).
</para>
</listitem>
</itemizedlist>
</para>
<para>
The general information is followed by information about the stat
itself. There are two different stat views:
</para>
<para>
<itemizedlist>
<listitem>
<para>
Static stat view
</para>
<para>
Complex stats cannot be generated dynamically. Static stat generators
can be integrated into the stat module for that reason. They were
developed specifically for the particular evaluation.
The various job definitions result in different views.
</para>
<para>
<screenshot>
<screeninfo>Static stat view</screeninfo>
<graphic fileref="screenshots/stats-view-static.png" scale="40" srccredit="stats-view-static - Screenshot" />
</screenshot>
</para>
</listitem>
<listitem>
<para>
Dynamic stats can be displayed in two different ways:
</para>
<para>
<itemizedlist>
<listitem>
<para>
Unchangeable settings
</para>
<para>
In this case, the originator of the stat has not allowed
for alterations on the part of the agent who wants to
generate a stat.
</para>
</listitem>
<listitem>
<para>
changeable settings
</para>
<para>
The pre-configuration of such stats can be changed by the
agent.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
</itemizedlist>
</para>
<para>
<screenshot>
<screeninfo>Display of a changeable dynamic stat</screeninfo>
<graphic fileref="screenshots/stats-view-configurable.png" scale="40" srccredit="stats-view-configurable - Screenshot" />
</screenshot>
</para>
<para>
Pressing the "start" button at the bottom right end of the block is the
last simple step to generate a stat. There are two possible reasons if
the "start" button is not displayed:
</para>
<para>
<orderedlist numeration="arabic" >
<listitem>
<para>
The stat was set invalid and thus deactivated
</para>
</listitem>
<listitem>
<para>
The stat was not configured neatly and is therefore not yet
executable. In this case, the necessary information can be found
in the OTRS notification section (below the navigation bar).
</para>
</listitem>
</orderedlist>
</para>
<para>
If the settings on the view page are incorrect, the page is shown again
after the "start" button was pushed and information about which input
was incorrect is provided in the notification section.
</para>
</sect2>
<sect2 id="stats-modify-new">
<title>Edit - New</title>
<para>
Agents can call up the edit user interface of the stat module in two
different ways:
</para>
<para>
<orderedlist numeration="arabic">
<listitem>
<para>
via the "edit" menu link in the stat view to edit an existing stat
configuration.
</para>
</listitem>
<listitem>
<para>
via the "new" link in the navigation bar.
</para>
</listitem>
</orderedlist>
</para>
<para>
These links are only visible to agents with write rights for this module.
</para>
<para>
The stats are edited with a wizard in four steps:
</para>
<para>
<orderedlist numeration="arabic">
<listitem>
<para>
General information about the stat
</para>
</listitem>
<listitem>
<para>
Definition of the element for the x axis
</para>
</listitem>
<listitem>
<para>
Definition of the value series
</para>
</listitem>
<listitem>
<para>
Definition of the restrictions
</para>
</listitem>
</orderedlist>
</para>
<para>
Points 2-4 are only needed for the generation of dynamic stats. For a
static stat only the entering of general information in point 1 is required.
</para>
<para>
Information about how to handle the page is provided below the
input forms on all input user interfaces of the stats module.
</para>
<para>
If incorrect data is entered nevertheless, the previously processed user
interface is displayed again and amended by information about the
incorrect input.
This information can be found in the OTRS notification section. The next
input use interface is only displayed after the form has been filled out
correctly.
</para>
<para>
<orderedlist numeration="arabic" >
<listitem>
<para>
"Common specification"
</para>
<para>
The first page of the wizard is the input user interface "Common
specification". A great number of common specifications and settings
can be edited on this page.
</para>
<para>
<screenshot>
<screeninfo>Common specifications of the stat</screeninfo>
<graphic fileref="screenshots/stats-edit-general.png" scale="40" srccredit="stats-edit-general - Screenshot" />
</screenshot>
</para>
<para>
<itemizedlist>
<listitem>
<para>
"Title"
</para>
<para>
Should reflect the stat's purpose in a concise manner.
</para>
</listitem>
<listitem>
<para>
"Description"
</para>
<para>
More detailed information about the job definition, type of
configuration parameters etc.
</para>
</listitem>
<listitem>
<para>
"Dynamic object"
</para>
<para>
If the OTRS installation provides various dynamic
objects, one of them can be selected at this step.
The objects meet the requirements of the particular
modules.
</para>
</listitem>
<listitem>
<para>
"Static file"
</para>
<para>
A static file can be selected at this point. Usually this
selection is not shown as only static files which
are not yet assigned to any stats are displayed! If
"Static file" is displayed, however, it is important to
tick the option field and select a generation mode
(dynamic with a dynamic object or static with a file).
If a static file is selected, the input user interfaces 2-4
are not shown as the static file contains all configurations
required.
</para>
</listitem>
<listitem>
<para>
"Permission settings"
</para>
<para>
The permission settings facilitate a restriction of the groups (and
therefore agents) who can later view and generate the
preconfigured stats. Thus the various stats can be allocated to the
different departments and work groups needing them. It is possible
to allocate one stat to various groups.
</para>
<para>
Example 1: the "stats" group was selected. The stat is
viewable for all users having at least ro rights for the "stats"
group. As the base requirement for accessing the
view mode of the stat module in the default configuration is to
have ro rights in the
"stats" group, all users with permission to create statistics can view it in this
configuration.
</para>
<para>
Example 2: a group named "sales" was selected. All users with ro
rights for the "sales" group can
see the stat in the view mode and generate it. However, the stat will not be shown to other users
with permission to generate stats.
</para>
</listitem>
<listitem>
<para>
"Format" - output format of the stat
</para>
<para>
Depending on the configuration, the following output formats
can be chosen:
</para>
<para>
<itemizedlist>
<listitem>
<para>
"CSV" -> stat output in csv format
</para>
</listitem>
<listitem>
<para>
"Print" -> printable html or pdf table
</para>
</listitem>
<listitem>
<para>
"graph-lines"
</para>
</listitem>
<listitem>
<para>
"graph-bars"
</para>
</listitem>
<listitem>
<para>
"graph-hbars"
</para>
</listitem>
<listitem>
<para>
"graph-points"
</para>
</listitem>
<listitem>
<para>
"graph-lines-points"
</para>
</listitem>
<listitem>
<para>
"graph-area"
</para>
</listitem>
<listitem>
<para>
"graph-pie"
</para>
</listitem>
</itemizedlist>
</para>
<para>
More than one format can be selected.
</para>
</listitem>
<listitem>
<para>
"Graphsize"
</para>
<para>
Select which size the charts can have.
</para>
<para>
<itemizedlist>
<listitem>
<para>
indicated in pixels
</para>
</listitem>
<listitem>
<para>
this selection is only necessary if a graphical output format
has been chosen under "Format".
</para>
</listitem>
<listitem>
<para>
all graphic sizes that can generally be used are
defined by the OTRS admin in SysConfig. When
configuring the stat, the agent can pre-select all
relevant formats.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
"Sum rows"
</para>
<para>
If "yes" is chosen in the pulldown menu, the stat is amended by a
column whose cells display the sum of the respective row.
</para>
</listitem>
<listitem>
<para>
"Sum columns"
</para>
<para>
Indicates whether the stat is amended by a row whose
cells contain the sum of the respective column.
</para>
</listitem>
<listitem>
<para>
"Cache"
</para>
<para>
The generated stats are cached in the file system if "yes" is selected
in the pulldown menu. This saves computing power and time if
the stat is called up again.
</para>
<para>
This function should only be used if the stat's content is no longer
changing. Thorough checking is required before the caching
function is used.
</para>
<para>
Caching is automatically prevented in the following situations:
</para>
<para>
<itemizedlist>
<listitem>
<para>
if the stat contains no time designation values (new data is
added continuously)
</para>
</listitem>
<listitem>
<para>
if a time designation value points to the future
</para>
</listitem>
</itemizedlist>
</para>
<para>
If a cached stat is edited, all cached data is deleted.
</para>
</listitem>
<listitem>
<para>
"Valid"
</para>
<para>
The "valid" element is set "invalid" if a pre-configured stat is
still being created or must not be used temoprarily for certain
reasons. Also the "Start" button in the bottom right of the
block is no longer displayed. It is impossible to generate the
stat.
</para>
</listitem>
</itemizedlist>
</para>
<para>
By clicking the "Next" button the next user interface of the wizard is
called up.
</para>
</listitem>
<listitem>
<para>
"xaxis"
</para>
<para>
The "Common statements" section is followed by the "xaxis" form.
</para>
<para>
<screenshot>
<screeninfo>Definition of the element for the x axis.</screeninfo>
<graphic fileref="screenshots/stats-edit-xaxis.png" scale="40" srccredit="stats-edit-xaxis - Screenshot" />
</screenshot>
</para>
<para>
Configuration of the element used for the depiction of the x axis or,
if tables are used, of the column name chosen for the stat.
</para>
<para>
First of all, an element is selected using the option field. Then two or more
attributes of the element must be selected. If no attributes are selected, all
attributes are used including those added after the configuration of the stat.
</para>
<para>
If the "Fixed" setting is disabled, the agent generating the stat can change the
attributes of the respective element in the "View" user interface.
</para>
<para>
Time elements are different as time period and scale have to be stated.
</para>
<para>
Type and number of elements result from the used dynamic object
and vary depending on it.
</para>
<para>
If all input is correct, the "next" button leads to the "Value series"
form. It is also possible to go back to editing the "common statements"
section again.
</para>
</listitem>
<listitem>
<para>
"Value series"
</para>
<para>
In the third step of the stat pre-configuration the value series are
defined. They will lateron form the individual graphs of a diagramm
or the various series (tabular view).
</para>
<para>
<screenshot>
<screeninfo>Definition of the value series</screeninfo>
<graphic fileref="screenshots/stats-edit-valueseries.png" scale="40" srccredit="stats-edit-valueseries - Screenshot" />
</screenshot>
</para>
<para>
If an element is selected, each chosen attribute corresponds to a
value series.
</para>
<para>
<example id="stats-value-series-1">
<title>Definition of a value series - one element</title>
<para>
Element Queue:
</para>
<para>
<itemizedlist>
<listitem>
<para>
Value series 1 = Raw
</para>
</listitem>
<listitem>
<para>
Value series 2 = Junk
</para>
</listitem>
<listitem>
<para>
....
</para>
</listitem>
</itemizedlist>
</para>
</example>
</para>
<para>
If two elements are selected, each selected attribute of the first element
is combined with an attribute of the second element to form a value series.
</para>
<para>
<example id="stats-value-series-2" >
<title>Definition of a value series - two elements </title>
<para>
Element 1 queue and element 2 status:
</para>
<para>
<itemizedlist>
<listitem>
<para>
Value chain 1 = Raw - open
</para>
</listitem>
<listitem>
<para>
Value series 2 = Raw - successfully closed
</para>
</listitem>
<listitem>
<para>
Value series 3 = Junk - open
</para>
</listitem>
<listitem>
<para>
Value series 4 = Junk - successfully closed
</para>
</listitem>
</itemizedlist>
</para>
</example>
</para>
<para>
Selection of three or more elements does not make sense and is therefore
prevented by an error message.
</para>
<para>
Additionally the same conditions apply to the selection of the attributes
and the "Fixed" checkbox as to the "Xaxis" selection.
</para>
<para>
<itemizedlist>
<listitem>
<para>
If no attributes of the element are selected, all attributes are used
including those added after the configuration of the stat.
</para>
</listitem>
<listitem>
<para>
If the "Fixed" setting is disabled, the agent generating the
stat can change the attributes of the respective element.
</para>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
"Restrictions"
</para>
<para>
The fourth and last step of the pre-configuration is the definition
of restrictions. These restrictions facilitate to limit the results
and are comparable to entering data into a search window.
</para>
<para>
<screenshot>
<screeninfo>Definition of restrictions</screeninfo>
<graphic fileref="screenshots/stats-edit-restrictions.png" scale="40" srccredit="stats-edit-restrictions - Screenshot" />
</screenshot>
</para>
<para>
In quite a few cases, no restrictions at all must be set up.
</para>
<para>
After all restrictions are set, the pre-configuration of the stat is finished with
the "Finish" button and the "View" user interface is called up.
</para>
</listitem>
</orderedlist>
</para>
</sect2>
<sect2 id="stats-import">
<title>Import</title>
<para>
The import user interface can be accessed by chosing "Import" in the
navigation bar (rw rights required).
</para>
<para>
<screenshot>
<screeninfo>The import user interface</screeninfo>
<graphic fileref="screenshots/stats-import.png" scale="40" srccredit="stats-import - Screenshot" />
</screenshot>
</para>
<para>
Facilitates the import of stats and is, combined with the export function
of the module, a very handy functionality. Stats can be created
and tested conveniently on test systems and be imported into the production
system afterwards.
</para>
<para>
The import is effected by an easy file upload. The "view" user
interface of the imported stat is opened automatically afterwards.
</para>
</sect2>
</sect1>
<sect1 id="stats-managing-the-module">
<title>Administration of the stat module by the OTRS administrator</title>
<para>
This paragraph provides information about the tasks and possibilities
of the OTRS administrator dealing with the stat module.
</para>
<sect2 id="stats-permissions" >
<title>Permission settings, groups and queues</title>
<para>
No new queues and/or groups are created when the stat module is
installed.
</para>
<para>
The default configuration of the module registration gives all agents with
"stats" group permissions access to the stats module.
</para>
<para>
Access according to permission settings:
</para>
<para>
<itemizedlist>
<listitem>
<para>
"rw" -> permission to configurate stats
</para>
</listitem>
<listitem>
<para>
"ro" -> permission to generate pre-configured stats
</para>
</listitem>
</itemizedlist>
</para>
<para>
The OTRS administrator decides whether agents with the permission to
generate pre-configured stats are allocated ro rights in the "stats" group or
whether their respective groups are added in the module registration in SysConfig.
</para>
</sect2>
<sect2 id="stats-sysconfig" >
<title>SysConfig</title>
<para>
SysConfig groups
<link linkend="Framework:Core::Stats" >
Framework:Core::Stats
</link>
,
<link linkend="Framework:Core::Stats::Graph" >
Framework:Core::Stats::Graph
</link>and
<link linkend="Framework:Frontend::Agent::Stats" >
Framework:Frontend::Agent::Stats
</link>
contain all configuration parameters for the basic set-up of the stats module.
Moreover, the configuration parameter
<link linkend="Framework:Frontend::Agent::ModuleRegistration:Frontend::Module_AgentStats" >
$Self->{'Frontend::Module'}->{'AgentStats'}
</link>
controls the arrangement and registration of the modules and icons within the
stats module.
</para>
</sect2>
</sect1>
<sect1 id="stats-managing-the-stats-module-by-the-sysadmin" >
<title>Administration of the stats module by the system administrator</title>
<para>
Generally no system administrator is needed for the operation, configuration
and maintenance. However, a little background information for the system
administrator is given at this point.
</para>
<note>
<para>
File paths refer to subdirectories of the OTRS home
directory (in most cases<filename>/opt/otrs</filename>.
</para>
</note>
<sect2 id="stats-db-table" >
<title>Data base table</title>
<para>
All stat configurations are implemented and administrated in XML.
Therefore all stats configurations are stored in the database table
"xml_storage". Other modules whose content is presented in xml
format use this table as well.
</para>
</sect2>
<sect2 id="stats-filelist" >
<title>List of all files</title>
<para>
The following files are necessary for the stats module to work accurately.
</para>
<para>
<itemizedlist>
<listitem>
<para>
<filename>Kernel/System/Stats.pm</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Modules/AgentStats.pm</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/System/CSV.pm</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsOverview.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsDelete.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsEditSpecification.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsEditRestrictions.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsEditXaxis.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsEditValueSeries.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsImport.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsPrint.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/Output/HTML/Standard/AgentStatsView.dtl</filename>
</para>
</listitem>
<listitem>
<para>
<filename>Kernel/System/Stats/Dynamic/Ticket.pm</filename>
</para>
</listitem>
<listitem>
<para>
<filename>bin/mkStats.pl</filename>
</para>
</listitem>
</itemizedlist>
</para>
</sect2>
<sect2 id="stats-caching" >
<title>Caching</title>
<para>
Whether the results of a stat are to be cached or not can be defined in
the pre-configuration. Cached stat results are stored as files in the
<filename>var/tmp</filename>directory of the OTRS
installation (in most cases<filename>/opt/otrs/var/tmp</filename>).
</para>
<para>
Cached stats can be recognized by the "Stats" prefix.
</para>
<para>
If the data is lost, no major damage is caused.The next time the
stat is called up the stats module will not find the file any more
and thus will generate a new stat which will probably take
a little longer.
</para>
</sect2>
<sect2 id="stats-mkstats" >
<title>mkStats.pl</title>
<para>
This file is saved in the <filename>bin/</filename>directory.
It facilitates the generation of stats in the command line.
</para>
<para>
The following command line call is exemplary:
</para>
<para>
<programlisting>
bin> perl mkStats.pl -n 10004 -o /output/dir
</programlisting>
</para>
<para>
A stat from the stat configuration "Stat# 10004" is generated and saved
as csv in the <filename>/output/dir</filename>directory.
</para>
<para>
The generated stat can also be sent as an e-mail.
More information can be called up with the following call
</para>
<para>
<programlisting>
bin> perl mkStats.pl --help
</programlisting>
</para>
</sect2>
<sect2 id="stats-cron" >
<title>Automated stat generation - Cron</title>
<para>
It obviously does not really make sense to generate stats manually in
the command line as the stat module has a convenient graphical user
interface. However, generating stats manually does make sense when
combined with a Cronjob.
</para>
<para>
Imagine the following scenario: On every first of the month
the heads of department want to receive a stat for the past
month. By combining a cronjob and command line call the
stats can be sent to them automatically by e-mail.
</para>
</sect2>
<sect2 id="stats-static" >
<title>Static stats</title>
<para>
The stats module facilitates the generation of static stats. For every
static stat a file exists in which the stat content is precisely defined.
</para>
<para>
This way, very complex stats can be generated. The disadvantage
is that they are not particularly flexible.
</para>
<para>
The files are saved in the following directory
<filename>Kernel/System/Stats/Static/</filename>.
</para>
</sect2>
<sect2 id="stats-using-old-stats" >
<title>Using old static stats</title>
<para>
Standard OTRS versions 1.3 and 2.0 already facilitated the generation of stats.
Various stats for OTRS versions 1.3 and 2.0 which have been specially
developed to meet customers' requirements can be used in more recent versions too.
</para>
<para>The files must merely be moved from the
<filename>Kernel/System/Stats/</filename> path to
<filename>Kernel/System/Stats/Static/</filename>. Additionally
the package name of the respective script must be amended by
"::Static".
</para>
<para>
The following example shows how the first path is amended.
</para>
<para>
<programlisting>
package Kernel::System::Stats::AccountedTime;
</programlisting>
</para>
<para>
<programlisting>
package Kernel::System::Stats::Static::AccountedTime;
</programlisting>
</para>
</sect2>
<sect2 id="stats-default-stats" >
<title>Default stats</title>
<para>"It is not always necessary to reinvent the wheel..."
</para>
<para>
The stats module provides various default stats. Stats which are
interesting for all OTRS users will in future be added to the default stats
of the stats module package. Default stats are saved in the stats module
xml format in the<filename>scripts/test/sample/</filename> directory.
</para>
</sect2>
</sect1>
</chapter>
|