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
|
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004 Ian Berry |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| cacti: a php-based graphing solution |
+-------------------------------------------------------------------------+
| Most of this code has been designed, written and is maintained by |
| Ian Berry. See about.php for specific developer credit. Any questions |
| or comments regarding this code should be directed to: |
| - iberry@raxnet.net |
+-------------------------------------------------------------------------+
| - raXnet - http://www.raxnet.net/ |
+-------------------------------------------------------------------------+
*/
/* tab information */
$tabs = array(
"general" => "General",
"path" => "Paths",
"poller" => "Poller",
"export" => "Graph Export",
"visual" => "Visual",
"authentication" => "Authentication");
$tabs_graphs = array(
"general" => "General",
"thumbnail" => "Graph Thumbnails",
"tree" => "Tree View Mode",
"preview" => "Preview Mode",
"list" => "List View Mode",
"fonts" => "Graph Fonts (RRDtool 1.2.x and Above)");
/* setting information */
$settings = array(
"path" => array(
"dependent_header" => array(
"friendly_name" => "Required Tool Paths",
"method" => "spacer",
),
"path_snmpwalk" => array(
"friendly_name" => "snmpwalk Binary Path",
"description" => "The path to your snmpwalk binary.",
"method" => "textbox",
"max_length" => "255"
),
"path_snmpget" => array(
"friendly_name" => "snmpget Binary Path",
"description" => "The path to your snmpget binary.",
"method" => "textbox",
"max_length" => "255"
),
"path_snmpbulkwalk" => array(
"friendly_name" => "snmpbulkwalk Binary Path",
"description" => "The path to your snmpbulkwalk binary.",
"method" => "textbox",
"max_length" => "255"
),
"path_snmpgetnext" => array(
"friendly_name" => "snmpgetnext Binary Path",
"description" => "The path to your snmpgetnext binary.",
"method" => "textbox",
"max_length" => "255"
),
"path_rrdtool" => array(
"friendly_name" => "RRDTool Binary Path",
"description" => "The path to the rrdtool binary.",
"method" => "textbox",
"max_length" => "255"
),
"path_rrdtool_default_font" => array(
"friendly_name" => "RRDTool Default Font Path",
"description" => "The path to the rrdtool default true type font for version 1.2 and above.",
"method" => "textbox",
"max_length" => "255"
),
"path_php_binary" => array(
"friendly_name" => "PHP Binary Path",
"description" => "The path to your PHP binary file (may require a php recompile to get this file).",
"method" => "textbox",
"max_length" => "255"
),
"logging_header" => array(
"friendly_name" => "Logging",
"method" => "spacer",
),
"path_cactilog" => array(
"friendly_name" => "Cacti Log File Path",
"description" => "The path to your Cacti log file (if blank, defaults to <path_cacti>/log/cacti.log)",
"method" => "textbox",
"default" => $config["base_path"] . "/log/cacti.log",
"max_length" => "255"
),
"pollerpaths_header" => array(
"friendly_name" => "Alternate Poller Path",
"method" => "spacer",
),
"path_cactid" => array(
"friendly_name" => "Cactid Poller File Path",
"description" => "The path to Cactid binary.",
"method" => "textbox",
"max_length" => "255"
)
),
"general" => array(
"logging_header" => array(
"friendly_name" => "Event Logging",
"method" => "spacer",
),
"log_destination" => array(
"friendly_name" => "Log File Destination",
"description" => "How will Cacti handle event logging.",
"method" => "drop_array",
"default" => 1,
"array" => $logfile_options,
),
"web_log" => array(
"friendly_name" => "Web Events",
"description" => "What Cacti website messages should be placed in the log.",
"method" => "checkbox_group",
"tab" => "general",
"items" => array(
"log_snmp" => array(
"friendly_name" => "Web SNMP Messages",
"default" => ""
),
"log_graph" => array(
"friendly_name" => "Web RRD Graph Syntax",
"default" => ""
),
"log_export" => array(
"friendly_name" => "Graph Export Messages",
"default" => ""
)
),
),
"poller_header" => array(
"friendly_name" => "Poller Specific Logging",
"method" => "spacer",
),
"log_verbosity" => array(
"friendly_name" => "Poller Logging Level",
"description" => "What level of detail do you want sent to the log file. WARNING: Leaving in any other status than NONE or LOW can exaust your disk space rapidly.",
"method" => "drop_array",
"default" => POLLER_VERBOSITY_LOW,
"array" => $logfile_verbosity,
),
"poller_log" => array(
"friendly_name" => "Poller Syslog/Eventlog Selection",
"description" => "If you are using the Syslog/Eventlog, What Cacti poller messages should be placed in the Syslog/Eventlog.",
"method" => "checkbox_group",
"tab" => "poller",
"items" => array(
"log_pstats" => array(
"friendly_name" => "Poller Statistics",
"default" => ""
),
"log_pwarn" => array(
"friendly_name" => "Poller Warnings",
"default" => ""
),
"log_perror" => array(
"friendly_name" => "Poller Errors",
"default" => "on"
)
),
),
"versions_header" => array(
"friendly_name" => "Required Tool Versions",
"method" => "spacer",
),
"snmp_version" => array(
"friendly_name" => "SNMP Utility Version",
"description" => "The type of SNMP you have installed. Required if you are using SNMP v2c or don't have embedded SNMP support in PHP.",
"method" => "drop_array",
"default" => "net-snmp",
"array" => $snmp_implimentations,
),
"rrdtool_version" => array(
"friendly_name" => "RRDTool Utility Version",
"description" => "The version of RRDTool that you have installed.",
"method" => "drop_array",
"default" => "rrd-1.0.x",
"array" => $rrdtool_versions,
),
"snmp_header" => array(
"friendly_name" => "SNMP Defaults",
"method" => "spacer",
),
"snmp_ver" => array(
"friendly_name" => "SNMP Version",
"description" => "Default SNMP version for all new hosts.",
"method" => "drop_array",
"default" => "Version 1",
"array" => $snmp_versions,
),
"snmp_community" => array(
"friendly_name" => "SNMP Community",
"description" => "Default SNMP read community for all new hosts.",
"method" => "textbox",
"default" => "public",
"max_length" => "100",
),
"snmp_username" => array(
"friendly_name" => "SNMP Username (v3)",
"description" => "The SNMP v3 Username for polling hosts.",
"method" => "textbox",
"default" => "",
"max_length" => "100",
),
"snmp_password" => array(
"friendly_name" => "SNMP Password (v3)",
"description" => "The SNMP v3 Password for polling hosts.",
"method" => "textbox_password",
"default" => "",
"max_length" => "100",
),
"snmp_timeout" => array(
"friendly_name" => "SNMP Timeout",
"description" => "Default SNMP timeout in milli-seconds.",
"method" => "textbox",
"default" => "500",
"max_length" => "100",
),
"snmp_port" => array(
"friendly_name" => "SNMP Port Number",
"description" => "Default UDP port to be used for SNMP Calls. Typically 161.",
"method" => "textbox",
"default" => "161",
"max_length" => "100",
),
"snmp_retries" => array(
"friendly_name" => "SNMP Retries",
"description" => "The number times the SNMP poller will attempt to reach the host before failing.",
"method" => "textbox",
"default" => "3",
"max_length" => "100",
),
"other_header" => array(
"friendly_name" => "Other Defaults",
"method" => "spacer",
),
"remove_verification" => array(
"friendly_name" => "Remove Verification",
"description" => "Prompt user before item deletion.",
"default" => "on",
"method" => "checkbox"
)
),
"export" => array(
"export_hdr_general" => array(
"friendly_name" => "General",
"method" => "spacer",
),
"export_type" => array(
"friendly_name" => "Export Method",
"description" => "Choose which export method to use.",
"method" => "drop_array",
"default" => "disabled",
"array" => array(
"disabled" => "Disabled (no exporting)",
"local" => "Classic (local path)",
"ftp_php" => "FTP (remote) - use php functions",
"ftp_ncftpput" => "FTP (remote) - use ncftpput",
"sftp_php" => "SFTP (remote) - use ssh php functions"
),
),
"export_presentation" => array(
"friendly_name" => "Presentation Method",
"description" => "Choose which presentation would you want for the html generated pages. If you choose classical presentation, the graphs will be in a only-one-html page. If you choose tree presentation, the graph tree architecture will be kept in the static html pages",
"method" => "drop_array",
"default" => "disabled",
"array" => array(
"classical" => "Classical Presentation",
"tree" => "Tree Presentation",
),
),
"export_tree_options" => array(
"friendly_name" => "Tree Settings",
"method" => "spacer",
),
"export_tree_isolation" => array(
"friendly_name" => "Tree Isolation",
"description" => "This setting determines if the entire tree is treated as a single hierarchy or as separate hierarchies. If they are treated separately, graphs will be isolated from one another.",
"method" => "drop_array",
"default" => "off",
"array" => array(
"off" => "Single Tree Representation",
"on" => "Multiple Tree Representation"
),
),
"export_user_id" => array(
"friendly_name" => "Effective User Name",
"description" => "The user name to utilize for establishing export permissions. This user name will be used to determine which graphs/tree's are exported. This setting works in conjunction with the current on/off behavior available within the current templates.",
"method" => "drop_sql",
"sql" => "SELECT id, username AS name FROM user_auth ORDER BY name",
"default" => "1"
),
"export_tree_expand_hosts" => array(
"friendly_name" => "Expand Tree Hosts",
"description" => "This settings determines if the tree hosts will be expanded or not. If set to expanded, each host will have a sub-folder containing either data templates or data query items.",
"method" => "drop_array",
"default" => "off",
"array" => array(
"off" => "Off",
"on" => "On"
),
),
"export_thumb_options" => array(
"friendly_name" => "Thumbnail Settings",
"method" => "spacer",
),
"export_default_height" => array(
"friendly_name" => "Thumbnail Height",
"description" => "The height of thumbnail graphs in pixels.",
"method" => "textbox",
"default" => "100",
"max_length" => "10"
),
"export_default_width" => array(
"friendly_name" => "Thumbnail Width",
"description" => "The width of thumbnail graphs in pixels.",
"method" => "textbox",
"default" => "300",
"max_length" => "10"
),
"export_num_columns" => array(
"friendly_name" => "Thumbnail Columns",
"description" => "The number of columns to use when displaying thumbnail graphs.",
"method" => "textbox",
"default" => "2",
"max_length" => "5"
),
"export_hdr_paths" => array(
"friendly_name" => "Paths",
"method" => "spacer",
),
"path_html_export" => array(
"friendly_name" => "Export Directory (both local and ftp)",
"description" => "This is the directory, either on the local system or on the remote system, that will contain the exported data.",
"method" => "textbox",
"max_length" => "255"
),
"export_temporary_directory" => array(
"friendly_name" => "Local Scratch Directory (ftp only)",
"description" => "This is the a directory that cacti will temporarily store output prior to sending to the remove site via ftp. The contents of this directory will be deleted after the ftp is completed.",
"method" => "textbox",
"max_length" => "255"
),
"export_hdr_timing" => array(
"friendly_name" => "Timing",
"method" => "spacer",
),
"export_timing" => array(
"friendly_name" => "Export timing",
"description" => "Choose when to export graphs.",
"method" => "drop_array",
"default" => "disabled",
"array" => array(
"disabled" => "Disabled",
"classic" => "Classic (export every x times)",
"export_hourly" => "Hourly at specified minutes",
"export_daily" => "Daily at specified time"
),
),
"path_html_export_skip" => array(
"friendly_name" => "Export Every x Times",
"description" => "If you don't want Cacti to export static images every 5 minutes, put another number here. For instance, 3 would equal every 15 minutes.",
"method" => "textbox",
"max_length" => "10"
),
"export_hourly" => array(
"friendly_name" => "Hourly at specified minutes",
"description" => "If you want Cacti to export static images on an hourly basis, put the minutes of the hour when to do that. Cacti assumes that you run the data gathering script every 5 minutes, so it will round your value to the one closest to its runtime. For instance, 43 would equal 40 minutes past the hour.",
"method" => "textbox",
"max_length" => "10"
),
"export_daily" => array(
"friendly_name" => "Daily at specified time",
"description" => "If you want Cacti to export static images on an daily basis, put here the time when to do that. Cacti assumes that you run the data gathering script every 5 minutes, so it will round your value to the one closest to its runtime. For instance, 21:23 would equal 20 minutes after 9 PM.",
"method" => "textbox",
"max_length" => "10"
),
"export_hdr_ftp" => array(
"friendly_name" => "FTP Options",
"method" => "spacer",
),
"export_ftp_sanitize" => array(
"friendly_name" => "Sanitize remote directory",
"description" => "Check this if you want to delete any existing files in the FTP remote directory. This option is in use only when using the PHP built-in ftp functions.",
"method" => "checkbox",
"max_length" => "255"
),
"export_ftp_host" => array(
"friendly_name" => "FTP Host",
"description" => "Denotes the host to upload your graphs by ftp.",
"method" => "textbox",
"max_length" => "255"
),
"export_ftp_port" => array(
"friendly_name" => "FTP Port",
"description" => "Communication port with the ftp server (leave empty for defaults). Default: 21.",
"method" => "textbox",
"max_length" => "255"
),
"export_ftp_passive" => array(
"friendly_name" => "Use passive mode",
"description" => "Check this if you want to connect in passive mode to the FTP server.",
"method" => "checkbox",
"max_length" => "255"
),
"export_ftp_user" => array(
"friendly_name" => "FTP User",
"description" => "Account to logon on the remote server (leave empty for defaults). Default: Anonymous.",
"method" => "textbox",
"max_length" => "255"
),
"export_ftp_password" => array(
"friendly_name" => "FTP Password",
"description" => "Password for the remote ftp account (leave empty for blank).",
"method" => "textbox_password",
"max_length" => "255"
)
),
"visual" => array(
"graphmgmt_header" => array(
"friendly_name" => "Graph Management",
"method" => "spacer",
),
"num_rows_graph" => array(
"friendly_name" => "Rows Per Page",
"description" => "The number of rows to display on a single page for graph management.",
"method" => "textbox",
"default" => "30",
"max_length" => "10"
),
"max_title_graph" => array(
"friendly_name" => "Maximum Title Length",
"description" => "The maximum number of characters to display for a graph title.",
"method" => "textbox",
"default" => "80",
"max_length" => "10"
),
"dataqueries_header" => array(
"friendly_name" => "Data Queries",
"method" => "spacer",
),
"max_data_query_field_length" => array(
"friendly_name" => "Maximum Field Length",
"description" => "The maximum number of characters to display for a data query field.",
"method" => "textbox",
"default" => "15",
"max_length" => "10"
),
"max_data_query_javascript_rows" => array(
"friendly_name" => "Maximum JavaScript Rows",
"description" => "The maximum number of data query rows to display with JavaScript on the 'New Graphs' page.",
"method" => "textbox",
"default" => "96",
"max_length" => "10"
),
"datasources_header" => array(
"friendly_name" => "Data Sources",
"method" => "spacer",
),
"num_rows_data_source" => array(
"friendly_name" => "Rows Per Page",
"description" => "The number of rows to display on a single page for data sources.",
"method" => "textbox",
"default" => "30",
"max_length" => "10"
),
"max_title_data_source" => array(
"friendly_name" => "Maximum Title Length",
"description" => "The maximum number of characters to display for a data source title.",
"method" => "textbox",
"default" => "45",
"max_length" => "10"
),
"devices_header" => array(
"friendly_name" => "Devices",
"method" => "spacer",
),
"num_rows_device" => array(
"friendly_name" => "Rows Per Page",
"description" => "The number of rows to display on a single page for devices.",
"method" => "textbox",
"default" => "30",
"max_length" => "10"
),
"logmgmt_header" => array(
"friendly_name" => "Log Management",
"method" => "spacer",
),
"num_rows_log" => array(
"friendly_name" => "Default Log File Tail Lines",
"description" => "How many lines of the Cacti log file to you want to tail, by default.",
"method" => "drop_array",
"default" => 50,
"array" => $log_tail_lines,
),
"log_refresh_interval" => array(
"friendly_name" => "Log File Tail Refresh",
"description" => "How many often do you want the Cacti log display to update.",
"method" => "drop_array",
"default" => 20,
"array" => $page_refresh_interval,
),
"fonts_header" => array(
"friendly_name" => "Default RRDtool 1.2 Fonts",
"method" => "spacer",
),
"title_size" => array(
"friendly_name" => "Title Font Size",
"description" => "The size of the font used for Graph Titles",
"method" => "textbox",
"default" => "12",
"max_length" => "10"
),
"title_font" => array(
"friendly_name" => "Title Font File",
"description" => "The font file to use for Graph Titles",
"method" => "textbox",
"max_length" => "100"
),
"legend_size" => array(
"friendly_name" => "Legend Font Size",
"description" => "The size of the font used for Graph Legend items",
"method" => "textbox",
"default" => "10",
"max_length" => "10"
),
"legend_font" => array(
"friendly_name" => "Legend Font File",
"description" => "The font file to be used for Graph Legend items",
"method" => "textbox",
"max_length" => "100"
),
"axis_size" => array(
"friendly_name" => "Axis Font Size",
"description" => "The size of the font used for Graph Axis",
"method" => "textbox",
"default" => "8",
"max_length" => "10"
),
"axis_font" => array(
"friendly_name" => "Axis Font File",
"description" => "The font file to be used for Graph Axis items",
"method" => "textbox",
"max_length" => "100"
),
"unit_size" => array(
"friendly_name" => "Unit Font Size",
"description" => "The size of the font used for Graph Units",
"method" => "textbox",
"default" => "8",
"max_length" => "10"
),
"unit_font" => array(
"friendly_name" => "Unit Font File",
"description" => "The size of the font used for Graph Unit items",
"method" => "textbox",
"max_length" => "100"
)
),
"poller" => array(
"poller_header" => array(
"friendly_name" => "General",
"method" => "spacer",
),
"poller_enabled" => array(
"friendly_name" => "Enabled",
"description" => "If you wish to stop the polling process, uncheck this box.",
"method" => "checkbox",
"default" => "on",
"tab" => "poller"
),
"poller_type" => array(
"friendly_name" => "Poller Type",
"description" => "The poller type to use. This setting will take effect at next polling interval.",
"method" => "drop_array",
"default" => 1,
"array" => $poller_options,
),
"concurrent_processes" => array(
"friendly_name" => "Maximum Concurrent Poller Processes",
"description" => "The number of concurrent processes to execute. Using a higher number when using cmd.php will improve performance. Performance improvements in cactid are best resolved with the threads parameter",
"method" => "textbox",
"default" => "1",
"max_length" => "10"
),
"cactid_header" => array(
"friendly_name" => "Cactid Specific Execution Parameters",
"method" => "spacer",
),
"max_threads" => array(
"friendly_name" => "Maximum Threads per Process",
"description" => "The maximum threads allowed per process. Using a higher number when using cactid will improve performance.",
"method" => "textbox",
"default" => "1",
"max_length" => "10"
),
"php_servers" => array(
"friendly_name" => "Number of PHP Script Servers",
"description" => "The number of concurrent script server processes to run per Cactid process. Settings between 1 and 10 are accepted. This parameter will help if you are running several threads and script server scripts.",
"method" => "textbox",
"default" => "1",
"max_length" => "10"
),
"script_timeout" => array(
"friendly_name" => "Script and Script Server Timeout Value",
"description" => "The maximum time that Cacti will wait on a script to complete. This timeout value is in seconds",
"method" => "textbox",
"default" => "25",
"max_length" => "10"
),
"max_get_size" => array(
"friendly_name" => "The Maximum SNMP OID's Per SNMP Get Request",
"description" => "The maximum number of snmp get OID's to issue per snmp request. Increasing this value speeds poller performance over slow links. The maximum value is 60 OID's.",
"method" => "textbox",
"default" => "10",
"max_length" => "10"
),
"availability_header" => array(
"friendly_name" => "Poller Host Availability Settings",
"method" => "spacer",
),
"availability_method" => array(
"friendly_name" => "Downed Host Detection",
"description" => "The method Cacti will use to determine if a host is available for polling. NOTE: It is recommended that, at a minimum, SNMP always be selected.",
"method" => "drop_array",
"default" => AVAIL_SNMP,
"array" => $availability_options,
),
"ping_method" => array(
"friendly_name" => "Ping Type",
"description" => "The type of ping packet to sent. NOTE: ICMP requires that the Cacti Service ID have root privilages in Unix.",
"method" => "drop_array",
"default" => PING_UDP,
"array" => $ping_methods,
),
"ping_timeout" => array(
"friendly_name" => "Ping Timeout Value",
"description" => "The timeout value to use for host ICMP and UDP pinging. This host SNMP timeout value applies for SNMP pings.",
"method" => "textbox",
"default" => "400",
"max_length" => "10"
),
"ping_retries" => array(
"friendly_name" => "Ping Retry Count",
"description" => "The number of times Cacti will attempt to ping a host before failing.",
"method" => "textbox",
"default" => "1",
"max_length" => "10"
),
"updown_header" => array(
"friendly_name" => "Host Up/Down Settings",
"method" => "spacer",
),
"ping_failure_count" => array(
"friendly_name" => "Failure Count",
"description" => "The number of polling intervals a host must be down before logging an error and reporting host as down.",
"method" => "textbox",
"default" => "2",
"max_length" => "10"
),
"ping_recovery_count" => array(
"friendly_name" => "Recovery Count",
"description" => "The number of polling intervals a host must remain up before returning host to an up status and issuing a notice.",
"method" => "textbox",
"default" => "3",
"max_length" => "10"
)
),
"authentication" => array(
"general_header" => array(
"friendly_name" => "General",
"method" => "spacer",
),
"global_auth" => array(
"friendly_name" => "Use Cacti's Builtin Authentication",
"description" => "By default Cacti handles user authentication, which allows you to create users and give them rights to different areas within Cacti. You can optionally turn this off if you are using other other means of authentication.",
"method" => "checkbox",
"default" => "on",
"tab" => "authentication"
),
"ldap_enabled" => array(
"friendly_name" => "Use LDAP Authentication",
"description" => "This will allow users to use their LDAP credentials with cacti.",
"method" => "checkbox",
"tab" => "authentication"
),
"guest_user" => array(
"friendly_name" => "Guest User",
"description" => "The name of the guest user for viewing graphs; is \"guest\" by default.",
"method" => "textbox",
"default" => "guest",
"max_length" => "100"
),
"ldap_header" => array(
"friendly_name" => "LDAP Settings",
"method" => "spacer",
),
"ldap_server" => array(
"friendly_name" => "LDAP Server",
"description" => "The dns hostname or ip address of the server you wish to tie authentication from.",
"method" => "textbox",
"max_length" => "100"
),
"ldap_dn" => array(
"friendly_name" => "LDAP DN",
"description" => "This is the Distinguished Name syntax, such as <username>@win2kdomain.lcl.",
"method" => "textbox",
"max_length" => "100"
),
"ldap_template" => array(
"friendly_name" => "LDAP Cacti Template User",
"description" => "This is the user that cacti will use as a template for new LDAP users.",
"method" => "textbox",
"max_length" => "100"
)
)
);
$settings_graphs = array(
"general" => array(
"default_rra_id" => array(
"friendly_name" => "Default RRA",
"description" => "The default RRA to use when thumbnail graphs are not being displayed or when 'Thumbnail Timespan' is set to '0'.",
"method" => "drop_sql",
"sql" => "select id,name from rra order by timespan",
"default" => "1"
),
"default_view_mode" => array(
"friendly_name" => "Default View Mode",
"description" => "Which mode you want displayed when you visit 'graph_view.php'",
"method" => "drop_array",
"array" => $graph_views,
"default" => "1"
),
"default_timespan" => array(
"friendly_name" => "Default Graph View Timespan",
"description" => "The default timespan you wish to be displayed when you display graphs",
"method" => "drop_array",
"array" => $graph_timespans,
"default" => GT_LAST_DAY
),
"timespan_sel" => array(
"friendly_name" => "Display Graph View Timespan Selector",
"description" => "Choose if you want the time span selection box to be displayed.",
"method" => "checkbox",
"default" => "on"
),
"default_date_format" => array(
"friendly_name" => "Graph Date Display Format",
"description" => "The date format to use for graphs",
"method" => "drop_array",
"array" => $graph_dateformats,
"default" => GD_Y_MO_D
),
"default_datechar" => array(
"friendly_name" => "Graph Date Separator",
"description" => "The date separator to be used for graphs",
"method" => "drop_array",
"array" => $graph_datechar,
"default" => GDC_SLASH
),
"page_refresh" => array(
"friendly_name" => "Page Refresh",
"description" => "The number of seconds between automatic page refreshes.",
"method" => "textbox",
"default" => "300",
"max_length" => "10"
)
),
"thumbnail" => array(
"default_height" => array(
"friendly_name" => "Thumbnail Height",
"description" => "The height of thumbnail graphs in pixels.",
"method" => "textbox",
"default" => "100",
"max_length" => "10"
),
"default_width" => array(
"friendly_name" => "Thumbnail Width",
"description" => "The width of thumbnail graphs in pixels.",
"method" => "textbox",
"default" => "300",
"max_length" => "10"
),
"num_columns" => array(
"friendly_name" => "Thumbnail Columns",
"description" => "The number of columns to use when displaying thumbnail graphs.",
"method" => "textbox",
"default" => "2",
"max_length" => "5"
),
"thumbnail_sections" => array(
"friendly_name" => "Thumbnail Sections",
"description" => "Which sections of Cacti thumbnail graphs should be used for.",
"method" => "checkbox_group",
"items" => array(
"thumbnail_section_preview" => array(
"friendly_name" => "Preview Mode",
"default" => "on"
),
"thumbnail_section_tree_1" => array(
"friendly_name" => "Tree View (Single Pane)",
"default" => "on"
),
"thumbnail_section_tree_2" => array(
"friendly_name" => "Tree View (Dual Pane)",
"default" => ""
)
)
)
),
"tree" => array(
"default_tree_id" => array(
"friendly_name" => "Default Graph Tree",
"description" => "The default graph tree to use when displaying graphs in tree mode.",
"method" => "drop_sql",
"sql" => "select id,name from graph_tree order by name",
"default" => "0"
),
"default_tree_view_mode" => array(
"friendly_name" => "Default Tree View Mode",
"description" => "The default mode that will be used when viewing tree mode.",
"method" => "drop_array",
"array" => $graph_tree_views,
"default" => "2"
),
"default_dual_pane_width" => array(
"friendly_name" => "Dual Pane Tree Width",
"description" => "When choosing dual pane Tree View, what width should the tree occupy in pixels.",
"method" => "textbox",
"max_length" => "5",
"default" => "200"
),
"expand_hosts" => array(
"friendly_name" => "Expand Hosts",
"description" => "Choose whether to expand the graph templates used for a host on the dual pane tree.",
"method" => "checkbox",
"default" => ""
)
),
"preview" => array(
"preview_graphs_per_page" => array(
"friendly_name" => "Graphs Per-Page",
"description" => "The number of graphs to display on one page in preview mode.",
"method" => "textbox",
"default" => "10",
"max_length" => "5"
)
),
"list" => array(
"list_graphs_per_page" => array(
"friendly_name" => "Graphs Per-Page",
"description" => "The number of graphs to display on one page in list view mode.",
"method" => "textbox",
"default" => "30",
"max_length" => "5"
)
),
"fonts" => array(
"title_size" => array(
"friendly_name" => "Title Font Size",
"description" => "The size of the font used for Graph Titles",
"method" => "textbox",
"default" => "12",
"max_length" => "10"
),
"title_font" => array(
"friendly_name" => "Title Font File",
"description" => "The font file to use for Graph Titles",
"method" => "textbox",
"max_length" => "100"
),
"legend_size" => array(
"friendly_name" => "Legend Font Size",
"description" => "The size of the font used for Graph Legend items",
"method" => "textbox",
"default" => "10",
"max_length" => "10"
),
"legend_font" => array(
"friendly_name" => "Legend Font File",
"description" => "The font file to be used for Graph Legend items",
"method" => "textbox",
"max_length" => "100"
),
"axis_size" => array(
"friendly_name" => "Axis Font Size",
"description" => "The size of the font used for Graph Axis",
"method" => "textbox",
"default" => "8",
"max_length" => "10"
),
"axis_font" => array(
"friendly_name" => "Axis Font File",
"description" => "The font file to be used for Graph Axis items",
"method" => "textbox",
"max_length" => "100"
),
"unit_size" => array(
"friendly_name" => "Unit Font Size",
"description" => "The size of the font used for Graph Units",
"method" => "textbox",
"default" => "8",
"max_length" => "10"
),
"unit_font" => array(
"friendly_name" => "Unit Font File",
"description" => "The size of the font used for Graph Unit items",
"method" => "textbox",
"max_length" => "100"
)
)
);
?>
|