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 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
|
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| 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: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
if (!defined('VALID_HOST_FIELDS')) {
$string = api_plugin_hook_function('valid_host_fields', '(hostname|host_id|location|snmp_community|snmp_username|snmp_password|snmp_auth_protocol|snmp_priv_passphrase|snmp_priv_protocol|snmp_context|snmp_engine_id|snmp_version|snmp_port|snmp_timeout|external_id)');
define('VALID_HOST_FIELDS', $string);
}
$valid_host_fields = VALID_HOST_FIELDS;
/* If you update this, check that you have updated the installer */
$fields_snmp_item = array(
'snmp_version' => array(
'method' => 'drop_array',
'friendly_name' => __('SNMP Version'),
'description' => __('Choose the SNMP version for this host.'),
'on_change' => 'setSNMP()',
'value' => '|arg1:snmp_version|',
'default' => read_config_option('snmp_version'),
'array' => $snmp_versions
),
'snmp_community' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Community String'),
'description' => __('Fill in the SNMP read community for this device.'),
'value' => '|arg1:snmp_community|',
'default' => read_config_option('snmp_community'),
'max_length' => '100',
'size' => '20'
),
'snmp_security_level' => array(
'method' => 'drop_array',
'friendly_name' => __('SNMP Security Level'),
'description' => __('SNMP v3 Security Level to use when querying the device.'),
'on_change' => 'setSNMP()',
'value' => '|arg1:snmp_security_level|',
'form_id' => '|arg1:id|',
'default' => read_config_option('snmp_security_level'),
'array' => $snmp_security_levels
),
'snmp_auth_protocol' => array(
'method' => 'drop_array',
'friendly_name' => __('SNMP Auth Protocol (v3)'),
'description' => __('Choose the SNMPv3 Authorization Protocol.'),
'on_change' => 'setSNMP()',
'value' => '|arg1:snmp_auth_protocol|',
'default' => read_config_option('snmp_auth_protocol'),
'array' => $snmp_auth_protocols,
),
'snmp_username' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Username (v3)'),
'description' => __('SNMP v3 username for this device.'),
'value' => '|arg1:snmp_username|',
'default' => read_config_option('snmp_username'),
'max_length' => '50',
'size' => '40'
),
'snmp_password' => array(
'method' => 'textbox_password',
'friendly_name' => __('SNMP Password (v3)'),
'description' => __('SNMP v3 password for this device.'),
'value' => '|arg1:snmp_password|',
'default' => read_config_option('snmp_password'),
'max_length' => '50',
'size' => '40'
),
'snmp_priv_protocol' => array(
'method' => 'drop_array',
'friendly_name' => __('SNMP Privacy Protocol (v3)'),
'description' => __('Choose the SNMPv3 Privacy Protocol.'),
'on_change' => 'setSNMP()',
'value' => '|arg1:snmp_priv_protocol|',
'default' => read_config_option('snmp_priv_protocol'),
'array' => $snmp_priv_protocols,
),
'snmp_priv_passphrase' => array(
'method' => 'textbox_password',
'friendly_name' => __('SNMP Privacy Passphrase (v3)'),
'description' => __('Choose the SNMPv3 Privacy Passphrase.'),
'value' => '|arg1:snmp_priv_passphrase|',
'default' => read_config_option('snmp_priv_passphrase'),
'max_length' => '200',
'size' => '80'
),
'snmp_context' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Context (v3)'),
'description' => __('Enter the SNMP Context to use for this device.'),
'value' => '|arg1:snmp_context|',
'default' => '',
'max_length' => '64',
'size' => '40'
),
'snmp_engine_id' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Engine ID (v3)'),
'description' => __('Enter the SNMP v3 Engine Id to use for this device. Leave this field empty to use the SNMP Engine ID being defined per SNMPv3 Notification receiver.'),
'value' => '|arg1:snmp_engine_id|',
'default' => '',
'max_length' => '64',
'size' => '40'
),
'snmp_port' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Port'),
'description' => __('Enter the UDP port number to use for SNMP (default is 161).'),
'value' => '|arg1:snmp_port|',
'max_length' => '5',
'default' => read_config_option('snmp_port'),
'size' => '12'
),
'snmp_timeout' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Timeout'),
'description' => __('The maximum number of milliseconds Cacti will wait for an SNMP response (does not work with php-snmp support).'),
'value' => '|arg1:snmp_timeout|',
'max_length' => '8',
'default' => read_config_option('snmp_timeout'),
'size' => '12'
),
);
$fields_snmp_item_with_oids = $fields_snmp_item + array(
'max_oids' => array(
'method' => 'drop_array',
'friendly_name' => __('Maximum OIDs Per Get Request'),
'description' => __('The number of SNMP OIDs that can be obtained in a single SNMP Get request.'),
'value' => '|arg1:max_oids|',
'default' => read_config_option('max_get_size'),
'array' => array(
1 => __('%d OID', 1),
2 => __('%d OID\'s', 2),
3 => __('%d OID\'s', 3),
4 => __('%d OID\'s', 4),
5 => __('%d OID\'s', 5),
10 => __('%d OID\'s', 10),
15 => __('%d OID\'s', 15),
20 => __('%d OID\'s', 20),
25 => __('%d OID\'s', 25),
30 => __('%d OID\'s', 30),
35 => __('%d OID\'s', 35),
40 => __('%d OID\'s', 40),
45 => __('%d OID\'s', 45),
50 => __('%d OID\'s', 50),
55 => __('%d OID\'s', 55),
60 => __('%d OID\'s', 60)
)
),
'bulk_walk_size' => array(
'method' => 'drop_array',
'friendly_name' => __('Bulk Walk Maximum Repetitions'),
'description' => __('For SNMPv2 and SNMPv3 Devices, the SNMP Bulk Walk max-repetitions size. The default is to \'Auto Detect on Re-Index\'. For very large switches, high performance servers, Jumbo Frame Networks or for high latency WAN connections, increasing this value may increase poller performance. More data is packed into a single SNMP packet which can reduce data query run time. However, some devices may completely refuse to respond to packets with a max-repetition size which is set too large. This can be especially true for lower-powered IoT type devices or smaller embedded IT appliances. Special attention to the overall network path MTU should also be considered since setting a value which is too high could lead to packet fragmentation.'),
'value' => '|arg1:bulk_walk_size|',
'default' => '0',
'array' => array(
-1 => __('Auto Detect on Re-Index'),
0 => __('Auto Detect/Set on first Re-Index'),
1 => __('%d Repitition', 1),
2 => __('%d Repetitions', 2),
3 => __('%d Repetitions', 3),
4 => __('%d Repetitions', 4),
5 => __('%d Repetitions', 5),
10 => __('%d Repetitions', 10),
15 => __('%d Repetitions', 15),
20 => __('%d Repetitions', 20),
25 => __('%d Repetitions', 25),
30 => __('%d Repetitions', 30),
35 => __('%d Repetitions', 35),
40 => __('%d Repetitions', 40),
45 => __('%d Repetitions', 45),
50 => __('%d Repetitions', 50),
55 => __('%d Repetitions', 55),
60 => __('%d Repetitions', 60)
)
)
);
$fields_snmp_item_with_retry = $fields_snmp_item_with_oids + array(
'snmp_retries' => array(
'method' => 'textbox',
'friendly_name' => __('SNMP Retries'),
'description' => __('The maximum number of attempts to reach a device via an SNMP readstring prior to giving up.'),
'value' => '|arg1:snmp_retries|',
'max_length' => '8',
'default' => read_config_option('snmp_retries'),
'size' => '12'
),
);
/* file: profiles.php, action: edit */
$fields_profile_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this Data Storage and Polling Profile.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80',
'default' => __('New Profile')
),
'step' => array(
'method' => 'drop_array',
'friendly_name' => __('Polling Interval'),
'description' => __('The frequency that data will be collected from the Data Source?'),
'array' => $sampling_intervals,
'value' => '|arg1:step|',
'default' => read_config_option('poller_interval'),
),
'heartbeat' => array(
'method' => 'drop_array',
'friendly_name' => __('Heartbeat'),
'description' => __('How long can data be missing before RRDtool records unknown data. Increase this value if your Data Source is unstable and you wish to carry forward old data rather than show gaps in your graphs. This value is multiplied by the X-Files Factor to determine the actual amount of time.'),
'array' => $heartbeats,
'value' => '|arg1:heartbeat|',
'default' => (read_config_option('poller_interval') * 2),
),
'x_files_factor' => array(
'method' => 'textbox',
'friendly_name' => __('X-Files Factor'),
'description' => __('The amount of unknown data that can still be regarded as known.'),
'value' => '|arg1:x_files_factor|',
'max_length' => '10',
'size' => '7',
'default' => '0.5'
),
'consolidation_function_id' => array(
'method' => 'drop_multi',
'friendly_name' => __('Consolidation Functions'),
'description' => __('How data is to be entered in RRAs.'),
'array' => $consolidation_functions,
'sql' => 'SELECT consolidation_function_id AS id, data_source_profile_id FROM data_source_profiles_cf WHERE data_source_profile_id="|arg1:id|"',
),
'default' => array(
'method' => 'checkbox',
'friendly_name' => __('Default'),
'description' => __('Is this the default storage profile?'),
'value' => '|arg1:default|',
'default' => '',
),
'size' => array(
'method' => 'other',
'friendly_name' => __('RRDfile Size (in Bytes)'),
'description' => __('Based upon the number of Rows in all RRAs and the number of Consolidation Functions selected, the size of this entire in the RRDfile.'),
'value' => ''
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_profile' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: rra.php, action: edit */
$fields_profile_rra_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('How data is to be entered in RRAs.'),
'value' => '|arg1:name|',
'max_length' => '100',
'size' => '60',
'default' => __('New Profile RRA')
),
'steps' => array(
'method' => 'drop_array',
'friendly_name' => __('Aggregation Level'),
'description' => __('The number of samples required prior to filling a row in the RRA specification. The first RRA should always have a value of 1.'),
'array' => $aggregation_levels,
'value' => '|arg1:steps|',
'default' => read_config_option('poller_interval'),
),
'rows' => array(
'method' => 'textbox',
'friendly_name' => __('Rows'),
'description' => __('How many generations data is kept in the RRA.'),
'value' => '|arg1:rows|',
'max_length' => '12',
'size' => '10',
'default' => '600'
),
'timespan' => array(
'method' => 'drop_array',
'friendly_name' => __('Default Timespan'),
'description' => __('When viewing a Graph based upon the RRA in question, the default Timespan to show for that Graph.'),
'value' => '|arg1:timespan|',
'array' => $timespans
),
'retention' => array(
'method' => 'other',
'friendly_name' => __('Data Retention'),
'description' => __('Based upon the Aggregation Level, the Rows, and the Polling Interval the amount of data that will be retained in the RRA'),
'value' => ''
),
'size' => array(
'method' => 'other',
'friendly_name' => __('RRA Size (in Bytes)'),
'description' => __('Based upon the number of Rows and the number of Consolidation Functions selected, the size of this RRA in the RRDfile.'),
'value' => ''
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_rra' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: cdef.php, action: edit */
$fields_cdef_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this CDEF.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80'
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_cdef' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: color.php, action: edit */
$fields_color_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('The name of this Color.'),
'value' => '|arg1:name|',
'max_length' => '40',
'size' => '40'
),
'hex' => array(
'method' => 'textbox',
'friendly_name' => __('Hex Value'),
'description' => __('The hex value for this color; valid range: 000000-FFFFFF.'),
'value' => '|arg1:hex|',
'max_length' => '6',
'size' => '5'
),
'read_only' => array(
'method' => 'hidden',
'friendly_name' => __('Read Only'),
'description' => __('Any named color should be read only.'),
'value' => '|arg1:read_only|',
'default' => ''
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'hidden_name' => array(
'method' => 'hidden',
'value' => '|arg1:name|',
'max_length' => '40',
'size' => '40'
),
'save_component_color' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: data_input.php, action: edit */
$fields_data_input_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('Enter a meaningful name for this data input method.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80'
),
'type_id' => array(
'method' => 'drop_array',
'friendly_name' => __('Input Type'),
'description' => __('Choose the method you wish to use to collect data for this Data Input method.'),
'value' => '|arg1:type_id|',
'array' => $input_types_script,
),
'input_string' => array(
'method' => 'textarea',
'friendly_name' => __('Input String'),
'description' => __('The data that is sent to the script, which includes the complete path to the script and input sources in <> brackets.'),
'value' => '|arg1:input_string|',
'textarea_rows' => '4',
'textarea_cols' => '60',
'class' => 'textAreaNotes',
'max_length' => '255',
),
'whitelist_verification' => array(
'method' => 'other',
'value' => '',
'friendly_name' => __('White List Check'),
'description' => __('The result of the Whitespace verification check for the specific Input Method. If the Input String changes, and the Whitelist file is not update, Graphs will not be allowed to be created.')
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_data_input' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: data_input.php, action: field_edit (dropdown) */
$fields_data_input_field_edit_1 = array(
'data_name' => array(
'method' => 'drop_array',
'friendly_name' => __('Field [%s]', '|arg1:|'),
'description' => __('Choose the associated field from the %s field.', '|arg1:|'),
'value' => '|arg3:data_name|',
'array' => '|arg2:|',
)
);
/* file: data_input.php, action: field_edit (textbox) */
$fields_data_input_field_edit_2 = array(
'data_name' => array(
'method' => 'textbox',
'friendly_name' => __('Field [%s]', '|arg1:|'),
'description' => __('Enter a name for this %s field. Note: If using name value pairs in your script, for example: NAME:VALUE, it is important that the name match your output field name identically to the script output name or names.', '|arg1:|'),
'value' => '|arg2:data_name|',
'max_length' => '50',
'size' => '40'
)
);
/* file: data_input.php, action: field_edit */
$fields_data_input_field_edit = array(
'fname' => array(
'method' => 'textbox',
'friendly_name' => __('Friendly Name'),
'description' => __('Enter a meaningful name for this data input method.'),
'value' => '|arg1:name|',
'max_length' => '200',
'size' => '80'
),
'update_rra' => array(
'method' => 'checkbox',
'friendly_name' => __('Update RRDfile'),
'description' => __('Whether data from this output field is to be entered into the RRDfile.'),
'value' => '|arg1:update_rra|',
'default' => 'on',
'form_id' => '|arg1:id|'
),
'regexp_match' => array(
'method' => 'textbox',
'friendly_name' => __('Regular Expression Match'),
'description' => __('If you want to require a certain regular expression to be matched against input data, enter it here (preg_match format).'),
'value' => '|arg1:regexp_match|',
'max_length' => '200',
'size' => '80'
),
'allow_nulls' => array(
'method' => 'checkbox',
'friendly_name' => __('Allow Empty Input'),
'description' => __('Check here if you want to allow NULL input in this field from the user.'),
'value' => '|arg1:allow_nulls|',
'default' => '',
'form_id' => false
),
'type_code' => array(
'method' => 'textbox',
'friendly_name' => __('Special Type Code'),
'description' => __('If this field should be treated specially by host templates, indicate so here. Valid keywords for this field are %s', str_replace(")", "'", str_replace("(", "'", str_replace("|", ", ", $valid_host_fields))) ),
'value' => '|arg1:type_code|',
'max_length' => '40',
'size' => '20'
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'input_output' => array(
'method' => 'hidden',
'value' => '|arg2:|'
),
'sequence' => array(
'method' => 'hidden_zero',
'value' => '|arg1:sequence|'
),
'data_input_id' => array(
'method' => 'hidden_zero',
'value' => '|arg3:data_input_id|'
),
'save_component_field' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: data_templates.php, action: template_edit */
$fields_data_template_template_edit = array(
'template_name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('The name given to this data template.'),
'value' => '|arg1:name|',
'max_length' => '150',
'size' => '80'
),
'data_template_id' => array(
'method' => 'hidden_zero',
'value' => '|arg2:data_template_id|'
),
'data_template_data_id' => array(
'method' => 'hidden_zero',
'value' => '|arg2:id|'
),
'current_rrd' => array(
'method' => 'hidden_zero',
'value' => '|arg3:view_rrd|'
),
'save_component_template' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: (data_sources.php|data_templates.php), action: (ds|template)_edit */
if (db_table_exists('data_source_profiles')) {
$def_profile = db_fetch_cell('SELECT id
FROM data_source_profiles
ORDER BY `default`
DESC LIMIT 1');
} else {
$def_profile = '1';
}
$struct_data_source = array(
'name' => array(
'friendly_name' => __('Name'),
'method' => 'textbox',
'max_length' => '250',
'size' => '80',
'default' => '',
'description' => __('Choose a name for this data source. It can include replacement variables such as |host_description| or |query_fieldName|. For a complete list of supported replacement tags, please see the Cacti documentation.'),
'flags' => ''
),
'data_source_path' => array(
'friendly_name' => __('Data Source Path'),
'method' => 'textbox',
'max_length' => '255',
'size' => '80',
'default' => '',
'description' => __('The full path to the RRDfile.'),
'flags' => 'NOTEMPLATE'
),
'data_input_id' => array(
'friendly_name' => __('Data Input Method'),
'method' => 'drop_sql',
'sql' => 'SELECT id, name FROM data_input ORDER BY name',
'default' => '',
'none_value' => __('None'),
'description' => __('The script/source used to gather data for this data source.'),
'flags' => 'ALWAYSTEMPLATE'
),
'data_source_profile_id' => array(
'friendly_name' => __('Data Source Profile'),
'method' => 'drop_sql',
'description' => __('Select the Data Source Profile. The Data Source Profile controls polling interval, the data aggregation, and retention policy for the resulting Data Sources.'),
'sql' => 'SELECT "0" AS id, "' . __('External') . '" AS name UNION SELECT id, name FROM data_source_profiles ORDER BY name',
'default' => $def_profile,
'flags' => ''
),
'rrd_step' => array(
'friendly_name' => __('Step'),
'method' => 'hidden',
'max_length' => '10',
'size' => '10',
'default' => '300',
'description' => __('The amount of time in seconds between expected updates.'),
'flags' => ''
),
'active' => array(
'friendly_name' => __('Data Source Active'),
'method' => 'checkbox',
'default' => 'on',
'description' => __('Whether Cacti should gather data for this data source or not.'),
'flags' => ''
)
);
/* file: (data_sources.php|data_templates.php), action: (ds|template)_edit */
$struct_data_source_item = array(
'data_source_name' => array(
'friendly_name' => __('Internal Data Source Name'),
'method' => 'textbox',
'max_length' => '19',
'size' => '30',
'default' => 'ds',
'description' => __('Choose unique name to represent this piece of data inside of the RRDfile.')
),
'rrd_minimum' => array(
'friendly_name' => __('Minimum Value ("U" for No Minimum)'),
'method' => 'textbox',
'max_length' => '30',
'size' => '20',
'default' => '0',
'description' => __('The minimum value of data that is allowed to be collected.')
),
'rrd_maximum' => array(
'friendly_name' => __('Maximum Value ("U" for No Maximum)'),
'method' => 'textbox',
'max_length' => '30',
'size' => '20',
'default' => 'U',
'description' => __('The maximum value of data that is allowed to be collected.')
),
'data_source_type_id' => array(
'friendly_name' => __('Data Source Type'),
'method' => 'drop_array',
'array' => $data_source_types,
'default' => '',
'description' => __('How data is represented in the RRA.')
),
'rrd_heartbeat' => array(
'friendly_name' => __('Heartbeat'),
'method' => 'hidden',
'max_length' => '20',
'size' => '10',
'default' => '600',
'description' => __('The maximum amount of time that can pass before data is entered as \'unknown\'. (Usually 2x300=600)')
),
'data_input_field_id' => array(
'friendly_name' => __('Output Field'),
'method' => 'drop_sql',
'default' => '0',
'none_value' => __('Not Selected'),
'description' => __('When data is gathered, the data for this field will be put into this data source.')
)
);
/* file: grprint_presets.php, action: edit */
$fields_grprint_presets_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('Enter a name for this GPRINT preset, make sure it is something you recognize.'),
'value' => '|arg1:name|',
'max_length' => '50',
'size' => '40',
),
'gprint_text' => array(
'method' => 'textbox',
'friendly_name' => __('GPRINT Text'),
'description' => __('Enter the custom GPRINT string here.'),
'value' => '|arg1:gprint_text|',
'max_length' => '50',
'size' => '40',
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_gprint_presets' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: (graphs.php|graph_templates.php), action: (graph|template)_edit */
$struct_graph = array(
'general_header' => array(
'friendly_name' => __('Common Options'),
'collapsible' => 'true',
'method' => 'spacer',
),
'title' => array(
'friendly_name' => __('Title (--title)'),
'method' => 'textbox',
'max_length' => '255',
'default' => '',
'description' => __('The name that is printed on the graph. It can include replacement variables such as |host_description| or |query_fieldName|. For a complete list of supported replacement tags, please see the Cacti documentation.'),
'size' => '80'
),
'vertical_label' => array(
'friendly_name' => __('Vertical Label (--vertical-label)'),
'method' => 'textbox',
'max_length' => '255',
'default' => '',
'description' => __('The label vertically printed to the left of the graph.'),
'size' => '30'
),
'image_format_id' => array(
'friendly_name' => __('Image Format (--imgformat)'),
'method' => 'drop_array',
'array' => $image_types,
'default' => read_config_option('default_image_format'),
'description' => __('The type of graph that is generated; PNG, GIF or SVG. The selection of graph image type is very RRDtool dependent.')
),
'height' => array(
'friendly_name' => __('Height (--height)'),
'method' => 'textbox',
'max_length' => '50',
'default' => read_config_option('default_graph_height'),
'description' => __('The height (in pixels) of the graph area within the graph. This area does not include the legend, axis legends, or title.'),
'size' => '7'
),
'width' => array(
'friendly_name' => __('Width (--width)'),
'method' => 'textbox',
'max_length' => '50',
'default' => read_config_option('default_graph_width'),
'description' => __('The width (in pixels) of the graph area within the graph. This area does not include the legend, axis legends, or title.'),
'size' => '7'
),
'base_value' => array(
'friendly_name' => __('Base Value (--base)'),
'method' => 'textbox',
'max_length' => '50',
'default' => '1000',
'description' => __('Should be set to 1024 for memory and 1000 for traffic measurements.'),
'size' => '12'
),
'slope_mode' => array(
'friendly_name' => __('Slope Mode (--slope-mode)'),
'method' => 'checkbox',
'default' => 'on',
'description' => __('Using Slope Mode evens out the shape of the graphs at the expense of some on screen resolution.')
),
'scaling_header' => array(
'friendly_name' => __('Scaling Options'),
'collapsible' => 'true',
'method' => 'spacer',
),
'auto_scale' => array(
'friendly_name' => __('Auto Scale'),
'method' => 'checkbox',
'default' => 'on',
'description' => __('Auto scale the y-axis instead of defining an upper and lower limit. Note: if this is check both the Upper and Lower limit will be ignored.'),
'size' => '7'
),
'auto_scale_opts' => array(
'friendly_name' => __('Auto Scale Options'),
'method' => 'radio',
'default' => '2',
'description' => __('Use <br> --alt-autoscale to scale to the absolute minimum and maximum <br> --alt-autoscale-max to scale to the maximum value, using a given lower limit <br> --alt-autoscale-min to scale to the minimum value, using a given upper limit <br> --alt-autoscale (with limits) to scale using both lower and upper limits (RRDtool default) <br>'),
'items' => array(
0 => array(
'radio_value' => '1',
'radio_caption' => __('Use --alt-autoscale (ignoring given limits)')
),
1 => array(
'radio_value' => '2',
'radio_caption' => __('Use --alt-autoscale-max (accepting a lower limit)')
),
2 => array(
'radio_value' => '3',
'radio_caption' => __('Use --alt-autoscale-min (accepting an upper limit)')
),
3 => array(
'radio_value' => '4',
'radio_caption' => __('Use --alt-autoscale (accepting both limits, RRDtool default)')
)
)
),
'auto_scale_log' => array(
'friendly_name' => __('Logarithmic Scaling (--logarithmic)'),
'method' => 'checkbox',
'default' => '',
'on_change' => 'changeScaleLog()',
'description' => __('Use Logarithmic y-axis scaling')
),
'scale_log_units' => array(
'friendly_name' => __('SI Units for Logarithmic Scaling (--units=si)'),
'method' => 'checkbox',
'default' => '',
'description' => __('Use SI Units for Logarithmic Scaling instead of using exponential notation.<br> Note: Linear graphs use SI notation by default.')
),
'auto_scale_rigid' => array(
'friendly_name' => __('Rigid Boundaries Mode (--rigid)'),
'method' => 'checkbox',
'default' => '',
'description' => __('Do not expand the lower and upper limit if the graph contains a value outside the valid range.')
),
'upper_limit' => array(
'friendly_name' => __('Upper Limit (--upper-limit)'),
'method' => 'textbox',
'max_length' => '50',
'default' => '100',
'description' => __('The maximum vertical value for the graph.'),
'size' => '12'
),
'lower_limit' => array(
'friendly_name' => __('Lower Limit (--lower-limit)'),
'method' => 'textbox',
'max_length' => '255',
'default' => '0',
'description' => __('The minimum vertical value for the graph.'),
'size' => '12'
),
'grid_header' => array(
'friendly_name' => __('Grid Options'),
'collapsible' => 'true',
'method' => 'spacer',
),
'unit_value' => array(
'friendly_name' => __('Unit Grid Value (--unit/--y-grid)'),
'method' => 'textbox',
'max_length' => '50',
'default' => '',
'description' => __('Sets the exponent value on the Y-axis for numbers. Note: This option is deprecated and replaced by the --y-grid option. In this option, Y-axis grid lines appear at each grid step interval. Labels are placed every label factor lines.'),
'size' => '12'
),
'unit_exponent_value' => array(
'friendly_name' => __('Unit Exponent Value (--units-exponent)'),
'method' => 'textbox',
'max_length' => '50',
'default' => '',
'description' => __('What unit Cacti should use on the Y-axis. Use 3 to display everything in "k" or -6 to display everything in "u" (micro).'),
'size' => '12'
),
'unit_length' => array(
'friendly_name' => __('Unit Length (--units-length <length>)'),
'method' => 'textbox',
'max_length' => '50',
'default' => '',
'size' => '30',
'description' => __('How many digits should RRDtool assume the y-axis labels to be? You may have to use this option to make enough space once you start fiddling with the y-axis labeling.'),
),
'no_gridfit' => array(
'friendly_name' => __('No Gridfit (--no-gridfit)'),
'method' => 'checkbox',
'default' => '',
'description' => __('In order to avoid anti-aliasing blurring effects RRDtool snaps points to device resolution pixels, this results in a crisper appearance. If this is not to your liking, you can use this switch to turn this behavior off.<br><strong>Note: </strong>Gridfitting is turned off for PDF, EPS, SVG output by default.'),
),
'alt_y_grid' => array(
'friendly_name' => __('Alternative Y Grid (--alt-y-grid)'),
'method' => 'checkbox',
'default' => '',
'description' => __('The algorithm ensures that you always have a grid, that there are enough but not too many grid lines, and that the grid is metric. This parameter will also ensure that you get enough decimals displayed even if your graph goes from 69.998 to 70.001.<br><strong>Note: </strong>This parameter may interfere with --alt-autoscale options.'),
),
'axis_header' => array(
'friendly_name' => __('Axis Options'),
'collapsible' => 'true',
'method' => 'spacer',
),
'right_axis' => array(
'friendly_name' => __('Right Axis (--right-axis <scale:shift>)'),
'method' => 'textbox',
'max_length' => '20',
'default' => '',
'size' => '20',
'description' => __('A second axis will be drawn to the right of the graph. It is tied to the left axis via the scale and shift parameters.'),
),
'right_axis_label' => array(
'friendly_name' => __('Right Axis Label (--right-axis-label <string>)'),
'method' => 'textbox',
'max_length' => '200',
'default' => '',
'size' => '30',
'description' => __('The label for the right axis.'),
),
'right_axis_format' => array(
'friendly_name' => __('Right Axis Format (--right-axis-format <format>)'),
'method' => 'drop_sql',
'sql' => 'SELECT id, name FROM graph_templates_gprint WHERE gprint_text NOT LIKE "%\%s%" ORDER BY name',
'default' => '',
'none_value' => __('None'),
'description' => __('By default, the format of the axis labels gets determined automatically. If you want to do this yourself, use this option with the same %lf arguments you know from the PRINT and GPRINT commands.'),
),
'right_axis_formatter' => array(
'friendly_name' => __('Right Axis Formatter (--right-axis-formatter <formatname>)'),
'method' => 'drop_array',
'array' => $rrd_axis_formatters,
'default' => '0',
'none_value' => __('None'),
'description' => __('When you setup the right axis labeling, apply a rule to the data format. Supported formats include "numeric" where data is treated as numeric, "timestamp" where values are interpreted as UNIX timestamps (number of seconds since January 1970) and expressed using strftime format (default is "%Y-%m-%d %H:%M:%S"). See also --units-length and --right-axis-format. Finally "duration" where values are interpreted as duration in milliseconds. Formatting follows the rules of valstrfduration qualified PRINT/GPRINT.'),
),
'left_axis_formatter' => array(
'friendly_name' => __('Left Axis Formatter (--left-axis-formatter <formatname>)'),
'method' => 'drop_array',
'array' => $rrd_axis_formatters,
'default' => '0',
'none_value' => __('None'),
'description' => __('When you setup the left axis labeling, apply a rule to the data format. Supported formats include "numeric" where data is treated as numeric, "timestamp" where values are interpreted as UNIX timestamps (number of seconds since January 1970) and expressed using strftime format (default is "%Y-%m-%d %H:%M:%S"). See also --units-length. Finally "duration" where values are interpreted as duration in milliseconds. Formatting follows the rules of valstrfduration qualified PRINT/GPRINT.'),
),
'legend_header' => array(
'friendly_name' => __('Legend Options'),
'collapsible' => 'true',
'method' => 'spacer',
),
'auto_padding' => array(
'friendly_name' => __('Auto Padding'),
'method' => 'checkbox',
'default' => 'on',
'description' => __('Pad text so that legend and graph data always line up. Note: this could cause graphs to take longer to render because of the larger overhead. Also Auto Padding may not be accurate on all types of graphs, consistent labeling usually helps.')
),
'dynamic_labels' => array(
'friendly_name' => __('Dynamic Labels (--dynamic-labels)'),
'method' => 'checkbox',
'default' => '',
'description' => __('Draw line markers as a line.'),
),
'force_rules_legend' => array(
'friendly_name' => __('Force Rules Legend (--force-rules-legend)'),
'method' => 'checkbox',
'default' => '',
'description' => __('Force the generation of HRULE and VRULE legends.'),
),
'tab_width' => array(
'friendly_name' => __('Tab Width (--tabwidth <pixels>)'),
'method' => 'textbox',
'max_length' => '50',
'default' => '',
'size' => '10',
'description' => __('By default the tab-width is 40 pixels, use this option to change it.')
),
'legend_position' => array(
'friendly_name' => __('Legend Position (--legend-position=<position>)'),
'method' => 'drop_array',
'array' => $rrd_legend_position,
'none_value' => __('None'),
'description' => __('Place the legend at the given side of the graph.'),
),
'legend_direction' => array(
'friendly_name' => __('Legend Direction (--legend-direction=<direction>)'),
'method' => 'drop_array',
'array' => $rrd_legend_direction,
'none_value' => __('None'),
'description' => __('Place the legend items in the given vertical order.'),
),
);
/* file: (graphs.php|graph_templates.php), action: item_edit */
$struct_graph_item = array(
'graph_type_id' => array(
'friendly_name' => __('Graph Item Type'),
'method' => 'drop_array',
'array' => $graph_item_types,
'default' => '4',
'description' => __('How data for this item is represented visually on the graph.')
),
'task_item_id' => array(
'friendly_name' => __('Data Source'),
'method' => 'drop_sql',
'sql' => 'SELECT
CONCAT_WS("",case when host.description is null then "No Device" when host.description is not null then host.description end," - ",data_template_data.name," (",data_template_rrd.data_source_name,")") AS name,
data_template_rrd.id
FROM (data_template_data,data_template_rrd,data_local)
LEFT JOIN host ON (data_local.host_id=host.id)
WHERE data_template_rrd.local_data_id=data_local.id
AND data_template_data.local_data_id=data_local.id
ORDER BY name',
'default' => '0',
'none_value' => __('None'),
'description' => __('The data source to use for this graph item.')
),
'color_id' => array(
'friendly_name' => __('Color'),
'method' => 'drop_color',
'default' => '0',
'on_change' => 'changeColorId()',
'description' => __('The color to use for the legend.')
),
'alpha' => array(
'friendly_name' => __('Opacity/Alpha Channel'),
'method' => 'drop_array',
'default' => 'FF',
'array' => $graph_color_alpha,
'description' => __('The opacity/alpha channel of the color.')
),
'consolidation_function_id' => array(
'friendly_name' => __('Consolidation Function'),
'method' => 'drop_array',
'array' => $consolidation_functions,
'default' => '0',
'description' => __('How data for this item is represented statistically on the graph.')
),
'cdef_id' => array(
'friendly_name' => __('CDEF Function'),
'method' => 'drop_sql',
'sql' => 'SELECT id, name FROM cdef ORDER BY name',
'default' => '0',
'none_value' => __('None'),
'description' => __('A CDEF (math) function to apply to this item on the graph or legend.')
),
'vdef_id' => array(
'friendly_name' => __('VDEF Function'),
'method' => 'drop_sql',
'sql' => 'SELECT id, name FROM vdef ORDER BY name',
'default' => '0',
'none_value' => __('None'),
'description' => __('A VDEF (math) function to apply to this item on the graph legend.')
),
'shift' => array(
'friendly_name' => __('Shift Data'),
'method' => 'checkbox',
'default' => '',
'description' => __('Offset your data on the time axis (x-axis) by the amount specified in the \'value\' field.'),
),
'value' => array(
'friendly_name' => __('Value'),
'method' => 'textbox',
'max_length' => '255',
'size' => '80',
'default' => '',
'description' => __('[HRULE|VRULE]: The value of the graph item.<br/> [TICK]: The fraction for the tick line.<br/> [SHIFT]: The time offset in seconds.')
),
'gprint_id' => array(
'friendly_name' => __('GPRINT Type'),
'method' => 'drop_sql',
'sql' => 'SELECT id, name FROM graph_templates_gprint ORDER BY name',
'default' => '2',
'description' => __('If this graph item is a GPRINT, you can optionally choose another format here. You can define additional types under "GPRINT Presets".')
),
'textalign' => array(
'friendly_name' => __('Text Alignment' . ' (TEXTALIGN)'),
'method' => 'drop_array',
'value' => '|arg1:textalign|',
'array' => $rrd_textalign,
'default' => '',
'description' => __('All subsequent legend line(s) will be aligned as given here. You may use this command multiple times in a single graph. This command does not produce tabular layout.<br/><strong>Note: </strong>You may want to insert a <HR> on the preceding graph item.<br/> <strong>Note: </strong>A <HR> on this legend line will obsolete this setting!'),
),
'text_format' => array(
'friendly_name' => __('Text Format'),
'method' => 'textbox',
'max_length' => '255',
'size' => '80',
'default' => '',
'description' => __('Text that will be displayed on the legend for this graph item.')
),
'hard_return' => array(
'friendly_name' => __('Insert Hard Return'),
'method' => 'checkbox',
'default' => '',
'description' => __('Forces the legend to the next line after this item.')
),
'line_width' => array(
'friendly_name' => __('Line Width (decimal)'),
'method' => 'textbox',
'max_length' => '5',
'default' => '1.00',
'size' => '5',
'description' => __('In case LINE was chosen, specify width of line here. You must include a decimal precision, for example 2.00'),
),
'dashes' => array(
'friendly_name' => __('Dashes (dashes[=on_s[,off_s[,on_s,off_s]...]])'),
'method' => 'textbox',
'max_length' => '40',
'default' => '',
'size' => '30',
'description' => __('The dashes modifier enables dashed line style.'),
),
'dash_offset' => array(
'friendly_name' => __('Dash Offset (dash-offset=offset)'),
'method' => 'textbox',
'max_length' => '4',
'default' => '',
'size' => '4',
'description' => __('The dash-offset parameter specifies an offset into the pattern at which the stroke begins.'),
),
'sequence' => array(
'friendly_name' => __('Sequence'),
'method' => 'textbox',
'max_length' => '4',
'default' => '',
'size' => '4',
'description' => __('The dash-offset parameter specifies an offset into the pattern at which the stroke begins.'),
)
);
/* file: graph_templates.php, action: template_edit */
$fields_graph_template_template_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('The name given to this graph template.'),
'value' => '|arg1:name|',
'max_length' => '150',
'size' => '80'
),
'multiple' => array(
'method' => 'checkbox',
'friendly_name' => __('Multiple Instances'),
'description' => __('Check this checkbox if there can be more than one Graph of this type per Device.'),
'value' => '|arg1:multiple|',
'default' => '',
'form_id' => false
),
'test_source' => array(
'method' => 'checkbox',
'friendly_name' => __('Test Data Sources'),
'description' => __('Check this checkbox if you wish to test the Data Sources prior to their creation. With Test Data Sources enabled, if the Data Source does not return valid data, the Graph will not be created. This setting is important if you wish to have a more generic Device Template that can include more Graph Templates that can be selectively applied depending on the characteristics of the Device itself. Note: If you have a long running script as a Data Source, the time to create Graphs will be increased.'),
'value' => '|arg1:test_source|',
'default' => '',
'form_id' => false
),
'graph_template_id' => array(
'method' => 'hidden_zero',
'value' => '|arg2:graph_template_id|'
),
'graph_template_graph_id' => array(
'method' => 'hidden_zero',
'value' => '|arg2:id|'
),
'save_component_template' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: graph_templates.php, action: input_edit */
$fields_graph_template_input_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('Enter a name for this graph item input, make sure it is something you recognize.'),
'value' => '|arg1:name|',
'max_length' => '50',
'size' => '40',
),
'description' => array(
'method' => 'textarea',
'friendly_name' => __('Description'),
'description' => __('Enter a description for this graph item input to describe what this input is used for.'),
'value' => '|arg1:description|',
'textarea_rows' => '5',
'textarea_cols' => '40'
),
'column_name' => array(
'method' => 'drop_array',
'friendly_name' => __('Field Type'),
'description' => __('How data is to be represented on the graph.'),
'value' => '|arg1:column_name|',
'array' => '|arg2:|',
),
'graph_template_id' => array(
'method' => 'hidden_zero',
'value' => '|arg3:graph_template_id|'
),
'graph_template_input_id' => array(
'method' => 'hidden_zero',
'value' => '|arg3:id|'
),
'save_component_input' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: host.php, action: edit */
$fields_host_edit = array(
'host_gen_head' => array(
'method' => 'spacer',
'collapsible' => 'true',
'friendly_name' => __('General Device Options')
),
'description' => array(
'method' => 'textbox',
'friendly_name' => __('Description'),
'description' => __('Give this host a meaningful description.'),
'value' => '|arg1:description|',
'max_length' => '150',
),
'hostname' => array(
'method' => 'textbox',
'friendly_name' => __('Hostname'),
'description' => __('Fully qualified hostname or IP address for this device.'),
'value' => '|arg1:hostname|',
'max_length' => '100',
'size' => '60',
),
'location' => array(
'method' => 'drop_callback',
'friendly_name' => __('Location'),
'description' => __('The physical location of the Device. This free form text can be a room, rack location, etc.'),
'none_value' => __('None'),
'sql' => 'SELECT DISTINCT location AS id, location AS name FROM host ORDER BY location',
'action' => 'ajax_locations',
'id' => '|arg1:location|',
'value' => '|arg1:location|',
),
'poller_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Poller Association'),
'description' => __('Choose the Cacti Data Collector/Poller to be used to gather data from this Device.'),
'value' => '|arg1:poller_id|',
'default' => read_config_option('default_poller'),
'sql' => 'SELECT id, name FROM poller ORDER BY name',
),
'site_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Device Site Association'),
'description' => __('What Site is this Device associated with.'),
'value' => '|arg1:site_id|',
'none_value' => __('None'),
'default' => read_config_option('default_site'),
'sql' => 'SELECT id, name FROM sites ORDER BY name',
),
'host_template_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Device Template'),
'description' => __('Choose the Device Template to use to define the default Graph Templates and Data Queries associated with this Device.'),
'value' => '|arg1:host_template_id|',
'none_value' => __('None'),
'default' => read_config_option('default_template'),
'sql' => 'SELECT id, name FROM host_template ORDER BY name',
),
'device_threads' => array(
'method' => 'drop_array',
'friendly_name' => __('Number of Collection Threads'),
'description' => __('The number of concurrent threads to use for polling this device. This applies to the Spine poller only.'),
'value' => '|arg1:device_threads|',
'default' => read_config_option('device_threads'),
'array' => $device_threads
),
'disabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Disable Device'),
'description' => __('Check this box to disable all checks for this host.'),
'value' => '|arg1:disabled|',
'default' => '',
'form_id' => false
),
'host_snmp_head' => array(
'method' => 'spacer',
'friendly_name' => __('SNMP Options'),
),
) + $fields_snmp_item_with_oids + array(
'host_avail_head' => array(
'method' => 'spacer',
'friendly_name' => __('Availability/Reachability Options'),
'collapsible' => 'true',
),
'availability_method' => array(
'friendly_name' => __('Downed Device Detection'),
'description' => __('The method Cacti will use to determine if a host is available for polling. <br><i>NOTE: It is recommended that, at a minimum, SNMP always be selected.</i>'),
'on_change' => 'changeHostForm()',
'value' => '|arg1:availability_method|',
'method' => 'drop_array',
'default' => read_config_option('availability_method'),
'array' => $availability_options
),
'ping_method' => array(
'friendly_name' => __('Ping Method'),
'description' => __('The type of ping packet to sent. <br><i>NOTE: ICMP on Linux/UNIX requires root privileges.</i> <br><i>NOTE: TCP Ping Closed - Even if the tcp ping is not successful, the device can be considered UP.</i>'),
'on_change' => 'changeHostForm()',
'value' => '|arg1:ping_method|',
'method' => 'drop_array',
'default' => read_config_option('ping_method'),
'array' => $ping_methods
),
'ping_port' => array(
'method' => 'textbox',
'friendly_name' => __('Ping Port'),
'value' => '|arg1:ping_port|',
'description' => __('TCP or UDP port to attempt connection.'),
'default' => read_config_option('ping_port'),
'max_length' => '50',
'size' => '7'
),
'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',
'value' => '|arg1:ping_timeout|',
'default' => read_config_option('ping_timeout'),
'max_length' => '10',
'size' => '7'
),
'ping_retries' => array(
'friendly_name' => __('Ping Retry Count'),
'description' => __('After an initial failure, the number of ping retries Cacti will attempt before failing.'),
'method' => 'textbox',
'value' => '|arg1:ping_retries|',
'default' => read_config_option('ping_retries'),
'max_length' => '10',
'size' => '7'
),
'host_add_head' => array(
'method' => 'spacer',
'collapsible' => 'true',
'friendly_name' => __('Additional Options')
),
'notes' => array(
'method' => 'textarea',
'friendly_name' => __('Notes'),
'description' => __('Enter notes to this host.'),
'class' => 'textAreaNotes',
'value' => '|arg1:notes|',
'textarea_rows' => '5',
'textarea_cols' => '50'
),
'external_id' => array(
'friendly_name' => __('External ID'),
'description' => __('External ID for linking Cacti data to external monitoring systems.'),
'method' => 'textbox',
'value' => '|arg1:external_id|',
'default' => '',
'max_length' => '40',
'size' => '20'
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_host' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: host_templates.php, action: edit */
$fields_host_template_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this host template.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80'
),
'class' => array(
'method' => 'drop_array',
'friendly_name' => __('Class'),
'description' => __('A suitable Class for the Device Template.'),
'value' => '|arg1:class|',
'array' => $device_classes,
'default' => ''
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_template' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: data_queries.php, action: edit */
$fields_data_query_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A name for this data query.'),
'value' => '|arg1:name|',
'max_length' => '100',
'size' => '60'
),
'description' => array(
'method' => 'textbox',
'friendly_name' => __('Description'),
'description' => __('A description for this data query.'),
'value' => '|arg1:description|',
'max_length' => '255',
'size' => '80',
),
'xml_path' => array(
'method' => 'textbox',
'friendly_name' => __('XML Path'),
'description' => __('The full path to the XML file containing definitions for this data query.'),
'value' => '|arg1:xml_path|',
'default' => '<path_cacti>/resource/',
'max_length' => '255',
'size' => '80',
),
'data_input_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Data Input Method'),
'description' => __('Choose the input method for this Data Query. This input method defines how data is collected for each Device associated with the Data Query.'),
'value' => '|arg1:data_input_id|',
'sql' => 'SELECT id, name FROM data_input WHERE type_id IN(3,4,6) ORDER BY name',
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|',
),
'save_component_snmp_query' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: data_queries.php, action: item_edit */
$fields_data_query_item_edit = array(
'graph_template_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Graph Template'),
'description' => __('Choose the Graph Template to use for this Data Query Graph Template item.'),
'value' => '|arg1:graph_template_id|',
'sql' => 'SELECT DISTINCT gt.id, gt.name
FROM graph_templates AS gt
WHERE gt.id IN(
SELECT DISTINCT gti.graph_template_id
FROM (
SELECT DISTINCT graph_template_id, task_item_id
FROM graph_templates_item
WHERE local_graph_id=0
) AS gti
INNER JOIN (
SELECT id, data_template_id
FROM data_template_rrd AS dtr
WHERE dtr.local_data_id = 0
) AS dtr
ON gti.task_item_id=dtr.id
INNER JOIN (
SELECT DISTINCT data_template_id
FROM data_template_data AS dtd
WHERE local_data_id = 0
AND dtd.data_input_id IN (2,11,12)
) AS dtd
ON dtd.data_template_id=dtr.data_template_id
) ORDER BY gt.name',
),
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A name for this associated graph.'),
'value' => '|arg1:name|',
'max_length' => '100',
'size' => '60',
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'snmp_query_id' => array(
'method' => 'hidden_zero',
'value' => '|arg2:snmp_query_id|'
),
'graph_template_id_prev' => array(
'method' => 'hidden_zero',
'value' => '|arg1:graph_template_id|'
),
'save_component_snmp_query_item' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: tree.php, action: edit */
$fields_tree_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this graph tree.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80',
),
'sort_type' => array(
'method' => 'drop_array',
'friendly_name' => __('Sorting Type'),
'description' => __('Choose how items in this tree will be sorted.'),
'value' => '|arg1:sort_type|',
'array' => $tree_sort_types,
),
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Publish'),
'description' => __('Should this Tree be published for users to access?'),
'value' => '|arg1:enabled|',
'default' => 'on'
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'sequence' => array(
'method' => 'hidden',
'value' => '|arg1:sequence|'
),
'save_component_tree' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* file: user_admin.php, action: user_edit (host) */
$fields_user_user_edit_host = array(
'username' => array(
'method' => 'textbox',
'friendly_name' => __('User Name'),
'description' => __('The login name for this user.'),
'value' => '|arg1:username|',
'max_length' => '255',
'size' => '40',
),
'full_name' => array(
'method' => 'textbox',
'friendly_name' => __('Full Name'),
'description' => __('A more descriptive name for this user, that can include spaces or special characters.'),
'value' => '|arg1:full_name|',
'max_length' => '128',
'size' => 60
),
'email_address' => array(
'method' => 'textbox',
'friendly_name' => __('Email Address'),
'description' => __('An Email Address where the User can be reached.'),
'value' => '|arg1:email_address|',
'max_length' => '128',
'size' => 60
),
'password' => array(
'method' => 'textbox_password',
'friendly_name' => __('Password'),
'description' => __('Enter the password for this user twice. Remember that passwords are case sensitive!'),
'value' => '',
'max_length' => '255',
'size' => 60
),
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Enabled'),
'description' => __('Determines if user is able to login.'),
'value' => '|arg1:enabled|',
'default' => ''
),
'locked' => array(
'method' => 'checkbox',
'friendly_name' => __('Locked'),
'description' => __('Determines if the user account is locked.'),
'value' => '|arg1:locked|',
'default' => ''
),
'grp1' => array(
'friendly_name' => __('Account Options'),
'method' => 'checkbox_group',
'description' => __('Set any user account specific options here.'),
'items' => array(
'must_change_password' => array(
'value' => '|arg1:must_change_password|',
'friendly_name' => __('Must Change Password at Next Login'),
'form_id' => '|arg1:id|',
'default' => ''
),
'password_change' => array(
'value' => '|arg1:password_change|',
'friendly_name' => __('Change Password'),
'form_id' => '|arg1:id|',
'default' => 'on'
),
'graph_settings' => array(
'value' => '|arg1:graph_settings|',
'friendly_name' => __('Maintain Custom Graph and User Settings'),
'form_id' => '|arg1:id|',
'default' => 'on'
)
)
),
'grp2' => array(
'friendly_name' => __('Graph Options'),
'method' => 'checkbox_group',
'description' => __('Set any graph specific options here.'),
'items' => array(
'show_tree' => array(
'value' => '|arg1:show_tree|',
'friendly_name' => __('User Has Rights to Tree View'),
'form_id' => '|arg1:id|',
'default' => 'on'
),
'show_list' => array(
'value' => '|arg1:show_list|',
'friendly_name' => __('User Has Rights to List View'),
'form_id' => '|arg1:id|',
'default' => 'on'
),
'show_preview' => array(
'value' => '|arg1:show_preview|',
'friendly_name' => __('User Has Rights to Preview View'),
'form_id' => '|arg1:id|',
'default' => 'on'
)
)
),
'login_opts' => array(
'friendly_name' => __('Login Options'),
'method' => 'radio',
'default' => '1',
'description' => __('What to do when this user logs in.'),
'value' => '|arg1:login_opts|',
'items' => array(
0 => array(
'radio_value' => '1',
'radio_caption' => __('Show the page that user pointed their browser to.')
),
1 => array(
'radio_value' => '2',
'radio_caption' => __('Show the default console screen.')
),
2 => array(
'radio_value' => '3',
'radio_caption' => __('Show the default graph screen.')
)
)
),
'realm' => array(
'method' => 'drop_array',
'friendly_name' => __('Authentication Realm'),
'description' => __('Only used if you have LDAP or Web Basic Authentication enabled. Changing this to a non-enabled realm will effectively disable the user.'),
'value' => '|arg1:realm|',
'default' => 0,
'array' => $auth_realms,
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_user' => array(
'method' => 'hidden',
'value' => '1'
)
);
$export_types = array(
'host_template' => array(
'name' => __('Device Template'),
'title_sql' => 'SELECT name FROM host_template WHERE id=|id|',
'dropdown_sql' => 'SELECT id, name FROM host_template ORDER BY name'
),
'graph_template' => array(
'name' => __('Graph Template'),
'title_sql' => 'SELECT name FROM graph_templates WHERE id=|id|',
'dropdown_sql' => 'SELECT id, name FROM graph_templates ORDER BY name'
),
'data_template' => array(
'name' => __('Data Template'),
'title_sql' => 'SELECT name FROM data_template WHERE id=|id|',
'dropdown_sql' => 'SELECT id, name FROM data_template ORDER BY name'
),
'data_query' => array(
'name' => __('Data Query'),
'title_sql' => 'SELECT name FROM snmp_query WHERE id=|id|',
'dropdown_sql' => 'SELECT id, name FROM snmp_query ORDER BY name'
),
// 'automation_devices' => array(
// 'name' => __('Discovery Rules'),
// 'title_sql' => 'SELECT CONCAT(ht.name, " (", at.sysDescr, ")") AS name FROM automation_templates AS at INNER JOIN host_template AS ht ON ht.id=at.host_template WHERE at.id=|id|',
// 'dropdown_sql' => 'SELECT at.id, CONCAT(ht.name, " (", at.sysDescr, ")") AS name FROM automation_templates AS at INNER JOIN host_template AS ht ON ht.id=at.host_template ORDER BY name'
// ),
// 'automation_graphs' => array(
// 'name' => __('Graph Rules'),
// 'title_sql' => 'SELECT name FROM automation_graph_rules WHERE id=|id|',
// 'dropdown_sql' => 'SELECT id, name FROM automation_graph_rules ORDER BY name'
// ),
// 'automation_trees' => array(
// 'name' => __('Tree Rules'),
// 'title_sql' => 'SELECT name FROM automation_tree_rules WHERE id=|id|',
// 'dropdown_sql' => 'SELECT id, name FROM automation_tree_rules ORDER BY name'
// )
);
$fields_template_import = array(
'import_file' => array(
'friendly_name' => __('Import Template from Local File'),
'description' => __('If the XML file containing template data is located on your local machine, select it here.'),
'accept' => '.xml',
'method' => 'file'
),
'data_header' => array(
'friendly_name' => __('Data Source Overrides'),
'collapsible' => 'true',
'method' => 'spacer',
),
'import_data_source_profile' => array(
'friendly_name' => __('Data Source Profile'),
'method' => 'drop_sql',
'description' => __('Select the Data Source Profile. The Data Source Profile controls polling interval, the data aggregation, and retention policy for the resulting Data Sources.'),
'sql' => "SELECT id, name FROM data_source_profiles ORDER BY name",
'none_value' => __('Create New from Template'),
'value' => '',
'default' => '1'
),
'graph_header' => array(
'friendly_name' => __('Graph/Data Template Overrides'),
'collapsible' => 'true',
'method' => 'spacer',
),
'remove_orphans' => array(
'friendly_name' => __('Remove Orphaned Graph Items'),
'method' => 'checkbox',
'description' => __('If checked, Cacti will delete any Graph Items from both the Graph Template and associated Graphs that are not included in the imported Graph Template.'),
'value' => '',
'default' => ''
),
'replace_svalues' => array(
'friendly_name' => __('Replace Data Query Suggested Value Patterns'),
'method' => 'checkbox',
'description' => __('Replace Data Source and Graph Template Suggested Value Records for Data Queries. Graphs and Data Sources will take on new names after either a Data Query Reindex or by using the forced Replace Suggested Values process.'),
'value' => '',
'default' => ''
),
'image_format' => array(
'friendly_name' => __('Graph Template Image Format'),
'description' => __('The Image Format to be used when importing or updating Graph Templates.'),
'method' => 'drop_array',
'default' => read_config_option('default_image_format'),
'array' => $image_types,
),
'graph_height' => array(
'friendly_name' => __('Graph Template Height', 'pagkage'),
'description' => __('The Height to be used when importing or updating Graph Templates.'),
'method' => 'textbox',
'default' => read_config_option('default_graph_height'),
'size' => '5',
'max_length' => '5'
),
'graph_width' => array(
'friendly_name' => __('Graph Template Width'),
'description' => __('The Width to be used when importing or updating Graph Templates.'),
'method' => 'textbox',
'default' => read_config_option('default_graph_width'),
'size' => '5',
'max_length' => '5'
)
);
$fields_manager_edit = array(
'host_header' => array(
'method' => 'spacer',
'friendly_name' => __('General SNMP Entity Options'),
'collapsible' => 'true'
),
'description' => array(
'method' => 'textbox',
'friendly_name' => __('Description'),
'description' => __('Give this SNMP entity a meaningful description.'),
'value' => '|arg1:description|',
'max_length' => '250',
'size' => 80
),
'hostname' => array(
'method' => 'textbox',
'friendly_name' => __('Hostname'),
'description' => __('Fully qualified hostname or IP address for this device.'),
'value' => '|arg1:hostname|',
'max_length' => '250',
'size' => 80
),
'disabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Disable SNMP Notification Receiver'),
'description' => __('Check this box if you temporary do not want to send SNMP notifications to this host.'),
'value' => '|arg1:disabled|',
'default' => '',
'form_id' => false
),
'max_log_size' => array(
'method' => 'drop_array',
'friendly_name' => __('Maximum Log Size'),
'description' => __('Maximum number of day\'s notification log entries for this receiver need to be stored.'),
'value' => '|arg1:max_log_size|',
'default' => 31,
'array' => array_combine( range(1,31), range(1,31) )
),
'snmp_options_header' => array(
'method' => 'spacer',
'friendly_name' => __('SNMP Options'),
'collapsible' => 'true'
)
) + $fields_snmp_item + array(
'snmp_message_type' => array(
'friendly_name' => __('SNMP Message Type'),
'description' => __('SNMP traps are always unacknowledged. To send out acknowledged SNMP notifications, formally called "INFORMS", SNMPv2 or above will be required.'),
'method' => 'drop_array',
'value' => '|arg1:snmp_message_type|',
'default' => '1',
'array' => array(1 => 'NOTIFICATIONS', 2 => 'INFORMS')
),
'addition_header' => array(
'method' => 'spacer',
'friendly_name' => __('Additional Options'),
'collapsible' => 'true'
),
'notes' => array(
'method' => 'textarea',
'friendly_name' => __('Notes'),
'description' => __('Enter notes to this host.'),
'class' => 'textAreaNotes',
'value' => '|arg1:notes|',
'textarea_rows' => '5',
'textarea_cols' => '50'
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
)
);
# ------------------------------------------------------------
# Main Aggregate Parameters
# ------------------------------------------------------------
/* file: aggregate.php */
$struct_aggregate = array(
'title_format' => array(
'friendly_name' => __('Title'),
'description' => __('The new Title of the aggregated Graph.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:title_format|',
'size' => '80'
),
'gprint_prefix' => array(
'friendly_name' => __('Prefix'),
'description' => __('A Prefix for all GPRINT lines to distinguish e.g. different hosts.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:gprint_prefix|',
'size' => '40'
),
'gprint_format' => array(
'friendly_name' => __('Include Prefix Text'),
'description' => __('Include the source Graphs GPRINT Title Text with the Aggregate Graph(s).'),
'method' => 'checkbox',
'value' => '|arg1:gprint_format|',
'default' => ''
),
'aggregate_graph_type' => array(
'friendly_name' => __('Graph Type'),
'description' => __('Use this Option to create e.g. STACKed graphs.<br>AREA/STACK: 1st graph keeps AREA/STACK items, others convert to STACK<br>LINE1: all items convert to LINE1 items<br>LINE2: all items convert to LINE2 items<br>LINE3: all items convert to LINE3 items'),
'method' => 'drop_array',
'value' => '|arg1:aggregate_graph_type|',
'array' => $agg_graph_types,
'default' => GRAPH_ITEM_TYPE_STACK,
),
'aggregate_total' => array(
'friendly_name' => __('Totaling'),
'description' => __('Please check those Items that shall be totaled in the "Total" column, when selecting any totaling option here.'),
'method' => 'drop_array',
'value' => '|arg1:aggregate_total|',
'array' => $agg_totals,
'default' => AGGREGATE_TOTAL_NONE
),
'aggregate_total_type' => array(
'friendly_name' => __('Total Type'),
'description' => __('Which type of totaling shall be performed.'),
'method' => 'drop_array',
'value' => '|arg1:aggregate_total_type|',
'array' => $agg_totals_type,
'default' => AGGREGATE_TOTAL_TYPE_SIMILAR
),
'aggregate_total_prefix' => array(
'friendly_name' => __('Prefix for GPRINT Totals'),
'description' => __('A Prefix for all <strong>totaling</strong> GPRINT lines.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:aggregate_total_prefix|',
'size' => '40'
),
'aggregate_order_type' => array(
'friendly_name' => __('Reorder Type'),
'description' => __('Reordering of Graphs.'),
'method' => 'drop_array',
'value' => '|arg1:aggregate_order_type|',
'array' => $agg_order_types,
'default' => AGGREGATE_ORDER_NONE,
),
'graph_template_id' => array(
'method' => 'hidden',
'value' => '|arg1:graph_template_id|',
'default' => 0
)
);
$struct_aggregate_graph = array(
'spacer0' => array(
'friendly_name' => __('General Settings'),
'method' => 'spacer'
),
'title_format' => array(
'friendly_name' => __('Graph Name'),
'description' => __('Please name this Aggregate Graph.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:title_format|',
'size' => '80'
),
'template_propogation' => array(
'friendly_name' => __('Propagation Enabled'),
'description' => __('Is this to carry the template?'),
'method' => 'checkbox',
'default' => '',
'value' => '|arg1:template_propogation|'
),
'spacer1' => array(
'friendly_name' => __('Aggregate Graph Settings'),
'method' => 'spacer'
),
'gprint_prefix' => array(
'friendly_name' => __('Prefix'),
'description' => __('A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may use both Host as well as Data Query replacement variables in this prefix.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:gprint_prefix|',
'size' => '40'
),
'gprint_format' => array(
'friendly_name' => __('Include Prefix Text'),
'description' => __('Include the source Graphs GPRINT Title Text with the Aggregate Graph(s).'),
'method' => 'checkbox',
'value' => '|arg1:gprint_format|',
'default' => ''
),
'graph_type' => array(
'friendly_name' => __('Graph Type'),
'description' => __('Use this Option to create e.g. STACKed graphs.<br>AREA/STACK: 1st graph keeps AREA/STACK items, others convert to STACK<br>LINE1: all items convert to LINE1 items<br>LINE2: all items convert to LINE2 items<br>LINE3: all items convert to LINE3 items'),
'method' => 'drop_array',
'value' => '|arg1:graph_type|',
'array' => $agg_graph_types,
'default' => GRAPH_ITEM_TYPE_STACK,
),
'total' => array(
'friendly_name' => __('Totaling'),
'description' => __('Please check those Items that shall be totaled in the "Total" column, when selecting any totaling option here.'),
'method' => 'drop_array',
'value' => '|arg1:total|',
'array' => $agg_totals,
'default' => AGGREGATE_TOTAL_NONE,
'on_change' => 'changeTotals()',
),
'total_type' => array(
'friendly_name' => __('Total Type'),
'description' => __('Which type of totaling shall be performed.'),
'method' => 'drop_array',
'value' => '|arg1:total_type|',
'array' => $agg_totals_type,
'default' => AGGREGATE_TOTAL_TYPE_SIMILAR,
'on_change' => 'changeTotalsType()',
),
'total_prefix' => array(
'friendly_name' => __('Prefix for GPRINT Totals'),
'description' => __('A Prefix for all <strong>totaling</strong> GPRINT lines.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:total_prefix|',
'size' => '40'
),
'order_type' => array(
'friendly_name' => __('Reorder Type'),
'description' => __('Reordering of Graphs.'),
'method' => 'drop_array',
'value' => '|arg1:order_type|',
'array' => $agg_order_types,
'default' => AGGREGATE_ORDER_NONE,
),
'id' => array(
'method' => 'hidden',
'value' => '|arg1:id|',
'default' => 0
),
'local_graph_id' => array(
'method' => 'hidden',
'value' => '|arg1:local_graph_id|',
'default' => 0
),
'aggregate_template_id' => array(
'method' => 'hidden',
'value' => '|arg1:aggregate_template_id|',
'default' => 0
),
'graph_template_id' => array(
'method' => 'hidden',
'value' => '|arg1:graph_template_id|',
'default' => 0
)
);
$struct_aggregate_template = array(
'spacer0' => array(
'friendly_name' => __('General Settings'),
'method' => 'spacer'
),
'name' => array(
'friendly_name' => __('Aggregate Template Name'),
'description' => __('Please name this Aggregate Template.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:name|',
'size' => '80'
),
'graph_template_id' => array(
'friendly_name' => __('Source Graph Template'),
'description' => __('The Graph Template that this Aggregate Template is based upon.'),
'method' => 'drop_sql',
'value' => '|arg1:graph_template_id|',
'sql' => 'SELECT id, name FROM graph_templates ORDER BY name',
'default' => 0,
'none_value' => 'None'
),
'spacer1' => array(
'friendly_name' => __('Aggregate Template Settings'),
'method' => 'spacer'
),
'gprint_prefix' => array(
'friendly_name' => __('Prefix'),
'description' => __('A Prefix for all GPRINT lines to distinguish e.g. different hosts. You may use both Host as well as Data Query replacement variables in this prefix.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:gprint_prefix|',
'size' => '40'
),
'gprint_format' => array(
'friendly_name' => __('Include Prefix Text'),
'description' => __('Include the source Graphs GPRINT Title Text with the Aggregate Graph(s).'),
'method' => 'checkbox',
'value' => '|arg1:gprint_format|',
'default' => ''
),
'graph_type' => array(
'friendly_name' => __('Graph Type'),
'description' => __('Use this Option to create e.g. STACKed graphs.<br>AREA/STACK: 1st graph keeps AREA/STACK items, others convert to STACK<br>LINE1: all items convert to LINE1 items<br>LINE2: all items convert to LINE2 items<br>LINE3: all items convert to LINE3 items'),
'method' => 'drop_array',
'value' => '|arg1:graph_type|',
'array' => $agg_graph_types,
'default' => GRAPH_ITEM_TYPE_STACK,
),
'total' => array(
'friendly_name' => __('Totaling'),
'description' => __('Please check those Items that shall be totaled in the "Total" column, when selecting any totaling option here.'),
'method' => 'drop_array',
'value' => '|arg1:total|',
'array' => $agg_totals,
'default' => AGGREGATE_TOTAL_NONE,
'on_change' => 'changeTotals()',
),
'total_type' => array(
'friendly_name' => __('Total Type'),
'description' => __('Which type of totaling shall be performed.'),
'method' => 'drop_array',
'value' => '|arg1:total_type|',
'array' => $agg_totals_type,
'default' => AGGREGATE_TOTAL_TYPE_SIMILAR,
'on_change' => 'changeTotalsType()',
),
'total_prefix' => array(
'friendly_name' => __('Prefix for GPRINT Totals'),
'description' => __('A Prefix for all <strong>totaling</strong> GPRINT lines.'),
'method' => 'textbox',
'max_length' => '255',
'value' => '|arg1:total_prefix|',
'size' => '40'
),
'order_type' => array(
'friendly_name' => __('Reorder Type'),
'description' => __('Reordering of Graphs.'),
'method' => 'drop_array',
'value' => '|arg1:order_type|',
'array' => $agg_order_types,
'default' => AGGREGATE_ORDER_NONE,
),
'graph_template_id_prev' => array(
'method' => 'hidden',
'value' => '|arg1:graph_template_id|',
'default' => 0
)
);
# ------------------------------------------------------------
# Color Templates
# ------------------------------------------------------------
/* file: color_templates.php, action: template_edit */
$struct_color_template = array(
'title' => array(
'friendly_name' => __('Title'),
'method' => 'textbox',
'max_length' => '255',
'default' => '',
'description' => __('The name of this Color Template.'),
'size' => '80'
)
);
/* file: color_templates.php, action: item_edit */
$struct_color_template_item = array(
'color_id' => array(
'friendly_name' => __('Color'),
'method' => 'drop_color',
'default' => '0',
'description' => __('A nice Color'),
'value' => '|arg1:color_id|',
)
);
/* file: color_templates.php, action: template_edit */
$fields_color_template_template_edit = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this Template.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80'
)
);
# ------------------------------------------------------------
# Automation Rules
# ------------------------------------------------------------
/* file: automation_graph_rules.php, automation_tree_rules.php, action: edit */
$fields_automation_match_rule_item_edit = array(
'operation' => array(
'method' => 'drop_array',
'friendly_name' => __('Operation'),
'description' => __('Logical operation to combine rules.'),
'array' => $automation_oper,
'value' => '|arg1:operation|',
'on_change' => 'toggle_operation()',
),
'field' => array(
'method' => 'drop_array',
'friendly_name' => __('Field Name'),
'description' => __('The Field Name that shall be used for this Rule Item.'),
'array' => array(), # to be filled dynamically
'value' => '|arg1:field|',
'none_value' => __('None'),
),
'operator' => array(
'method' => 'drop_array',
'friendly_name' => __('Operator'),
'description' => __('Operator.'),
'array' => $automation_op_array['display'],
'value' => '|arg1:operator|',
'on_change' => 'toggle_operator()',
),
'pattern' => array(
'method' => 'textbox',
'friendly_name' => __('Matching Pattern'),
'description' => __('The Pattern to be matched against.'),
'value' => '|arg1:pattern|',
'max_length' => '255',
'size' => '50',
),
'sequence' => array(
'method' => 'view',
'friendly_name' => __('Sequence'),
'description' => __('Sequence.'),
'value' => '|arg1:sequence|',
)
);
/* file: automation_graph_rules.php, action: edit */
$fields_automation_graph_rule_item_edit = array(
'operation' => array(
'method' => 'drop_array',
'friendly_name' => __('Operation'),
'description' => __('Logical operation to combine rules.'),
'array' => $automation_oper,
'value' => '|arg1:operation|',
'on_change' => 'toggle_operation()',
),
'field' => array(
'method' => 'drop_array',
'friendly_name' => __('Field Name'),
'description' => __('The Field Name that shall be used for this Rule Item.'),
'array' => array(), # later to be filled dynamically
'value' => '|arg1:field|',
'none_value' => __('None'),
),
'operator' => array(
'method' => 'drop_array',
'friendly_name' => __('Operator'),
'description' => __('Operator.'),
'array' => $automation_op_array['display'],
'value' => '|arg1:operator|',
'on_change' => 'toggle_operator()',
),
'pattern' => array(
'method' => 'textbox',
'friendly_name' => __('Matching Pattern'),
'description' => __('The Pattern to be matched against.'),
'value' => '|arg1:pattern|',
'max_length' => '255',
'size' => '50',
),
'sequence' => array(
'method' => 'view',
'friendly_name' => __('Sequence'),
'description' => __('Sequence.'),
'value' => '|arg1:sequence|',
)
);
$fields_automation_graph_rules_edit1 = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this Rule.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80'
),
'snmp_query_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Data Query'),
'description' => __('Choose a Data Query to apply to this rule.'),
'value' => '|arg1:snmp_query_id|',
'on_change' => 'applySNMPQueryIdChange()',
'sql' => 'SELECT id, name FROM snmp_query ORDER BY name'
)
);
$fields_automation_graph_rules_edit2 = array(
'graph_type_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Graph Type'),
'description' => __('Choose any of the available Graph Types to apply to this rule.'),
'value' => '|arg1:graph_type_id|',
'on_change' => 'applySNMPQueryTypeChange()',
'sql' => 'SELECT snmp_query_graph.id, snmp_query_graph.name
FROM snmp_query_graph
WHERE snmp_query_graph.snmp_query_id=|arg1:snmp_query_id|
ORDER BY snmp_query_graph.name'
)
);
$fields_automation_graph_rules_edit3 = array(
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Enable Rule'),
'description' => __('Check this box to enable this rule.'),
'value' => '|arg1:enabled|',
'default' => '',
'form_id' => false
)
);
/* file: automation_tree_rules.php, action: edit */
$fields_automation_tree_rules_edit1 = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('A useful name for this Rule.'),
'value' => '|arg1:name|',
'max_length' => '255',
'size' => '80'
),
'tree_id' => array(
'method' => 'drop_sql',
'friendly_name' => __('Tree'),
'description' => __('Choose a Tree for the new Tree Items.'),
'value' => '|arg1:tree_id|',
'on_change' => 'applyTreeChange()',
'sql' => 'SELECT id, name FROM graph_tree ORDER BY name'
),
'leaf_type' => array(
'method' => 'drop_array',
'friendly_name' => __('Leaf Item Type'),
'description' => __('The Item Type that shall be dynamically added to the tree.'),
'value' => '|arg1:leaf_type|',
'on_change' => 'applyItemTypeChange()',
'array' => $automation_tree_item_types
),
'host_grouping_type' => array(
'method' => 'drop_array',
'friendly_name' => __('Graph Grouping Style'),
'description' => __('Choose how graphs are grouped when drawn for this particular host on the tree.'),
'array' => $host_group_types,
'value' => '|arg1:host_grouping_type|',
'default' => HOST_GROUPING_GRAPH_TEMPLATE,
)
);
$fields_automation_tree_rules_edit2 = array(
'tree_item_id' => array(
'method' => 'drop_tree',
'friendly_name' => __('Optional: Sub-Tree Item'),
'description' => __('Choose a Sub-Tree Item to hook in.<br>Make sure, that it is still there when this rule is executed!'),
'tree_id' => '|arg1:tree_id|',
'value' => '|arg1:tree_item_id|',
)
);
$fields_automation_tree_rules_edit3 = array(
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Enable Rule'),
'description' => __('Check this box to enable this rule.'),
'value' => '|arg1:enabled|',
'default' => '',
'form_id' => false
)
);
$fields_automation_tree_rule_item_edit = array(
'field' => array(
'method' => 'drop_array',
'friendly_name' => __('Header Type'),
'description' => __('Choose an Object to build a new Sub-header.'),
'array' => array(), # later to be filled dynamically
'value' => '|arg1:field|',
'none_value' => $automation_tree_header_types[AUTOMATION_TREE_ITEM_TYPE_STRING],
'on_change' => 'applyHeaderChange()',
),
'sort_type' => array(
'method' => 'drop_array',
'friendly_name' => __('Sorting Type'),
'description' => __('Choose how items in this tree will be sorted.'),
'value' => '|arg1:sort_type|',
'default' => TREE_ORDERING_NONE,
'array' => $tree_sort_types,
),
'propagate_changes' => array(
'method' => 'checkbox',
'friendly_name' => __('Propagate Changes'),
'description' => __('Propagate all options on this form (except for \'Title\') to all child \'Header\' items.'),
'value' => '|arg1:propagate_changes|',
'default' => '',
'form_id' => false
),
'search_pattern' => array(
'method' => 'textbox',
'friendly_name' => __('Matching Pattern'),
'description' => __('The String Pattern (Regular Expression) to match against.<br>Enclosing \'/\' must <strong>NOT</strong> be provided!'),
'value' => '|arg1:search_pattern|',
'max_length' => '255',
'size' => '50',
),
'replace_pattern' => array(
'method' => 'textbox',
'friendly_name' => __('Replacement Pattern'),
'description' => __('The Replacement String Pattern for use as a Tree Header.<br>Refer to a Match by e.g. <strong>\${1}</strong> for the first match!'),
'value' => '|arg1:replace_pattern|',
'max_length' => '255',
'size' => '50',
),
'sequence' => array(
'method' => 'view',
'friendly_name' => __('Sequence'),
'description' => __('Sequence.'),
'value' => '|arg1:sequence|',
)
);
api_plugin_hook('config_form');
|