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 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440
|
2014-01-26, Version 5.4.1
* amqp plugin: Add support for RabbitMQ 0.4.x to avoid compiler
warnings. Thanks to Sebastian Harl for implementing this.
* apache / network plugins: Improved initialization order hopefully
resolved gcrypt initialization problems.
* aquaero plugin: The type used to submit fan utilization was fixed.
Thanks to Alex Deymo for the patch.
* cgroups plugin: A small memory leak was fixed. Checking the existence
of a mount option without a value was fixed. More permissive parsing
of the cpuacct.stats file fixes support for some versions of Linux.
Thanks to Marc Fournier for bug reports and patches.
* curl plugin: Fix <Match> blocks without an instance. Thanks to
Alexander Golovko for reporting and Sebastian Harl for fixing this.
* curl_json plugin: Potentially invalid memory access has been
sanitized. Thanks to Jim Radford for his patch.
* interface plugin: Fix behavior under FreeBSD 10: Reporting of
per-address statistics caused duplicate updates to the same metric.
Thanks to demon / @trtrmitya for the patch.
* write_graphite plugin: Use TCP to connect to Graphite by default. The
default changed from TCP to UDP between 5.3.1 and 5.4.0, which is a
regression. Thanks to Marc Fournier for fixing this. Reconnect
behavior was improved. Thanks to Michael Hart for his patch.
* zfs_arc plugin: Collect "allocated" and "stolen" on FreeBSD only.
2013-08-18, Version 5.4.0
* collectd: The "LoadPlugin" config option no longer attempts to load
plugins twice. If more than one "LoadPlugin" statement or block is
encountered, only the first will have any effect.
* collectd: The "AutoLoadPlugin" option allows to automatically load
plugins for which a configuration is found.
* collectd: The "WriteQueueLimitHigh" and "WriteQueueLimitLow" options
allow collectd to drop values when under stress, to avoid running out
of memory. Thanks to Yves Mettier for his patch.
* amqp plugin: The "GraphiteSeparateInstances" and
"GraphiteAlwaysAppendDS" options have been added. Thanks to Laurent
for the patch.
* aquaero plugin: This new plugin reads various metrics, e.g. fan
speeds and temperatures, from Aquaero 5, a fan and water cooling
control panel. Thanks to Alex Deymo for his patch.
* curl plugin: The "MeasureResponseCode" option has been added. Thanks
to Jan Matějka for his patch.
* curl_json plugin: Support for UNIX domain sockets and array wildcards
has been added. Thanks to Jim Radford for his patch.
* curl_xml plugin: Support for long URLs has been improved.
* cgroups plugin: This new plugin collects CPU accounting information
for processes in a cgroup. Thanks to Michael Stapelberg for his patch.
* df plugin: The "ValuesAbsolute" and "ValuesPercentage" options have
been added. Thanks to Vedran Bartonicek for the patch.
* exec plugin: Do UID / GID lookups before forking. This should prevent
a race condition in the NSS library. Thanks to Ceri Storey for the
patch.
* lvm plugin: This new plugin collects size information from Linux'
Logical Volume Manager (LVM). Thanks to Chad Malfait for his work.
* memcached plugin: Support for increment and decrement counts has been
added. Thanks to Blake Matheny for the patch.
* mic plugin: This new plugin collects CPU and memory usage, power
consumption and temperatures of Intel's Many-Integrated-Core (MIC)
architecture, such as Xeon Phi cards. Thanks to Evan Felix for his
work.
* netlink plugin: This plugin has been converted to use the supported
"libmnl" library. Thanks to Andreas Henriksson for his patch.
* nginx plugin: Collection of accepted and handled connections has been
added. Thanks to Patrick Shan for his patch.
* sigrok plugin: This new plugin collects metrics from sigrok, a signal
processing framework reading various hardware devices, from light
meters to spectrum analyzers. Thanks to Bert Vermeulen for his patch.
* statsd plugin: This new plugin listens to a UDP socket and reads
metrics in the StatsD format.
* varnish plugin: Many additional metrics have been added. Thanks to
Nick Stenning for his patch.
* write_graphite plugin: Support for "UDP" has been added. Thanks to
Javier Maestro for his patch.
* write_riemann plugin: The "TTLFactor" option has been added.
* zfs_arc plugin: Support for FreeBSD has been added. Thanks to Xin Li
for his patch.
2013-07-13, Version 5.3.1
* Documentation: Various fixes.
* Configuration: Fix error handling: Errors in included files were
ignored, causing configuration mistakes to go unnoticed.
* dns plugin: Don't abort when PCAP returns an error.
* modbus plugin: The reconnection strategy was improved, fixing a
segfault in the libmodbud library. Thanks to Stefan Nickl and
Fabien Wernli for their patches.
* mysql plugin: The notification about a newly running MySQL slave
thread has been fixed. Thanks to JoaquĂn Cuenca Abela for the patch.
* snmp plugin: A build issue has been fixed (C99 mixed declaration).
The end-of-tree check has been improved by Pierre-Yves Ritschard.
* threshold plugin: Handling of the "Interesting" configuration option
has been fixed. Thanks to Björn for the patch.
* write_riemann plugin: A memory leak has been fixed. Thanks to Dave
Cottlehuber for reporting it.
2013-04-09, Version 5.3.0
* collectd: The "Include" statements can now be limited to include
only matching files in a directory. Thanks to Sebastian Harl for his
patch.
* collectd: Dispatches / writes are now handled by a thread pool. This
improves reliability and throughput for instances configured to act
as a "server". Thanks to Sebastian Harl and Dan Fandrich for
reviewing this change and fixing bugs.
* aggregation plugin: Selection of value lists is now possible using
regular expressions. Parts of the identifier of the resulting metric
can now be set via the configuration file.
* apcups plugin: The "ReportSeconds" option has been implemented.
* curl* plugins: Support for POST requests and custom request headers
has been added. Thanks to Dan Fandrich for his patch.
* curl_xml plugin: Support for XML namespaces has been added. Thanks
to Dan Fandrich for his patch.
* dbi plugin: Support for numeric options has been added. The
"Host" option has been added. Thanks to Daniel Hilst for his patch.
* disk plugin: Support for systems with >256 has been fixed. Thanks to
Greg Mason for his patch.
* libvirt plugin: Support for memory allocation has been added. Thanks
to Johan Wirén for his patch.
* netapp plugin: Support for "SnapVault", "VFiler" and deduplication /
compression and quota metrics. Thanks to Sebastian Harl for his
patches and teamix GmbH for sponsoring this work.
* postgresql plugin: The reconnection logic has been improved. Thanks
to Sebastian Harl for his patches.
* rrdtool, rrdcached plugins: The "CreateFilesAsync" option has been
implemented. When enabled, new RRD files will be created
asynchronously, which improved throughput of "server" instances.
Many thanks to Yves Mettier for all his input and code.
* tail_csv plugin: This new plugins allows to read metrics from CSV
files, such as Snort's statistics file. Thanks to Kris Nielander for
his patch.
* write_mongodb plugin: Authentication options have been added.
* write_riemann plugin: This new plugin allows sending metrics to
Riemann, a stream processing and alerting tool. Big thanks to
Pierre-Yves Ritschard for his work.
2013-04-08, Version 5.2.2
* Build system: A bad interaction between the Java detection code and
libltdl has been fixed. Thanks to Dave Cottlehuber for his patch.
Installation of the Perl bindings has been improved / fixed. Thanks
to Sebastian Harl for his patch.
* collectd: Fixed read callback scheduling at startup.
* apache, ascent, bind, curl, curl_json, curl_xml, nginx and
write_http plugins: Portability fixes, protection from infinite
redirect loops, improved error handling and incorrect dereferences
have been fixed. Most of these are related to the cURL library.
Thanks to Dan Fandrich for his patches.
* logfile plugin: Flush the output file handle. This works around
caching when logging to STDOUT and redirecting into a file. Thanks
to Nathan Huff for the patch.
* mysql plugin: Fix a memory leak in the error handling. Thanks to
Tomas Doran for his patch.
* netapp plugin: Fix the interval with which values are dispatched.
* network plugin: Build issues under FreeBSD and initialization have
been fixed. Thanks to Ed Schouten for his patch.
* nfs plugin: A compilation problem has been fixed.
* notify_email plugin: Add a character set to the mail header. Thanks
to Manuel Cissé for his patch.
* pf plugin: Build issues have been fixed.
* postgresql plugin: Build issues have been fixed.
* rrdcached plugin: Connect to the daemon from the read callback.
* snmp plugin: Matching of SNMP subtrees has been improved. Thanks to
"jkrabbe" for the patch.
* thermal plugin: The initialization of dispatched value lists has
been fixed. Thanks to Markus Knetschke for his patch.
* unixsock plugin: Parsing of options with an underscore, e.g.
"plugin_instance" has been fixed. Thanks to Tommie Gannert for his
patch.
2013-01-27, Version 5.2.1
* Build system: "make distcheck" has been fixed. Build fixes Solaris
and systems without gcrypt. Thanks to Yves Mettier for his patches.
* collectd: The complaint mechanism was fixed. It reported messages
more frequently than intended.
* collectd-tg: A manual page has been added.
* dns plugin: Build issues on FreeBSD have been fixed. Thanks to
Ed Schouten for his patch.
* ethstat plugin: Fix the "Map" config option. An incorrectly used
character pointer may lead to a segmentation fault.
* network plugin: Build issues on FreeBSD have been fixed. Thanks to
Ed Schouten for his patch.
* postgresql plugin: A memory leak in the writing code has been fixed.
A use-after-free issue that happened when more than one database was
configured was fixed. Thanks to Sebastian Harl for fixing these
problems.
* redis plugin: A build failure has been fixed. Thanks to Pierre-Yves
Ritschard for his patch.
* varnish plugin: Fix a problem with instances without name.
* write_graphite plugin: A regression which rendered the
"SeparateInstances" and "AlwaysAppendDS" options unusable has been
fixed. A failed assertion when using types with many data sources
has been fixed. Improve reporting of connection errors to not spam
log files too much. Thanks to Pierre-Yves Ritschard for reporting
the logging problem.
* zfs_arc plugin: Fix the type used for mutex misses. Thanks to Yves
Mettier for reporting this bug.
2012-11-17, Version 5.2.0
* collectd: The performance of the LISTVAL command has been improved.
Thanks to Yves Mettier for the patch.
* collectd: The possibility to configure the collection interval on a
per-plugin basis has been added. Huge thanks to Sebastian Harl for
his work.
* collectd-tg: This new binary allows to generate random but real
looking collectd network traffic. This can be used to load-test new
plugin, for example.
* libcollectdclient: Code for constructing and sending network packets
in the binary format has been added.
* aggregation plugin: This new plugin allows to aggregate multiple
value lists into one.
* amqp and write_http plugins: Meta data is now included in the JSON
output format. Thanks to Mark Wong for the patch.
* amqp plugin: Support for "Graphite" output has been added. Thanks to
Thomas Meson for the patch.
* contextswitch plugin: Support for AIX has been added. Thanks to
Manuel Rozada for his patch.
* disk plugin: The "UseBSDName" config option has been added to the
Mac OS X version.
* GenericJMX plugin: Automatically determine the host name if it isn't
configured.
* libvirt plugin: The "number" interface format has been added. Thanks
to "Davide Guerri" for the patch.
* memcached plugin: Support for multiple connections has been added.
Thanks to Nicolas Szalay for the patch.
* ntpd plugin: The "IncludeUnitID" config option has been added. The
behavior when a peer is unreachable has been improved. Thanks to
Johan Kiviniemi for the patches.
* oracle plugin: The "Host" config option has been added.
* pf plugin: This new plugin allows to collect statistics from BSD's
packet filter "pf". Thanks to Pierre-Yves Ritschard and Stefan Rinkes
for their work.
* postgresql plugin: The "Instance" config option has been added.
Support for writing values to a PostgreSQL database has been added.
Thanks to Sebastian Harl for the patches.
* processes plugin: Support for Solaris has been added. Thanks to
Cosmin Ioiart for the patch.
* redis plugin: Support for authenticating via password has been added.
Thanks to biancalana for the patch.
* rrdcached plugin: The "HeartBeat", "RRARows", "RRATimespan",
"StepSize" and "XFF" config options have been added.
* swap plugin: The "ReportBytes" config option has been added. The AIX
version now also exports "reserved" pages and swap-in / swap-out
"traffic". Thanks to Manuel Rozada for the patch.
* tcpconns plugin: Use a netlink socket rather than reading from /proc
for improved performance. Thanks to Michael Stapelberg for the patch.
2013-04-08, Version 5.1.3
* Build system: A bad interaction between the Java detection code and
libltdl has been fixed. Thanks to Dave Cottlehuber for his patch.
* collectd: Fixed read callback scheduling at startup.
* apache, ascent, bind, curl, curl_json, curl_xml, nginx and
write_http plugins: Portability fixes, protection from infinite
redirect loops, improved error handling and incorrect dereferences
have been fixed. Most of these are related to the cURL library.
Thanks to Dan Fandrich for his patches.
* logfile plugin: Flush the output file handle. This works around
caching when logging to STDOUT and redirecting into a file. Thanks
to Nathan Huff for the patch.
* mysql plugin: Fix a memory leak in the error handling. Thanks to
Tomas Doran for his patch.
* netapp plugin: Fix the interval with which values are dispatched.
* network plugin: Build issues under FreeBSD and initialization have
been fixed. Thanks to Ed Schouten for his patch.
* nfs plugin: A compilation problem has been fixed.
* notify_email plugin: Add a character set to the mail header. Thanks
to Manuel Cissé for his patch.
* rrdcached plugin: Connect to the daemon from the read callback.
* snmp plugin: Matching of SNMP subtrees has been improved. Thanks to
"jkrabbe" for the patch.
* thermal plugin: The initialization of dispatched value lists has
been fixed. Thanks to Markus Knetschke for his patch.
* unixsock plugin: Parsing of options with an underscore, e.g.
"plugin_instance" has been fixed. Thanks to Tommie Gannert for his
patch.
2013-01-25, Version 5.1.2
* Build system: "make distcheck" has been fixed. Thanks to Yves
Mettier for his patches.
* collectd: The complaint mechanism was fixed. It reported messages
more frequently than intended.
* dns plugin: Build issues on FreeBSD have been fixed. Thanks to
Ed Schouten for his patch.
* ethstat plugin: Fix the "Map" config option. An incorrectly used
character pointer may lead to a segmentation fault.
* network plugin: Build issues on FreeBSD have been fixed. Thanks to
Ed Schouten for his patch.
* varnish plugin: Fix a problem with instances without name.
* write_graphite: Improve reporting of connection errors to not spam
log files too much. Thanks to Pierre-Yves Ritschard for reporting
this problem.
* zfs_arc plugin: Fix the type used for mutex misses. Thanks to Yves
Mettier for reporting this bug.
2012-11-11, Version 5.1.1
* collectd: Create new directories with mode 0777 and let umask remove
unwanted permission bits.
* collectd: Build issues have been fixed.
* collectd: An incorrect assertion has been fixed in some common code
for Solaris. This should resolve pseudo-random assertion failures
under Solaris. Thanks to Jeff Blane for his help debugging this.
* collectd: A couple of memory leaks through PThread thread attributes
have been fixed. Thanks to Gerrie Roos for fixing these.
* collectdctl: Fix PUTVAL for data sets with multiple data sources.
Thanks to Cyril Feraudet for reporting this problem.
* contrib/migrate-4-5.px: Handle to "df" to "df_complex" conversion
correctly.
* apcups plugin: Improve the reconnect behavior.
* curl_xml plugin: The "Host" setting was silently ignored. Thanks to
Fabien Wernli for fixing this.
* df plugin: Ignore "rootfs" devices under Linux to avoid having them
reported twice. Thanks to Brune Prémont for fixing this.
* disk plugin: Fix incorrect computation of read and write latency (the
"disk_time" type). Previously, the numbers reported where too small
by a factor of "interval", e.g. when the interval is set to 10
seconds, the values were too low by a factor of 10. Thanks to Manuel
Sanmartin for reporting this problem.
* dns plugin: A build issue under Solaris has been fixed. A erroneous
define that could lead to the reporting of bad data has been fixed by
Daniel Sutto.
* ethstat plugin: An off-by-one error and potential use of
uninitialized memory has been fixed. Thanks to Mark Voelker for
reporting these problems.
* memcachec plugin: A bug in the configuration handling has been fixed.
Thanks to Pascal Hofmann for fixing this issue.
* mysql plugin: Fix a bug when registering multiple databases. Thanks
to Sebastian Harl for fixing this.
* netapp plugin: Correctly close the connection on communication
errors.
* netlink plugin: The function used to query statistics has been
changed to be more in line with iproute2's behavior. Thanks to
"KIvosak" for the patch.
* network plugin: Initialization of libgcrypt has been fixed. Thanks to
Chris Lundquist for his patch.
* oracle plugin: Error messages have been improved.
* ping plugin: Don't enter the exponential back-off mode when
ping_send() fails. This should make recovery after a network failure
much faster.
* python plugin: Memory leaks have been fixed. Thanks to Tommie Gannert
and Sven Trenkel for fixing this.
* redis plugin: Fix a compilation problem on FreeBSD. Thanks to
"biancalana" for the fix.
* rrdtool plugin: Fix an out-of-bounds array access when printing a
warning message. Thanks to Will Hawkins for fixing this bug.
* snmp plugin: Support for the SNMP_ENDOFMIBVIEW return value has been
added. Support for more complex / unusual MIBs / subtrees has been
added. Thanks to Mark Juric to test the changes and point out these
problems.
* varnish plugin: Support for multiple instances of Varnish 3 has been
fixed. Thanks to Jonathan Huot for the patch.
* write_mongodb plugin: Add compatibility with libmongo 0.6.0 and
later. Thanks to Chris Lundquist for this patch.
2012-04-01, Version 5.1.0
* Build system, iptables plugin: The shipped version of libiptc has
been removed.
* collectd-nagios: A list of value lists can now be queried using
"-n LIST". Thanks to Sebastian Harl for his patches.
* bind plugin: The "ParseTime" option has been added. It allows to use
the system time rather than the time reported by BIND.
* curl, memcachec, tail plugins: The "ExcludeRegexp" option has been
added. Thanks to Peter Warasin for his initial patch.
* ethstat plugin: The new "ethstat" plugin reads performance statistics
directly from ethernet cards. Thanks to Cyril Feraudet for his patch.
* GenericJMX plugin: Support for querying MBean "Operations" (in
addition to "Attributes") has been added. Thanks to Pierre-Yves
Ritschard for his patch.
* irq plugin: The selection / ignore code now uses the default
ignorelist infrastructure, providing the standard feature set, e.g.
regex matching.
* md plugin: The new "md" plugin reports the number of disks in various
states in Linux software RAID devices. Thanks to Michael Hanselmann
for his patch.
* modbus plugin: Support for signed integer register types has been
added.
* nfs plugin: Support for Solaris has been added. Thanks to Cosmin
Ioiart for his patch.
* numa plugin: The new "numa" plugin reports statistics of the
Non-Uniform Memory Access (NUMA) subsystem of Linux.
* processes plugin: Various fixes for the FreeBSD implementation.
Thanks to Phil Kulin for his patch.
* rrdcached plugin: Passing flushes to the caching daemon has been
added.
* sensors plugin: The initialization code has been improved. Thanks to
Henrique de Moraes Holschuh for his patch.
* swap plugin: The "ReportByDevice" option has been added.
* syslog plugin: Support for writing notifications has been added.
Thanks to Fabien Wernli for his patch.
* tcpconns plugin: Support for AIX has been added. Thanks to Manuel
Luis SanmartĂn Rozada for his patch.
* threshold plugin: The "PersistOK" option has been added. Thanks to
Aaron Brady for his patch.
* varnish plugin: Support for Varnish 3.0 has been added. Thanks to
Jérôme Renard for his patches.
* write_mongodb plugin: The new "write_mongodb" plugin writes value
lists to MongoDB, a shema-less database. Thanks to Akkarit Sangpetch
and Chris Lundquist for their work.
* write_graphite plugin: The new "write_graphite" plugin writes value
lists to Carbon, the storage layer of the Graphite time-series
database. Thanks to Scott Sanders and Pierre-Yves Ritschard for their
work.
* zfs_arc plugin: Several new statistics have been added. Thanks to
Aurelien Rougemont for his patches.
* scale target: Support for scaling specific data sources only has been
added. Thanks to Gerrie Roos for his patch.
2012-11-11, Version 5.0.5
* collectd: Create new directories with mode 0777 and let umask remove
unwanted permission bits.
* collectd: Build issues have been fixed.
* collectd: An incorrect assertion has been fixed in some common code
for Solaris. This should resolve pseudo-random assertion failures
under Solaris. Thanks to Jeff Blane for his help debugging this.
* collectd: A couple of memory leaks through PThread thread attributes
have been fixed. Thanks to Gerrie Roos for fixing these.
* collectdctl: Fix PUTVAL for data sets with multiple data sources.
Thanks to Cyril Feraudet for reporting this problem.
* contrib/migrate-4-5.px: Handle to "df" to "df_complex" conversion
correctly.
* apcups plugin: Improve the reconnect behavior.
* curl_xml plugin: The "Host" setting was silently ignored. Thanks to
Fabien Wernli for fixing this.
* df plugin: Ignore "rootfs" devices under Linux to avoid having them
reported twice. Thanks to Brune Prémont for fixing this.
* disk plugin: Fix incorrect computation of read and write latency (the
"disk_time" type). Previously, the numbers reported where too small
by a factor of "interval", e.g. when the interval is set to 10
seconds, the values were too low by a factor of 10. Thanks to Manuel
Sanmartin for reporting this problem.
* dns plugin: A build issue under Solaris has been fixed. A erroneous
define that could lead to the reporting of bad data has been fixed by
Daniel Sutto.
* memcachec plugin: A bug in the configuration handling has been fixed.
Thanks to Pascal Hofmann for fixing this issue.
* mysql plugin: Fix a bug when registering multiple databases. Thanks
to Sebastian Harl for fixing this.
* netapp plugin: Correctly close the connection on communication
errors.
* netlink plugin: The function used to query statistics has been
changed to be more in line with iproute2's behavior. Thanks to
"KIvosak" for the patch.
* network plugin: Initialization of libgcrypt has been fixed. Thanks to
Chris Lundquist for his patch.
* oracle plugin: Error messages have been improved.
* ping plugin: Don't enter the exponential back-off mode when
ping_send() fails. This should make recovery after a network failure
much faster.
* python plugin: Memory leaks have been fixed. Thanks to Tommie Gannert
and Sven Trenkel for fixing this.
* redis plugin: Fix a compilation problem on FreeBSD. Thanks to
"biancalana" for the fix.
* rrdtool plugin: Fix an out-of-bounds array access when printing a
warning message. Thanks to Will Hawkins for fixing this bug.
* snmp plugin: Support for the SNMP_ENDOFMIBVIEW return value has been
added. Support for more complex / unusual MIBs / subtrees has been
added. Thanks to Mark Juric to test the changes and point out these
problems.
2012-04-01, Version 5.0.4
* Build system: Fix the use of a libltdl macro. Thanks to Clemens Lang
for fixing this. Adresses some issues with building the iptables
plugin under Gentoo.
* libcollectdclient: A memory leak in the lcc_getval() function has
been fixed. Thanks to Jason Schmidlapp for finding and fixing this
issue.
* bind plugin: The use of 'QType" types has been fixed.
* df plugin: Fixed compiler issue under Mac OS X 10.7.
* conntrack plugin: Support zero as legitimate value. Thanks to Louis
Opter for his patch.
* memcached plugin: Increased the size of a static buffer, which was
truncating status messages form memcached. Thanks to Timon for the
patch.
* network plugin: Forwarding of notifications has been disabled. This
was a contition not checked for before, which may retult in an
endless loop.
* processes plugin: Support for process names with spaces has been
added to the Linux implementation. Thanks to Darrell Bishop for his
patch.
* perl plugin: A race condition in several callbacks, including log and
write callbacks, has been fixed. Thanks to "Rrpv" for reporting this
bug.
* snmp plugin: A bug when casting unsigned integers to gauge values has
been fixed: Unsigned integers would be cast to a signed integer and
then to a gauge, possibly resulting in a negative value.
* tcpconns plugin: Compilation with newer versions of the FreeBSD
runtime has been fixed.
2012-02-19, Version 5.0.3
* Build system: Fix problems when building the ipvs and iptables
plugins. Thanks to Sebastian Harl for his patch. A bashism in the
version-gen.sh script has been fixed. Thanks to Jo-Philipp Wich for
his patch.
* csv and rrdtool plugins: Print a more helpful error message when the
DataDir is a symlink pointing to a non-existing location. Thanks to
Jonathan Nieder for his patch.
* exec plugin: Fix a problem when using select(2) to read from file
handles. Thanks to Gerrie Roos for his patch.
* network plugin: An incorrect error message in the handling of the
"Interface" configuration option has been fixed. Thanks to Gerrie
Roos for his patch.
* oracle plugin: A potential endless loop in the error handling has
been fixed.
* python plugin: A crash bug in the configuration handling has been
fixed. Thanks to Sven Trenkel for his patch.
* interfaces plugin: The change which was supposed to ignore "bogus"
interfaces has been reverted, since it ignored legit interfaces, such
as bonding pseudo-devices as well.
2012-01-21, Version 5.0.2
* curl_xml plugin: Fix handling of file:// and other URLs (which don't
follow HTTP status codes). Thanks to Fabien Wernli for his patch!
* df plugin: Fix handling of negative "available" counts. This can
occur with some file systems, for example UFS. Thanks to Toni Ylenius
for his patch.
* interface plugin: "mac" interfaces are now ignored on Solaris. These
pseudo-interfaces occur multiple times, causing warnings. Also switch
to 64-bit counters on Solaris, improving overflow behavior for
high-speed interfaces. Thanks to Eddy Geez and Fabien Wernli for
their patches.
* memory plugin: Account kernel and unused memory under Solaris. Thanks
to Fabien Wernli for his patch.
* network plugin: A bug in the interaction between the Network plugin
and filter chains has been fixed: When a filter modified a field such
as the hostname, subsequent values in the same network packets could
have ended up using the modified name rather than the original name.
Thanks to Sebastian Harl for identifying the problem.
* oracle plugin: A memory leak has been fixed in the parameter handling.
* python plugin: A memory leak has been fixed. Thanks to Sven Trenkel
for fixing this bug!
2011-10-07, Version 5.0.1
* collectd: A mutex leak has been fixed in the meta data code. Thanks
to Rafal Lesniak for his patch.
* collectd: Compatibility fixes for GCC 4.6 have been applied. Thanks
to Peter Green for his patch.
* csv plugin: The line buffer size has been increased. Thanks to Colin
McCabe for the patch.
* curl_json plugin: Don't use the "parent" node to build the type
instance, if it is empty. Compatibility with libyajl 2 has been
added. Thanks to "spupykin" of the Arch Linux project for the initial
code. Formatting of time has been fixed in the JSON module.
* exec plugin: Fix the timestamp value passed to notification scripts.
Thanks to Alexander Kovalenko for fixing this.
* iptables plugin: Fix linking with some versions of libiptc.
* irq plugin: Fix support for interrupts under Linux. The old code
assumed that interrupts have a numeric value -- this is no longer
true for Linux. Thanks to Bostjan Skufca for implementing this.
* notify_desktop plugin: Compatibility with libnotify 0.7 has been
added. Thanks to Samuli Suominen for his patch.
* processes plugin: Fix handling of regular expressions containing
spaces. Thanks for Sebastian Harl for fixing this.
* rrdtool, rrdcached plugins: Improve precision of the XFF parameter.
Previously, values like 0.999 would have been rounded to 1.0. Thanks
to Francois-Xavier Bourlet for fixing this.
* varnish plugin: Fix data type handling of some metrics. Some values
were submitted as gauge even though they were derives.
* Various plugin: Set a multi-threading flag in libcurl. Thanks to Mike
Flisher for the fix.
2011-03-28, Version 5.0.0
* collectd: The "FQDNLookup" option is now enabled by default.
* collectd: The internal representation of time has been changed to
allow a higher accuracy than one second.
* collectdcmd: This new command line utility can send various commands
to collectd using the UnixSock plugin. Thanks to HĂĄkon Dugstad
Johnsen and Sebastian Harl for their code.
* collectd-nagios: The "-m" option has been implemented (treat NaNs as
critical).
* collectd-tg: Traffic generator creating bogus network traffic
compatible to the Network plugin. This utility can be used to
stress-test new write plugins and collectd in general.
* libcollectdclient: Creating and sending network packets has been
added to the collectd client library.
* All data sets: The data source name of all data sets with exactly
one data source has been changed to "value".
* All plugins: All "counter" data sources have been converted to
"derive" data sources. All plugins now use "derive" by default, but
plugins such as the network plugin can still handle "counter", of
course. The minimum value of all derive data sources is zero, the
maximum value is unspecified.
* amqp plugin: The new AMQP plugin can send data to and receive data
from an AMQP broker. Thanks to Sebastien Pahl for his code.
* apache plugin: Backwards compatibility code has been removed.
Support for the IBM HTTP Server has been added. Thanks to Manuel
Luis SanmartĂn Rozada for his patch.
* contextswitch plugin: Support for sysctlbyname(3) has been added.
Thanks to Kimo Rosenbaum for his patch.
* df plugin: The default behavior has been changed to be equivalent to
the "ReportReserved" behavior of v4.
* dns plugin: Improved RFC 1035 name parsing has been imported from
"dnstop".
* exec plugin: Backwards compatibility code has been removed.
* GenericJMX plugin: The "InstancePrefix" option has been added to
"Connection" blocks.
* hddtemp plugin: The "TranslateDevicename" config option has been
removed.
* interface plugin: Use the "plugin instance" to store the interface
value.
* libvirt plugin: The "InterfaceFormat" option has been added. Thanks
to Ruben Kerkhof for his patch.
* lpar plugin: New plugins for "logical partitions", a virtualization
technique of POWER CPUs. Thanks to Aurélien Reynaud for his code and
patience.
* modbus plugin: Support for libmodbus 2.9.2 has been added and the
license has been changed to LGPLv2.1.
* mysql plugin: Backwards compatibility code has been removed. The
data sets used have been improved.
* network plugin: The default buffer size has been increased to
1452 bytes.
* perl plugin: Backwards compatibility code has been removed.
* postgresql plugin: Backwards compatibility code has been removed.
* redis plugin: Plugin for collecting statistics from Redis, a key-
value store, has been added. Thanks to Andres J. Diaz for his code.
* swap plugin: Implement collection of physical and virtual memory
statistics under Solaris. The new default is collecting physical
memory. Thanks to Aurélien Reynaud for his patches.
* threshold plugin: The threshold configuration has been moved into
this separate plugin.
* unixsock plugin: The "DeleteSocket" option has been added.
* varnish plugin: The new Varnish plugin reads statistics from
Varnish, a web accelerator. Thanks to Jérôme Renard and Marc
Fournier for their contributions.
* write_redis: New plugin for writing data to Redis, a key-value
store.
* zfs_arc plugin: The data sets have been replaced by more elegant
alternatives.
* v5upgrade target: Target for converting v4 data sets to the v5
schema.
2013-04-07, Version 4.10.9
* Build system: A bad interaction between the Java detection code and
libltdl has been fixed. Thanks to Dave Cottlehuber for his patch.
* apache, ascent, bind, curl, curl_json, curl_xml, nginx and
write_http plugins: Portability fixes, protection from infinite
redirect loops, improved error handling and incorrect dereferences
have been fixed. Most of these are related to the cURL library.
Thanks to Dan Fandrich for his patches.
* logfile plugin: Flush the output file handle. This works around
caching when logging to STDOUT and redirecting into a file. Thanks
to Nathan Huff for the patch.
* network plugin: Build issues under FreeBSD and initialization have
been fixed. Thanks to Ed Schouten for his patch.
* mysql plugin: Fix a memory leak in the error handling. Thanks to
Tomas Doran for his patch.
* thermal plugin: The initialization of dispatched value lists has
been fixed. Thanks to Markus Knetschke for his patch.
* unixsock plugin: Parsing of options with an underscore, e.g.
"plugin_instance" has been fixed. Thanks to Tommie Gannert for his
patch.
2012-11-11, Version 4.10.8
* collectd: Create new directories with mode 0777 and let umask remove
unwanted permission bits.
* collectd: Build issues have been fixed.
* collectd: An incorrect assertion has been fixed in some common code
for Solaris. This should resolve pseudo-random assertion failures
under Solaris. Thanks to Jeff Blane for his help debugging this.
* collectd: A couple of memory leaks through PThread thread attributes
have been fixed. Thanks to Gerrie Roos for fixing these.
* apcups plugin: Improve the reconnect behavior.
* df plugin: Ignore "rootfs" devices under Linux to avoid having them
reported twice. Thanks to Brune Prémont for fixing this.
* disk plugin: Fix incorrect computation of read and write latency (the
"disk_time" type). Previously, the numbers reported where too small
by a factor of "interval", e.g. when the interval is set to 10
seconds, the values were too low by a factor of 10. Thanks to Manuel
Sanmartin for reporting this problem.
* dns plugin: A build issue under Solaris has been fixed. A erroneous
define that could lead to the reporting of bad data has been fixed by
Daniel Sutto.
* memcachec plugin: A bug in the configuration handling has been fixed.
Thanks to Pascal Hofmann for fixing this issue.
* netapp plugin: Correctly close the connection on communication
errors.
* netlink plugin: The function used to query statistics has been
changed to be more in line with iproute2's behavior. Thanks to
"KIvosak" for the patch.
* network plugin: Initialization of libgcrypt has been fixed. Thanks to
Chris Lundquist for his patch.
* oracle plugin: Error messages have been improved.
* ping plugin: Don't enter the exponential back-off mode when
ping_send() fails. This should make recovery after a network failure
much faster.
* python plugin: Memory leaks have been fixed. Thanks to Tommie Gannert
and Sven Trenkel for fixing this.
* rrdtool plugin: Fix an out-of-bounds array access when printing a
warning message. Thanks to Will Hawkins for fixing this bug.
* snmp plugin: Support for the SNMP_ENDOFMIBVIEW return value has been
added. Support for more complex / unusual MIBs / subtrees has been
added. Thanks to Mark Juric to test the changes and point out these
problems.
2012-04-01, Version 4.10.7
* Build system: Fix the use of a libltdl macro. Thanks to Clemens Lang
for fixing this. Adresses some issues with building the iptables
plugin under Gentoo.
* libcollectdclient: A memory leak in the lcc_getval() function has
been fixed. Thanks to Jason Schmidlapp for finding and fixing this
issue.
* bind plugin: The use of 'QType" types has been fixed.
* df plugin: Fixed compiler issue under Mac OS X 10.7.
* conntrack plugin: Support zero as legitimate value. Thanks to Louis
Opter for his patch.
* memcached plugin: Increased the size of a static buffer, which was
truncating status messages form memcached. Thanks to Timon for the
patch.
* network plugin: Forwarding of notifications has been disabled. This
was a contition not checked for before, which may retult in an
endless loop.
* processes plugin: Support for process names with spaces has been
added to the Linux implementation. Thanks to Darrell Bishop for his
patch.
* perl plugin: A race condition in several callbacks, including log and
write callbacks, has been fixed. Thanks to "Rrpv" for reporting this
bug.
* snmp plugin: A bug when casting unsigned integers to gauge values has
been fixed: Unsigned integers would be cast to a signed integer and
then to a gauge, possibly resulting in a negative value.
* tcpconns plugin: Compilation with newer versions of the FreeBSD
runtime has been fixed.
2012-02-19, Version 4.10.6
* Build system: Fix problems when building the ipvs and iptables
plugins. Thanks to Sebastian Harl for his patch. A bashism in the
version-gen.sh script has been fixed. Thanks to Jo-Philipp Wich for
his patch.
* csv and rrdtool plugins: Print a more helpful error message when the
DataDir is a symlink pointing to a non-existing location. Thanks to
Jonathan Nieder for his patch.
* exec plugin: Fix a problem when using select(2) to read from file
handles. Thanks to Gerrie Roos for his patch.
* network plugin: An incorrect error message in the handling of the
"Interface" configuration option has been fixed. Thanks to Gerrie
Roos for his patch.
* oracle plugin: A potential endless loop in the error handling has
been fixed.
* python plugin: A crash bug in the configuration handling has been
fixed. Thanks to Sven Trenkel for his patch.
* interfaces plugin: The change which was supposed to ignore "bogus"
interfaces has been reverted, since it ignored legit interfaces, such
as bonding pseudo-devices as well.
2012-01-21, Version 4.10.5
* curl_xml plugin: Fix handling of file:// and other URLs (which don't
follow HTTP status codes). Thanks to Fabien Wernli for his patch!
* df plugin: Fix handling of negative "available" counts. This can
occur with some file systems, for example UFS. Thanks to Toni Ylenius
for his patch.
* interface plugin: "mac" interfaces are now ignored on Solaris. These
pseudo-interfaces occur multiple times, causing warnings. Also switch
to 64-bit counters on Solaris, improving overflow behavior for
high-speed interfaces. Thanks to Eddy Geez and Fabien Wernli for
their patches.
* memory plugin: Account kernel and unused memory under Solaris. Thanks
to Fabien Wernli for his patch.
* network plugin: A bug in the interaction between the Network plugin
and filter chains has been fixed: When a filter modified a field such
as the hostname, subsequent values in the same network packets could
have ended up using the modified name rather than the original name.
Thanks to Sebastian Harl for identifying the problem.
* oracle plugin: A memory leak has been fixed in the parameter handling.
* python plugin: A memory leak has been fixed. Thanks to Sven Trenkel
for fixing this bug!
2011-10-14, Version 4.10.4
* collectd: A mutex leak has been fixed in the meta data code. Thanks
to Rafal Lesniak for his patch.
* collectd: Compatibility fixes for GCC 4.6 have been applied. Thanks
to Peter Green for his patch.
* csv plugin: The line buffer size has been increased. Thanks to Colin
McCabe for the patch.
* curl_json plugin: Don't use the "parent" node to build the type
instance, if it is empty. Compatibility with libyajl 2 has been
added. Thanks to "spupykin" of the Arch Linux project for the initial
code.
* iptables plugin: Fix linking with some versions of libiptc.
* irq plugin: Fix support for interrupts under Linux. The old code
assumed that interrupts have a numeric value -- this is no longer
true for Linux. Thanks to Bostjan Skufca for implementing this.
* notify_desktop plugin: Compatibility with libnotify 0.7 has been
added. Thanks to Samuli Suominen for his patch.
* processes plugin: Fix handling of regular expressions containing
spaces. Thanks for Sebastian Harl for fixing this.
* rrdtool, rrdcached plugins: Improve precision of the XFF parameter.
Previously, values like 0.999 would have been rounded to 1.0. Thanks
to Francois-Xavier Bourlet for fixing this.
* Various plugin: Set a multi-threading flag in libcurl. Thanks to Mike
Flisher for the fix.
2011-03-26, Version 4.10.3
* Documentation: Several updates and additions. Thanks to Sebastian Harl.
* collectd: Build issues (compiler warnings) have been fixed. Thanks to
Bruno Prémont.
* collectd: Threshold subsection: Handling of NAN values in the
percentage calculation has been fixed.
* collectd, java plugin, ntpd plugin: Several diagnostic messages have
been improved.
* curl_json plugin: Handling of arrays has been fixed.
* libvirt plugin: A bug in reading the virtual CPU statistics has been
fixed. Thanks to “JLPC” for reporting this problem.
* modbus plugin: Compatibility with libmodbus 2.0.3 has been restored.
* processes plugin: Potentially erroneous behavior has been fixed in an
error handling case.
* python plugin: Fix dispatching of values from Python scripts to
collectd. Thanks to Gregory Szorc for finding and fixing this
problem.
2010-11-27, Version 4.10.2
* Documentation: Various documentation fixes.
* collectd: If including one configuration file fails, continue with
the rest of the configuration if possible.
* collectd: Fix a bug in the read function scheduling. In rare cases
read functions may not have been called as often as requested.
* collectd: Concurrency issues with errno(3) under AIX have been
fixed: A thread-safe version of errno has to be requested under AIX.
Thanks to Aurélien Reynaud for his patch.
* collectd: A left-over hard-coded 2 has been replaced by the
configurable timeout value.
* curl, memcachec, tail plugins: Fix handling of "DERIVE" data
sources. Matching the end of a string has been improved; thanks to
Sebastian Harl for the patch.
* curl_json plugin: Fix a problem when parsing 64bit integers. Reading
JSON data from non-HTTP sources has been fixed.
* netapp plugin: Pass the interval setting to the dispatch function.
Restore compatibility to NetApp Release 7.3. Thanks to Sven Trenkel
for the patch.
* network plugin: Be less verbose about unchecked signatures, in order
to prevent spamming the logs.
* notify_email plugin: Concurrency problems have been fixed.
* python plugin: Set "sys.argv", since many scripts don't expect that
it may not be set. Thanks to Sven Trenkel for the patch.
* rrdtool, rrdcached plugin: Fix a too strict assertion when creating
RRD files.
* swap plugin: A bug which lead to incorrect I/O values has been
fixed.
* value match: A minor memory leak has been fixed. Thanks to Sven
Trenkel for the patch.
2010-07-09, Version 4.10.1
* Build system: Checking for "strtok_r" under Solaris has been fixed.
* Portability: Fixes for Solaris 8 have been applied. Thanks to
Alexander Wuerstlein for his patch.
* collectd: The shutdown speed when terminating the read threads has
been improved.
* libcollectdclient: A format error in the PUTVAL command has been
removed. Thanks to Johan Van den Brande for fixing this.
* df plugin: An error message shown when "cu_mount_getlist" fails has
been added.
* processes plugin: Missing initialization code for IO members of a
struct has been added. Thanks to Aurélien Reynaud for fixing this.
* python plugin: Memory leaks in the write and notification callbacks
have been fixed. A possible crash when the plugin was loaded but not
configured has been fixed. Thanks to Sven Trenkel for his patches.
* snmp plugin: Verbosity with regard to unknown ASN types has been
increased. A build problem on PowerPC and ARM processors has been
fixed by Aurélien Reynaud; thanks!
* powerdns plugin: Compatibility changes for PowerDNS 2.9.22 and above
have been applied. Thanks to Luke Heberling for his changes.
2010-05-01, Version 4.10.0
* collectd: JSON output now includes the "dstypes" and "dsnames"
fields. This makes it easier for external applications to interpret
the data. Thanks to Chris Buben for his work.
* collectd: The new "Timeout" option can be used to specify a
"timeout" for missing values. This is used in the threshold checking
code to detect missing values. Thanks to AndrĂ©s J. DĂaz for the
patch.
* apache plugin: Support for "IdleWorkers" (Apache 1.*: "IdleServers")
has been added.
* curl plugin: The new "ExcludeRegex" allows to easily exclude certain
lines from the match.
* curl_xml plugin: This new plugin allows to read XML files using cURL
and extract metrics included in the files. Thanks to Amit Gupta for
his work.
* filecount plugin: The new "IncludeHidden" option allows to include
"hidden" files and directories in the statistics. Thanks to Vaclav
Malek for the patch.
* logfile plugin: The new "PrintSeverity" option allows to include the
severity of a message in the output. Thanks to Clément Stenac for
his patch.
* memcachec plugin: The new "ExcludeRegex" allows to easily exclude
certain lines from the match.
* modbus plugin: This new plugin allows to read registers from
Modbus-TCP enabled devices.
* network plugin: The new "Interface" option allows to set the
interface to be used for multicast and, if supported, unicast
traffic. Thanks to Max Henkel for his work.
* openvpn plugin: The "CollectUserCount" and "CollectIndividualUsers"
options allow more detailed control over how to report sessions of
multiple users. Thanks to Fabian Schuh for his work.
* pinba plugin: This new plugin receives timing information from the
Pinba PHP extension, which can be used for profiling PHP code and
webserver performance. Thanks to Phoenix Kayo for his work.
* ping plugin: The new "MaxMissed" allows to re-resolve a hosts
address when it doesn't reply to a number of ping requests. Thanks
to Stefan Völkel for the patch.
* postgresql plugin: The "Interval" config option has been added. The
plugin has been relicensed under the 2-clause BSD license. Thanks to
Sebastian Harl for his work.
* processes plugin: Support for "code" and "data" virtual memory sizes
has been added. Thanks to Clément Stenac for his patch.
* python plugin: Support for Python 3 has been implemented. Thanks to
Sven Trenkel for his work.
* routeros plugin: Support for collecting CPU load, memory usage, used
and free disk space, sectors written and number of bad blocks from
MikroTik devices has been added.
* swap plugin: Support for Linux < 2.6 has been added. Thanks to Lorin
Scraba for his patch.
* tail plugin: The new "ExcludeRegex" allows to easily exclude certain
lines from the match. Thanks to Peter Warasin for his patch.
* write_http plugin: The "StoreRates" option has been added. Thanks to
Paul Sadauskas for his patch.
* regex match: The "Invert" option has been added. Thanks to Julien
Ammous for his patch.
2011-03-26, Version 4.9.5
* Documentation: Several updates and additions. Thanks to Sebastian Harl.
* collectd: Build issues (compiler warnings) have been fixed. Thanks to
Bruno Prémont.
* collectd: Threshold subsection: Handling of NAN values in the
percentage calculation has been fixed.
* collectd, java plugin, ntpd plugin: Several diagnostic messages have
been improved.
* libvirt plugin: A bug in reading the virtual CPU statistics has been
fixed. Thanks to “JLPC” for reporting this problem.
* processes plugin: Potentially erroneous behavior has been fixed in an
error handling case.
* python plugin: Fix dispatching of values from Python scripts to
collectd. Thanks to Gregory Szorc for finding and fixing this
problem.
2010-11-27, Version 4.9.4
* Documentation: Various documentation fixes.
* collectd: If including one configuration file fails, continue with
the rest of the configuration if possible.
* collectd: Fix a bug in the read function scheduling. In rare cases
read functions may not have been called as often as requested.
* collectd: Concurrency issues with errno(3) under AIX have been
fixed: A thread-safe version of errno has to be requested under AIX.
Thanks to Aurélien Reynaud for his patch.
* curl, memcachec, tail plugins: Fix handling of "DERIVE" data
sources. Matching the end of a string has been improved; thanks to
Sebastian Harl for the patch.
* curl_json plugin: Fix a problem when parsing 64bit integers. Reading
JSON data from non-HTTP sources has been fixed.
* netapp plugin: Pass the interval setting to the dispatch function.
Restore compatibility to NetApp Release 7.3. Thanks to Sven Trenkel
for the patch.
* network plugin: Be less verbose about unchecked signatures, in order
to prevent spamming the logs.
* notify_email plugin: Concurrency problems have been fixed.
* python plugin: Set "sys.argv", since many scripts don't expect that
it may not be set. Thanks to Sven Trenkel for the patch.
* rrdtool, rrdcached plugin: Fix a too strict assertion when creating
RRD files.
* value match: A minor memory leak has been fixed. Thanks to Sven
Trenkel for the patch.
2010-07-09, Version 4.9.3
* Build system: Checking for "strtok_r" under Solaris has been fixed.
* Portability: Fixes for Solaris 8 have been applied. Thanks to
Aurélien Reynaud and Alexander Wuerstlein for their patches.
* collectd: The shutdown speed when terminating the read threads has
been improved.
* collectd-nagios: The format of the performance data has been fixed.
* libcollectdclient: A format error in the PUTVAL command has been
removed. Thanks to Johan Van den Brande for fixing this.
* df plugin: An error message shown when "cu_mount_getlist" fails has
been added.
* processes plugin: Missing initialization code for IO members of a
struct has been added. Thanks to Aurélien Reynaud for fixing this.
* python plugin: Memory leaks in the write and notification callbacks
have been fixed. A possible crash when the plugin was loaded but not
configured has been fixed. Thanks to Sven Trenkel for his patches.
* rrdcached plugin: A build issue has been resolved. Thanks to
Thorsten von Eicken for the patch.
* snmp plugin: Verbosity with regard to unknown ASN types has been
increased. A build problem on PowerPC and ARM processors has been
fixed by Aurélien Reynaud; thanks!
* powerdns plugin: Compatibility changes for PowerDNS 2.9.22 and above
have been applied. Thanks to Luke Heberling for his changes.
2010-04-22, Version 4.9.2
* Build system, various plugins: Fixes for AIX compatibility have been
added. Thanks to Manuel Sanmartin for his patches.
* Build system: Checking for "nanosleep" on old Solaris machines has
been fixed. Thanks to Vincent McIntyre and Sebastian Harl for
figuring out a way to make this work.
* collectd: Append a newline to messages written to STDERR.
* collectd: Serialization of NANs in JSON format has been fixed.
Thanks to Chris Buben for pointing out the resulting syntax error.
* collectd: Checks whether a "sleep" returned early have been added;
the cases are now handled correctly. Thanks to Michael Stapelberg
for the patch.
* collectd: Continue reading files in a directory when parsing one
file fails.
* apache plugin: Collection of the number of active connections has
been fixed for Apache 2.*.
* contextswitch plugin: Handle large counter/derive values correctly.
Thanks to Martin Merkel for reporting the bug.
* exec plugin: Error messages have been improved. The "running" flag
is now cleared correctly when forking a child fails.
* iptables plugin: Fix a violation of aliasing rules. This resolves a
warning / error with new GCC versions. Thanks to Jan Engelhardt for
the work-around.
* java plugin: The Java API files are now packaged into a .jar file.
Thanks to Amit Gupta for his patch.
* network plugin: Fix a segmentation fault when receiving packets with
an unknown data source type.
* network plugin: A memory leak when receiving encrypted network
packets has been fixed.
* openvpn plugin: Fix naming schema when reading "MULTI1" type status
files.
* oracle plugin: Fix checking for lost connections and reconnect in
this case. Thanks to Sven Trenkel for pointing out the problem.
* unixsock plugin: A memory leak in the "LISTVAL" command has been
fixed. Thanks to Peter Warasin for pointing it out.
* write_http plugin: Use the "any" authentication schema. This used to
be "digest". Thanks to Paul Sadauskas for the patch.
2010-01-14, Version 4.9.1
* Documentation: Some manpage fixes.
* Default config: Added sample configuration for missing plugins.
* apache plugin: Fix a segmentation fault in the config handling of
VerifyPeer / VerifyHost. Thanks to "plazmus" for his or her patch.
* processes plugin: Fix handling of derive data sources.
* rrdtool plugin: Fix a bug with random write timeouts. Due to an
incorrect initialization some files may be suspended basically
indefinitely. After flushing the files they were written regularly
again.
* routeros plugin: Use the node name for the "host" field.
* Monitorus.pm: Put the plugin into the "Collectd::Plugins" namespace.
* Perl bindings: Fix a warning that was printed when building
debugging output.
2009-12-21, Version 4.9.0
* contextswitch plugin: The new ContextSwitch plugin gathers the
number of context switches done by the CPU. Thanks to Patrik
Weiskircher for the patch.
* cpu plugin: Support for SMP (multiple processors) under FreeBSD has
been added. Thanks to Doug MacEachern for the patch.
* curl plugin: The “MeasureResponseTime” option has been added. Thanks
to Aman Gupta for the patch.
* df plugin: Collecting the inode count and reserved space has been
added. Thanks to Patrik Weiskircher for the patch.
* exec plugin: The environment variables “COLLECTD_INTERVAL” and
“COLLECTD_HOSTNAME” are now set before executing the application.
* Monitorus plugin: This Perl-based plugin to query statistics from
mon.itor.us has been added. Thanks to Jeff Green for the patch.
* netapp plugin: New plugin to collect statistics from NetApp filers.
Thanks to Sven Trenkel of the noris network AG for the patch.
* network plugin: Statistics collection about the plugin itself has
been implemented.
* openvpn plugin: Add support for more versions of the “status file”.
Thanks to Marco Chiappero for the patch.
* OpenVZ plugin: This Perl-based plugin to gather OpenVZ statistics
has been added. Thanks to Jonathan Kolb for the patch.
* ping plugin: The config options "SourceAddress" and "Device"
have been added. Thanks to Sebastian Harl for the patch.
* processes plugin: Collection of IO-metrics has been added. Thanks to
AndrĂ©s J. DĂaz for the patch.
* python plugin: The new Python plugin integrates a Python interpreter
into collectd and allows to execute plugins written in the scripting
language. Thanks to Sven Trenkel for his work.
* routeros plugin: The new RouterOS plugin queries interface and
wireless registration statistics from RouterOS.
* Various plugins: AIX support has been added to the cpu, disk,
interface, load, memory, processes, and swap plugins. Thanks to
Manuel Sanmartin for his patches.
* hashed match: This match for simple load balancing and redundant
storage has been added.
* scale target: This target to scale (multiply) values by an arbitrary
value has been added.
2010-04-22, Version 4.8.5
* collectd: Append a newline to messages written to STDERR.
* network plugin: Fix a segmentation fault when receiving packets with
an unknown data source type.
2010-04-07, Version 4.8.4
* Build system, various plugins: Fixes for AIX compatibility have been
added. Thanks to Manuel Sanmartin for his patches.
* Build system: Checking for "nanosleep" on old Solaris machines has
been fixed. Thanks to Vincent McIntyre and Sebastian Harl for
figuring out a way to make this work.
* collectd: Serialization of NANs in JSON format has been fixed.
Thanks to Chris Buben for pointing out the resulting syntax error.
* collectd: Checks whether a "sleep" returned early have been added;
the cases are now handled correctly. Thanks to Michael Stapelberg
for the patch.
* collectd: Continue reading files in a directory when parsing one
file fails.
* apache plugin: Collection of the number of active connections has
been fixed for Apache 2.*.
* exec plugin: Error messages have been improved. The "running" flag
is now cleared correctly when forking a child fails.
* iptables plugin: Fix a violation of aliasing rules. This resolves a
warning / error with new GCC versions. Thanks to Jan Engelhardt for
the work-around.
* java plugin: The Java API files are now packaged into a .jar file.
Thanks to Amit Gupta for his patch.
* network plugin: A memory leak when receiving encrypted network
packets has been fixed.
* oracle plugin: Fix checking for lost connections and reconnect in
this case. Thanks to Sven Trenkel for pointing out the problem.
* unixsock plugin: A memory leak in the "LISTVAL" command has been
fixed. Thanks to Peter Warasin for pointing it out.
* write_http plugin: Use the "any" authentication schema. This used to
be "digest". Thanks to Paul Sadauskas for the patch.
2010-01-14, Version 4.8.3
* Documentation: Some manpage fixes.
* rrdtool plugin: Fix a bug with random write timeouts. Due to an
incorrect initialization some files may be suspended basically
indefinitely. After flushing the files they were written regularly
again.
2009-12-18, Version 4.8.2
* Build system, java plugin: Don't use “find -L” to search for Java
headers, because it's a GNU extension.
* Build system: Support for parallel builds has been improved. Thanks
Sebastian Harl and Stefan Völkel for looking into this.
* collectd: Print error messages to STDERR if no log plugin has been
loaded.
* genericjmx plugin: Close and re-open the connection upon I/O-errors.
* gmond plugin: Fix typos which caused syntax errors.
* memory plugin: Handling of >4 Gbyte of memory has been fixed.
* network plugin: The license has been changed to LGPL 2.1.
* oracle plugin: Reconnect to the database if the connection dies.
* rrdcached plugin: Work-around for a bug in RRDtool 1.4rc2 has been
added.
* snmp plugin: Handling of negative values has been fixed. Strings
containing control characters are now interpreted as hex-strings.
* unixsock plugin: A memory leak in the LISTVAL command has been
fixed. Thanks to Ben Knight for his patch.
2009-10-04, Version 4.8.1
* Build system: Issues when building the iptables plugin have been
fixed.
* exec plugin: Clear the signal block mask before calling exec(2).
* perl plugin: Declare the “environ” variable. This solves build
issues on some platforms.
* processes plugin: Remove unnecessary call of realloc(3). Thanks to
AndrĂ©s J. DĂaz for the patch.
* unixsock plugin: Fix a (well hidden) race condition related to file
descriptor handling.
2009-09-13, Version 4.8.0
* collectd: Two new data source types, “DERIVE” and “ABSOLUTE”, have
been added. “DERIVE” can be used for counters that are reset
occasionally. Thanks to Mariusz Gronczewski for implementing this.
* thresholds: The advanced threshold options “Percentage”, “Hits”, and
“Hysteresis” have been added. Thanks to AndrĂ©s J. DĂaz for his
patches.
* curl_json plugin: The new cURL-JSON plugin reads JSON files using
the cURL library and parses the contents according to user
specification. Among other things, this allows to read statistics
from a CouchDB instance. Thanks to Doug MacEachern for the patch.
* df plugin: Using the new “ReportByDevice” option the device rather
than the mount point can be used to identify partitions. Thanks to
Paul Sadauskas for the patch.
* dns plugin: The possibility to ignore numeric QTypes has been added.
Thanks to Mirko Buffoni for the patch.
* GenericJMX plugin: The new, Java-based GenericJMX plugin allows to
query arbitrary data from a Java process using the “Java Management
Extensions” (JMX).
* madwifi plugin: The new MadWifi plugin collects information about
Atheros wireless LAN chipsets from the MadWifi driver. Thanks to
Ondrej Zajicek for his patches.
* network plugin: The receive- and send-buffer-sizes have been made
configurable, allowing for bigger and smaller packets. Thanks to
Aman Gupta for the patch.
* olsrd plugin: The new OLSRd plugin queries routing information from
the “Optimized Link State Routing” daemon.
* rrdtool plugin: A new configuration option allows to define a random
write delay when writing RRD files. This spreads the load created by
writing RRD files more evenly. Thanks to Mariusz Gronczewski for the
patch.
* swap plugin: The possibility to collect swapped in/out pages has
been added to the Swap plugin. Thanks to Stefan Völkel for the
patch.
* tokyotyrant plugin: The new TokyoTyrant plugin reads the number of
records and file size from a running Tokyo Tyrant server. Thanks to
Paul Sadauskas for the patch.
* unixsock plugin: Add the “GETTHRESHOLD” command. This command can be
used to query the thresholds configured for a particular identifier.
* write_http plugin: The new Write HTTP plugin sends the values
collected by collectd to a web-server using HTTP POST requests.
Thanks to Paul Sadauskas for the patch.
* zfs_arc plugin: The new ZFS ARC plugin collects information about
the “Adaptive Replacement Cache” (ARC) of the “Zeta File-System”
(ZFS). Thanks to Anthony Dewhurst for the patch.
* empty_counter match: The new Empty Counter match matches value
lists, where at least one data source is of type COUNTER and the
counter value of all counter data sources is zero.
2009-12-18, Version 4.7.5
* Build system, java plugin: Don't use “find -L” to search for Java
headers, because it's a GNU extension.
* Build system: Support for parallel builds has been improved. Thanks
Sebastian Harl and Stefan Völkel for looking into this.
* collectd: Print error messages to STDERR if no log plugin has been
loaded.
* memory plugin: Handling of >4 Gbyte of memory has been fixed.
* network plugin: The license has been changed to LGPL 2.1.
* oracle plugin: Reconnect to the database if the connection dies.
* rrdcached plugin: Work-around for a bug in RRDtool 1.4rc2 has been
added.
* snmp plugin: Handling of negative values has been fixed. Strings
containing control characters are now interpreted as hex-strings.
* unixsock plugin: A memory leak in the LISTVAL command has been
fixed. Thanks to Ben Knight for his patch.
2009-10-03, Version 4.7.4
* Build system: Issues when building the iptables plugin have been
fixed.
* exec plugin: Clear the signal block mask before calling exec(2).
* perl plugin: Declare the “environ” variable. This solves build
issues on some platforms.
* processes plugin: Remove unnecessary call of realloc(3). Thanks to
AndrĂ©s J. DĂaz for the patch.
* unixsock plugin: Fix a (well hidden) race condition related to file
descriptor handling.
2009-09-13, Version 4.7.3
* collectd: Fix a possible but very rare invalid “free” in the caching
code. Thanks to Sebastian Harl for the patch.
* collectd: Remove old values when a cache entry is marked as missing.
This way the “GETVAL” command of the UnixSock plugin doesn't return
old, no longer valid values when this happens. Thanks to Andrés J.
DĂaz for the patch.
* collectd: The “plugin_unregister_read” function has been fixed.
* apache, ascent, bind, curl, nginx plugins: Advise the cURL library
to follow redirects. Thanks to Joey Hess for reporting this bug.
* df plugin: Check the ignorelist before stating the file system,
possibly reducing the number of stats considerably. Thanks to Joey
Hess for reporting this bug.
* iptables plugin: Support for the new libiptc API has been added.
Thanks to Sebastian Harl for the patch. The build system has been
updated to the plugin only includes the shipped header files when it
is linked with the shipped library, too.
* java plugin: Delay creating the JVM until after the daemon has
forked. The JVM internally creates threads that are lost when
forking. This means that Java-based plugins are now configured
during the init-phase, i. e. later than other plugins.
* libvirt plugin: Re-connect to libvirtd if connecting fails. Thanks
to Alan Pevec for the patch.
* network plugin: Fix the handling of the “CacheFlush” option: The
value was assigned to a wrong variable. The initialization of the
gcrypt library, which is used for signing / encrypting traffic, has
been fixed. Thanks to Luke Heberling for the patch.
* powerdns plugin: Set a timeout when reading data from the datagram
socket. Handling of the “LocalSocket” option has been fixed. An
incorrectly used “type” has been corrected. Thanks to Luke Heberling
for his patches.
2009-07-19, Version 4.7.2
* Build system: Support for `DESTDIR' has been fixed in the Java
bindings.
* collectd: Okay-notifications have been fixed. Thanks to Andrés J.
DĂaz for fixing this bug.
* collectd: A programming error has been fixed in the notification
code. The bug may result in an assertion failure.
* memcached plugin: Portability fix for Solaris. Thanks to Amit Gupta
for reporting the bug.
* ping plugin: Link the plugin with libm.
2009-06-02, Version 4.7.1
* Build system: Detection of Java has been improved and missing
details have been added to the configuration summary. Support for
libtool 2.2 has been added.
* collectd: Two bugs with the threshold checking have been fixed. The
first one prevented thresholds to be checked at all, the second one
caused wrong behavior with the persistency option. Thanks to Andrés
J. DĂaz for fixing these problems.
* collectd: Handling of the `Include' configuration option has been
fixed.
* rrdtool plugin: Make sure initialization is run only once. This
resolves problems under Solaris and potentially other systems.
Thanks to Amit Gupta for reporting this bug.
* java plugin: Make it possible to use dots ('.') instead of slashes
('/') as the class separator. Thanks to Randy Rizun for pointing
this out.
* swap plugin: A work-around for 32-bit Solaris has been added. Thanks
to Doug MacEachern for the patch.
2009-05-11, Version 4.7.0
* apache plugin: Support to query multiple servers has been added.
Thanks to Amit Gupta for the patch.
* apache plugin: Handling of lighttpd's scoreboard statistics has been
improved. Thanks to Amit Gupta for the patch.
* conntrack plugin: The new conntrack plugin collects the connection
tracking table size. Thanks to Tomasz Pala for the patch.
* fscache plugin: The new fscache plugin collects statistics about
Linux' file-system based caching framework. Thanks to Edward
Konetzko for the patch.
* gmond plugin: The new gmond plugin can receive and interpret
multicast traffic from Ganglia's gmond daemon.
* java plugin: The new java plugin exports the collectd API to Java,
making it possible to write extensions to collectd in Java.
* memcachec plugin: The new memcachec plugin queries data from a
memcached daemon and parses it similar to the cURL plugin. Thanks to
Doug MacEachern for the initial code.
* memcached plugin: Support for connections over UNIX domain sockets
has been added. Thanks to Franck Lombardi for the patch.
* memory plugin: Support for OpenBSD and possibly other *BSDs has been
added. Thanks to Simon Kuhnle for the patch.
* mysql plugin: Support to query multiple databases has been added.
Thanks to Doug MacEachern for the patch.
* mysql plugin: Master/slave statistics have been added.
* mysql plugin: Lock statistics have been added. Thanks to Rodolphe
Quiédeville for the patch.
* network plugin: The possibility to sign or encrypt network traffic
has been added.
* protocols plugin: The new protocols plugin provides information
about network protocols, such as IP, TCP and UDP.
* snmp plugin: The intervals given in the configuration of the SNMP
plugin must no longer be a multiple of the global interval.
* table plugin: The new Table plugin provides parsing for table-like
structured files, such as many files beneath /proc.
* ted plugin: The new TED plugin reads power consumption measurements
from “The Energy Detective” (TED). Thanks to Eric Reed for this
plugin.
* onewire plugin: The new `Interval' option allows collecting
information from OneWire sensors at arbitrary intervals.
* ping plugin: Support for collecting the drop rate and standard
deviation of round-trip times has been added.
* uptime plugin: The new uptime plugin can collect the server's
uptime. Thanks to Marco Chiappero for the patch.
2009-09-10, Version 4.6.5
* collectd: Remove old values when a cache entry is marked as missing.
This way the “GETVAL” command of the UnixSock plugin doesn't return
old, no longer valid values when this happens. Thanks to Andrés J.
DĂaz for the patch.
* apache, ascent, bind, curl, nginx plugins: Advise the cURL library
to follow redirects. Thanks to Joey Hess for reporting this bug.
* df plugin: Check the ignorelist before stating the file system,
possibly reducing the number of stats considerably. Thanks to Joey
Hess for reporting this bug.
* iptables plugin: Support for the new libiptc API has been added.
Thanks to Sebastian Harl for the patch. The build system has been
updated to the plugin only includes the shipped header files when it
is linked with the shipped library, too.
* libvirt plugin: Re-connect to libvirtd if connecting fails. Thanks
to Alan Pevec for the patch.
* powerdns plugin: Set a timeout when reading data from the datagram
socket. Handling of the “LocalSocket” option has been fixed. An
incorrectly used “type” has been corrected. Thanks to Luke Heberling
for his patches.
2009-07-18, Version 4.6.4
* collectd: Okay-notifications have been fixed. Thanks to Andrés J.
DĂaz for fixing this bug.
* collectd: A programming error has been fixed in the notification
code. The bug may result in an assertion failure.
* memcached plugin: Portability fix for Solaris. Thanks to Amit Gupta
for reporting the bug.
2009-06-02, Version 4.6.3
* Build system, various plugins: Many build fixes for FreeBSD,
OpenBSD, NetBSD, Solaris and Mac OS X. Big thanks to Doug MacEachern
for many fixes and providing a build system for many platforms,
Ulf Zimmermann for providing a FreeBSD system and Simon Kuhnle for
providing an OpenBSD system.
* collectd: Two bugs with the threshold checking have been fixed. The
first one prevented thresholds to be checked at all, the second one
caused wrong behavior with the persistency option. Thanks to Andrés
J. DĂaz for fixing these problems.
* collectd: Handling of the `Include' configuration option has been
fixed.
* battery plugin: Don't complain about a missing directory every
interval.
* exec plugin: Allow executed programs to close STDERR. Thanks to
Thorsten von Eicken for reporting this problem.
* irq plugin: Fix handling of overflowing 32-bit counters. Thanks to
Tomasz Pala for the patch.
* perl plugin: Portability build-fixes. Thanks to Doug MacEachern for
the patch.
* memory plugin: Fix a potential problem under Solaris.
* swap plugin: A work-around for 32-bit Solaris has been added. Thanks
to Doug MacEachern for the patch.
2009-03-18, Version 4.6.2
* collectd: Some Solaris utility code has been improved.
* filter subsystem: Allow `Chains' without default targets.
* liboping: A patch to comply with strict aliasing rules has been
added.
* timediff match: Fix a typo: The match was registered with a wrong
name which prevented this match to be used as documented. Thanks to
Bruno Prémont for finding this problem.
* bind plugin: Fix collection of the cached RR sets. The number of RR
sets currently in the cache was collected as a counter value, which
is nonsense. Thanks to Bruno Prémont for implementing this.
* dns plugin: Don't pass NULL to `pcap_open_live': Some systems,
primarily BSDs, don't take it well and crash.
* oracle plugin: Portability to 64 bit systems has been improved.
* postgresql plugin: The default configuration has been improved.
* rrdtool plugin: Fix a possible race condition: If the network plugin
is brought and dispatches a value before the rrdtool plugin is
initialized, the daemon may crash.
2009-02-22, Version 4.6.1
* collectd: Many documentation fixes.
* Collectd::Unixsock: Error handling has been improved.
* regex match: Don't link with the PCRE library.
* bind plugin: Various bugs have been fixed. Thanks to Bruno Prémont
for finding and fixing most of them.
* ipmi plugin: Fix an off-by-one error which could cause segmentation
faults. Thanks to Peter Holik for his patch.
2009-02-16, Version 4.6.0
* collectd: Added the `filter chain' infrastructure, which allows the
user to use `matches' and `targets' to control value processing.
* collectd: The new `-T' command line argument allows more in-depth
testing of a configuration. Thanks to Doug MacEachern for the patch.
* collectd-nagios: The Nagios integration command has been updated to
use libcollectdclient. The `percentage' aggregation function has
been added. Thanks to Fabian Linzberger for the patch.
* libcollectdclient: A library which abstracts communication with the
unixsock plugin for clients has been added.
* regex match: Match values by their identifies using regular
expressions.
* timediff match: Match for values with an invalid timestamp.
* value match: Select values by their data sources' values.
* notification target: Create and dispatch a notification.
* replace target: Replace parts of an identifier using regular
expressions.
* set target: Set (overwrite) entire parts of an identifier.
* bind plugin: This new plugin uses the new HTTP/XML interface to BIND
statistics, allowing very detailed name server statistics. Thanks to
Bruno Prémont for this plugin.
* cpu plugin: Report `interrupt' separately when using
sysctlbyname(3) (used under *BSD). Support for sysctl(3), for
example for native OpenBSD support, has been added. Thanks to Simon
Kuhnle for the patch.
* csv plugin: Make it possible to write values to STDOUT instead of
files. This is meant for testing purposes mostly. The output written
to STDOUT is compatible with the exec plugin. Thanks to Doug
MacEachern for the patch.
* curl plugin: This new plugin can be used to read web pages and parse
them using the same mechanism that's used in the tail plugin.
* dbi plugin: This new plugin allows you to connect to a variety of
relational databases and use SQL to gather custom statistics from
it. It is similar to the already existing PostgreSQL plugin but uses
libdbi to communicate with the database(s).
* interface plugin: Use the ignorelist framework when selecting /
ignoring interfaces. This allows one to use regular expressions to
select interfaces, too.
* ipmi plugin: Handle temporary IPMI error conditions more gracefully.
Thanks to Bruno Prémont for this patch.
* memcached plugin: Add hit-ratio metric. Thanks to Doug MacEachern
for the patch.
* mysql plugin: Allow connecting to a database via the UNIX domain
socket, too. Thanks to Mirko Buffoni for the patch.
* network plugin: Further performance improvements for the receive
code. This hopefully will help very large setups.
* openvpn plugin: This new plugin collects statistics provided by the
OpenVPN daemon. Thanks to Doug MacEachern for the patch.
* oracle plugin: This new plugin allows you to connect to an Oracle
database and use SQL to gather custom statistics from it. It is
similar to the already existing PostgreSQL plugin.
* perl plugin: Compatibility fixes for broken versions of Perl 5.10
have been added.
* perl plugin: Export the newly added plugin_write() to Perl plugins.
* perl plugin: Added support for `notification meta data'.
* perl plugin: Added support for the `filter chain' infrastructure by
allowing plugins to register `matches' and `targets'.
* postgresql plugin: The preferred configuration syntax has been
updated to be in line with the syntax used by the new dbi and oracle
plugins. The compatibility code for the old syntax is present.
Support for the new `Result' blocks and the interval parameter has
been added.
* processes plugin: Stacksize and virtual memory usage statistics have
been added. Portability fixes.
* rrdcached plugin: This new plugin uses the (still in development)
RRD accelerator daemon, rrdcached. This daemon works very similar to
the original rrdtool plugin of collectd, but adds some more nice
features.
* swap plugin: Code for OpenBSD (and possibly other *BSDs) has been
added.
2009-05-09, Version 4.5.4
* Build system, various plugins: Many build fixes for FreeBSD,
OpenBSD, NetBSD, Solaris and Mac OS X. Big thanks to Doug MacEachern
for many fixes and providing a build system for many platforms,
Ulf Zimmermann for providing a FreeBSD system and Simon Kuhnle for
providing an OpenBSD system.
* collectd: Fix a potential race condition when creating directories.
* battery plugin: Don't complain about a missing directory every
interval.
* dns plugin: Slight portability fixes.
* exec plugin: Allow executed programs to close STDERR. Thanks to
Thorsten von Eicken for reporting this problem.
* irq plugin: Fix handling of overflowing 32-bit counters. Thanks to
Tomasz Pala for the patch.
* perl plugin: Portability build-fixes. Thanks to Doug MacEachern for
the patch.
* rrdtool plugin: Fix a possible race condition: If the network plugin
is initialized and dispatches a value before the rrdtool plugin is
initialized, the daemon may crash.
* memory plugin: Fix a potential problem under Solaris.
2009-02-22, Version 4.5.3
* build system: The check for libupsclient even when `pkg-config' is
not available.
* collectd: Fix error handling in the global cache.
* Collectd::Unixsock: Error handling has been improved.
* ascent plugin: Fix a memory leak. Thanks to Bruno Prémont for his
patch.
* ipmi plugin: Fix an off-by-one error which could cause segmentation
faults. Thanks to Peter Holik for his patch.
* tcpconns plugin: An endianness problem has been fixed in the *BSD
code. Thanks to "thated" for reporting this.
2009-01-02, Version 4.5.2
* build system: Check for `mysql.h' and `mysql/mysql.h', since the
file may be in both locations, especially when the database was
installed in a non-standard path. Thanks to Dusty Doris for
reporting this.
* build system: Handle the _POSIX_PTHREAD_SEMANTICS defined, needed by
Solaris, in the configure script automatically.
* build system, tcpconns plugin: Check for `kvm_nlist' and
`kvm_openfiles' before enabling the plugin: Solaris provides a KVM
library with similar functions to the BSD variant, but doesn't
provide these necessary functions.
* collectd.conf(5): Various fixes and clarifications.
* collectd: Remove a GNUism (unnamed unions), thus improving
portability.
* collectd, apcups plugin: Include "collectd.h" before <stdlib.h>.
This solves portability problems, especially for Solaris.
* dns plugin: Fix a portability problem with NetBSD.
* filecount plugin: Fix an off-by-one error. This error may cause a
segmentation fault.
* network plugin: Fix the handling of `type' in the network protocol.
Due to a programming mistake, only 4 or 8 bytes would be copied to a
much larger buffer. This caused the `type' to be transferred much
more often than necessary. In some cases, e. g. the `cpu' and
`cpufreq' plugins being used at the same time, data may be corrupted
in those files. Thanks to Bruno Prémont for debugging and reporting
this issue.
* processes plugin: Fix a possible segmentation fault when specifying
invalid configuration options.
* unixsock plugin: Make sure the initialization function is run only
once. This resolves a file descriptor leak under systems which run
the initialization more than once, such as Solaris.
2008-10-16, Version 4.5.1
* build system: Change `--enable-<plugin>' to abort with an error if
dependencies are not met. Thanks to Bruno Prémont for the patch.
Also, the poisoning of various string functions has been restricted
to debug builds.
* collectd: Fix a memory leak in the global value cache. With every
*missing* value a couple of bytes would be leaked. Another memory
leak in the configuration handling code has been fixed. Thanks to
Niraj Tolia for reporting these issues.
* collectd: Fix an off-by-one error in the ignorelist functionality.
When using regular expressions, the last character would be missing,
possibly matching differently from what one would expect.
* collectdmon: Don't block SIGCHLD. This fixes a potential portability
problem.
* collectd-nagios: Fix handling of the `-d' option. Thanks to Fabian
Linzberger for reporting the bug.
* iptables plugin: Fix an off-by-one error. If a string was just one
character too long, it was truncated instead of reporting an error.
* network plugin: Fix a memory leak in the configuration handling
code. Thanks to Niraj Tolia for reporting this issue.
* perl plugin: Log an error message if bootstrapping `Collectd' fails.
* postgresql plugin: Don't reopen connection during reinitialization.
This fixes a bug under Solaris and potentially other platforms.
Missing calls to `PQclear' have been added, too. This fixes memory
leaks. Thanks to ``Admin'' for reporting these bugs.
* snmp plugin: Don't expect null-terminated strings from the Net-SNMP
library.
* tail plugin: Call `clearerr(3)' after reading an EOF. This fixes
problems with some `libc's. Thanks to Matthias Lay for reporting the
bug.
2008-09-04, Version 4.5.0
* collectd: Added the ability to flush certain identifiers.
* collectd: The concept of `notification meta data' has been
introduced.
* filecount plugin: The new filecount plugin counts the number of
files in a directory and its subdirectories.
* ipmi plugin: Sensor names have been changed to ensure unique names.
Notifications upon added and removed sensors can now be generated.
* notify_desktop plugin: This new plugin sends notifications to the
X desktop using the structure defined in the `Desktop Notification
Specification'.
* notify_email plugin: This new plugin sends out notifications via
email, using the `esmtp' library.
* onewire plugin: The new experimental(!) onewire plugin reads values,
such as temperatures, from sensors connected to the computer via the
onewire bus.
* perl plugin: Improved synchronized access to internal data structures
and fixed a possible dead-lock.
* perl plugin: Added the ability to flush certain identifiers and marked
plugin_flush_all() and plugin_flush_one() as deprecated in favor of
plugin_flush().
* perl plugin: Added the ability to configure Perl plugins.
* postgresql plugin: The new postgresql plugin collects statistics
about or from a PostgreSQL database.
* processes plugin: The `ProcessMatch' option has been added.
* rrdtool plugin: Implement throttling of the `update queue' to lessen
IO load.
* tcpconns plugin: This plugin has been ported to OpenBSD.
* thermal plugin: The new thermal plugin collects system temperatures
using Linux ACPI thermal zone data.
2009-01-02, Version 4.4.5
* build system: Check for `mysql.h' and `mysql/mysql.h', since the
file may be in both locations, especially when the database was
installed in a non-standard path. Thanks to Dusty Doris for
reporting this.
* build system: Handle the _POSIX_PTHREAD_SEMANTICS defined, needed by
Solaris, in the configure script automatically.
* collectd.conf(5): Various fixes and clarifications.
* apcups plugin: Include "collectd.h" before <stdlib.h>. This solves
portability problems, especially for Solaris.
* dns plugin: Fix a portability problem with NetBSD.
* network plugin: Fix the handling of `type' in the network protocol.
Due to a programming mistake, only 4 or 8 bytes would be copied to a
much larger buffer. This caused the `type' to be transferred much
more often than necessary. In some cases, e. g. the `cpu' and
`cpufreq' plugins being used at the same time, data may be corrupted
in those files. Thanks to Bruno Prémont for debugging and reporting
this issue.
* unixsock plugin: Make sure the initialization function is run only
once. This resolves a file descriptor leak under systems which run
the initialization more than once, such as Solaris.
2008-10-16, Version 4.4.4
* build system: Change `--enable-<plugin>' to abort with an error if
dependencies are not met. Thanks to Bruno Prémont for the patch.
Also, the poisoning of various string functions has been restricted
to debug builds.
* collectd: Fix a memory leak in the global value cache. With every
*missing* value a couple of bytes would be leaked. Another memory
leak in the configuration handling code has been fixed. Thanks to
Niraj Tolia for reporting these issues.
* collectd: Fix an off-by-one error in the ignorelist functionality.
When using regular expressions, the last character would be missing,
possibly matching differently from what one would expect.
* collectdmon: Don't block SIGCHLD. This fixes a potential portability
problem.
* collectd-nagios: Fix handling of the `-d' option. Thanks to Fabian
Linzberger for reporting the bug.
* network plugin: Fix a memory leak in the configuration handling
code. Thanks to Niraj Tolia for reporting this issue.
* perl plugin: Log an error message if bootstrapping `Collectd' fails.
* tail plugin: Call `clearerr(3)' after reading an EOF. This fixes
problems with some `libc's. Thanks to Matthias Lay for reporting the
bug.
2008-09-01, Version 4.4.3
* collectd: Fix a memory leak in the threshold checking code.
* memcached plugin: Fix a too short timeout and a related file
descriptor leak.
* memory plugin: A typo in the libstatgrab code has been fixed.
* snmp plugin: Fix a possible memory leak.
2008-07-15, Version 4.4.2
* build system: Use pkg-config to detect the upsclient library.
* collectd: Try even harder to determine the endianess of the
architecture collectd is being built on.
* disk plugin: Fix for Linux 2.4: A wrong field was used as the name
of disks.
* dns plugin: Fix compilation errors with BIND versions 19991001
through 19991005.
* network plugin: Bugfix in the init routine: The init function
cleared a buffer regardless of its contents. This could lead to lost
values under Solaris.
* nginx plugin: Remove usage of the thread-unsafe `strtok' function.
* vserver plugin: Remove usage of the thread-unsafe `readdir'
function.
* wireless plugin: Work around incorrect noise and power values
returned by some broken drivers.
2008-06-03, Version 4.4.1
* collectd: Fix the `DataSource' option within `Type' blocks. Thanks
to kyrone for reporting this.
* collectd: Fixed min/max output in notifications generated by
threshold checking.
* collectd-nagios: Fix the protocol used to communicate with the
daemon.
* perl plugin: Fail noisily, but don't shutdown the daemon, if
initialization has errors. An issue with Perl 5.10 has been fixed.
* teamspeak2 plugin: Fixed an out of bound array access. Thanks to
René Rebe and Siegmund Gorr for reporting this.
2008-05-06, Version 4.4.0
* collectd: Internal code cleanups.
* collectd: Added support for a `Flush' command in the unixsock and
exec plugins. This command can be used to force a plugin (or all) to
flush its values to disk.
* collectd: Thresholds can now be configured to apply to one data
source only, making it possible to configure different thresholds
for each data source.
* apache, nginx plugins: Added the possibility to disable host and/or
peer verification.
* ascent plugin: The new ascent plugin reads and parses the statistics
page of an Ascent server.
* cpu plugin: Support for the statgrab library has been added.
* disk plugin: The possibility to ignore certain disks or collect only
specific disks has been added.
* disk plugin: Support for the statgrab library has been added.
* ipmi plugin: The new ipmi plugin uses the OpenIPMI library to read
sensor values via IPMI, the intelligent platform management
interface.
* iptables plugin: The iptc library that is used by the iptables
plugin has been added to the distribution, because it is not
provided by all distributions and removed from at least one.
* powerdns plugin: The new powerdns plugin reads statistics from an
authoritative or a recursing PowerDNS name server.
* rrdtool plugin: The size of the files generated with the default
configuration has been decreased.
* tail plugin: The new tail plugin can be used to gather statistics by
continuously reading from log files.
* teamspeak2 plugin: The new teamspeak2 plugin connects to a
TeamSpeak2 server and collects statistics about the number of users
and number of channels.
* users plugin: Support for the statgrab library has been added.
* vmem plugin: The new vmem plugin collects very detailed statistics
about the virtual memory subsystem of Linux.
2008-08-30, Version 4.3.4
* Build system: Improved detection of and linking with the statgrab
library.
* collectd: Portability fixes, especially to determine endianess more
reliable.
* Various plugins: Fix format strings.
* disk plugin: A fix for giving disks under Linux 2.4 the right names
again has been applied.
* memcached plugin: Fix a too short timeout and a related file
descriptor leak.
* memory plugin: A typo in the libstatgrab code has been fixed.
* network plugin: A fix in the initialization function solves problems
under Solaris.
* nginx plugin: A thread-unsafe function has been replaced.
* vserver plugin: A thread-unsafe function has been replaced.
* wireless plugin: A work-around for broken wireless drivers has been
added.
2008-04-22, Version 4.3.3
* build system: Improved detection of several libraries, especially if
they are in non-standard paths.
* build system: Portability fixes: Automatically define "_REENTRANT"
if the libc expects it.
* collectd: Error and warning messages have been improved.
* collectd: Check for the BYTE_ORDER and BIG_ENDIAN defines before
using them.
* apache plugin: Allocate new memory when reading a webpage instead of
using a buffer of static size.
* exec plugin: Close (almost) all filedescriptors before exec(2)ing
the program.
* hddtemp plugin: Error and warning messages have been improved.
* sensors plugin: Fix sensor collection for some chip types.
2008-03-29, Version 4.3.2
* collectd: Fix configuration of the `FailureMax', `WarningMax', and
`Persist' threshold options.
* collectd: Fix handling of missing values in the global value cache.
* collectd: Improved error messages when parsing the configuration.
* sensors plugin: Fix temperature collection with libsensors4.
* unixsock plugin: Fix mixed input and output operation on streams.
* wireless plugin: Fix reading noise value.
2008-03-05, Version 4.3.1
* exec plugin: Set supplementary group IDs.
* network plugin:
+ Use `memcpy' when constructing/parsing a package to avoid
alignment problems on weird architectures, such as Sparc.
+ Translate doubles to/from the x86 byte representation to ensure
cross-platform compatibility.
* ping plugin: Correct the handling of the `TTL' setting.
* swap plugin: Reapply a patch for Solaris.
* tcpconns plugin: Portability improvements.
2008-02-18, Version 4.3.0
* collectd: Notifications have been added to the daemon. Notifications
are status messages that may be associated with a data instance.
* collectd: Threshold checking has been added to the daemon. This
means that you can configure threshold values for each data
instance. If this threshold is exceeded a notification will be
created.
* collectd: The new `FQDNLookup' option tells the daemon to use the
full qualified domain name as the hostname, not just the host part
es returned by `gethostname(2)'.
* collectd: Support for more than one `TypesDB' file has been added.
This is useful when one such file is included in a package but one
wants to add custom type definitions.
* collectd: The `Include' config option has been expanded to handle
entire directories and shell wildcards.
* collectdmon: The new `collectdmon' binary detects when collectd
terminates and automatically restarts it again.
* csv plugin: The CSV plugin is now able to store counter values as a
rate, using the `StoreRates' configuration option.
* exec plugin: Handling of notifications has been added and the
ability to pass arguments to the executed programs has been added.
* hddtemp plugin: The new `TranslateDevicename' option lets you
disable the translation from device names to major-minor-numbers.
* logfile plugin: Handling of notifications has been added.
* ntpd plugin: The new `ReverseLookups' can be used to disable reverse
domain name lookups in this plugin.
* perl plugin: Many internal changes added support for handling multiple
threads making the plugin reasonably usable inside collectd. The API has
been extended to support notifications and export global variables to
Perl plugins; callbacks now have to be identified by name rather than a
pointer to a subroutine. The plugin is no longer experimental.
* uuid plugin: The new UUID plugin sets the hostname to an unique
identifier for this host. This is meant for setups where each client
may migrate to another physical host, possibly going through one or
more name changes in the process. Thanks to Richard Jones from
Red Hat's Emerging Technology group for this plugin.
* libvirt: The new libvirt plugin uses the `libvirt' library to query
CPU, disk and network statistics about guest systems on the same
physical server. Thanks to Richard Jones from Red Hat's Emerging
Technology group for this plugin.
2008-04-22, Version 4.2.7
* build system: Improved detection of several libraries, especially if
they are in non-standard paths.
* build system: Portability fixes: Automatically define "_REENTRANT"
if the libc expects it.
* collectd: Error and warning messages have been improved.
* collectd: Check for the BYTE_ORDER and BIG_ENDIAN defines before
using them.
* apache plugin: Allocate new memory when reading a webpage instead of
using a buffer of static size.
* exec plugin: Close (almost) all filedescriptors before exec(2)ing
the program.
* hddtemp plugin: Error and warning messages have been improved.
* sensors plugin: Fix sensor collection for some chip types.
2008-03-29, Version 4.2.6
* collectd: Improved error messages when parsing the configuration.
* sensors plugin: Fix temperature collection with libsensors4.
* unixsock plugin: Fix mixed input and output operation on streams.
* wireless plugin: Fix reading noise value.
2008-03-04, Version 4.2.5
* apache plugin: Improved initialization and error messages.
* exec plugin: Set supplementary group IDs.
* network plugin:
+ Create separate threads for reading from the socket and parsing
and dispatching incoming packets. Versions prior to this may have
problems in high-load situations, where the socket receive buffers
overflows, resulting in gaps in the data.
+ Use `memcpy' when constructing/parsing a package to avoid
alignment problems on weird architectures, such as Sparc.
+ Translate doubles to/from the x86 byte representation to ensure
cross-platform compatibility.
* ping plugin: Correct the handling of the `TTL' setting.
* rrdtool plugin: Ensure correct handling of the `RRATimespan' option.
* swap plugin: Reapply a patch for Solaris.
* tcpconns plugin: Portability improvements.
2008-01-21, Version 4.2.4
* unixsock plugin: A bug in the unixsock plugin caused it not to set
the permission on the socket as documented in the manpage. Thanks to
Evgeny Chukreev for fixing this issue.
* collectd: The documentation has been improved.
2007-12-28, Version 4.2.3
* sensors plugin: Updated the plugin to build and work with version 3
of the libsensors library.
2007-12-15, Version 4.2.2
* nginx plugin: Incorrect comparison of strings lead to a segfault
when using the plugin. Thanks to Saulius Grigaliunas for fixing
this.
* logfile plugin: The config option `Timestamp' was handled
incorrectly and basically always active. Thanks to Luke Heberling
for fixing this.
2007-11-08, Version 4.2.1
* tcpconns plugin: Don't complain about a missing file if IPv6 is not
enabled on the host.
* snmp plugin: Fix a memory leak.
2007-10-27, Version 4.2.0
* collectd: The new config option `Include' lets you include other
configfiles and thus split up your config into smaller parts. This
may be especially interesting for the snmp plugin to keep the data
definitions separate from the host definitions.
* ipvs plugin: The new `ipvs' plugin collects IPVS connection statistics
(number of connections, octets and packets for each service and
destination). Thanks to Sebastian Harl for this plugin.
* memcached plugin: The new `memcached' plugin connects to a memcached
daemon process and collects statistics of this distributed caching
system. Thanks to Antony Dovgal for contributing this plugin.
* nginx plugin: The new `nginx' plugin reads the status page of an
nginx daemon and saves the handled connections and requests.
* perl plugin: Many changes, including the added `EnableDebugger'
config option which lets you debug your Perl plugins more easily.
* rrdtool plugin: Use the thread-safe RRD-library if available. Try to
be more thread-safe otherwise by locking calls to the library.
* snmp plugin: Added the options `Scale' and `Shift' to Data-blocks to
correct the values returned by SNMP-agents. If a <data> block is
defined as `table' the instance is now optional. The sequence number
is used as the type-instance in this case. The new `InstancePrefix'
option allows to add arbitrary prefixes to the type-instance.
* tcpconns plugin: The new `tcpconns' plugin collects the number of
certain TCP connections and what state they're in. This can be used
to see how many connections your FTP server has to handle or how
many outgoing connections your mailserver has open.
2008-01-11, Version 4.1.6
* unixsock plugin: A bug in the unixsock plugin caused it not to set
the permission on the socket as documented in the manpage. Thanks to
Evgeny Chukreev for fixing this issue.
* collectd: The documentation has been improved.
2007-12-27, Version 4.1.5
* rrdtool plugin: Fix a memory leak that only occurred in very-low-
memory situations.
* sensors plugin: Updated the plugin to build and work with version 3
of the libsensors library.
2007-11-08, Version 4.1.4
* Build system: Improve detection of the rrd library, especially if
it's in a non-standard location.
* Build system: A bug when parsing the argument for
`--with-libnetsnmp' has been fixed.
* collectd: Implement `strerror_r' if the libc doesn't provide it.
* rrdtool plugin: Fix a bug in the shutdown sequence that might cause
a deadlock or delay when shutting down the daemon.
* snmp plugin: Fix a memory leak.
2007-10-24, Version 4.1.3
* collectd: A build issue under Solaris has been resolved by renaming
data types.
* rrdtool plugin: Use the thread-safe RRD-library if available. Try to
be more thread-safe otherwise by locking calls to the library.
2007-09-28, Version 4.1.2
* apcups plugin: Fix reporting of the `load percent' data.
* wireless plugin: Correct the handling of cards returning signal and
noise quality as percentage.
* perl plugin: Fix a possible buffer overflow in get_module_name().
* build system: Further improve the detection of libraries.
* netlink plugin: Build issues under some older versions of the Linux
includes (i. e. Debian Sarge) have been fixed.
* snmp plugin: Fix a potential segfault when a host times out. Add
support for the `timeticks' type.
2007-09-12, Version 4.1.1
* Build system: The detection of `libnetlink' has been improved.
* collectd: The documentation has been fixed in numerous places.
* exec plugin: Setting the group under which to run a program has been
fixed.
* collectd: The `sstrerror' function was improved to work correctly
with the broken GNU version of `strerror_r'.
* collectd: Write an error message to STDERR when loading of a plugin
fails.
* apcups plugin: Fix the `types' used to submit the values: They still
has an `apcups_' prefix which doesn't work anymore.
* rrdtool plugin: Create new RRD-files with the `begin' time set to
whatever the client thinks is `now'..
2007-09-01, Version 4.1.0
* Build system: The build system has been changed to automatically
disable all plugins, which are missing dependencies. The dependency
checking has been removed from the plugins themselves to remove
redundancy.
* Flexible interval: The interval of collected data is now sent along
with the data itself over the network, so that the interval-settings
of server and clients no longer needs to match.
* netlink plugin: The new `netlink' plugin connects to the Linux
kernel using a netlink socket and uses it to query information about
interfaces, qdiscs and classes.
* rrdtool plugin: The cache is now dumped to disk in an extra thread
to not block data collection.
* snmp plugin: The new `snmp' plugin can read values from SNMP enabled
network devices, such as switches, routers, thermometers, rack
monitoring servers, etc. The collectd-snmp(5) manpage documents this
plugin.
* unixsock plugin: Added the `LISTVAL' command.
* xmms plugin: The new `xmms' plugin graphs the bitrate and frequency
of music played with xmms.
2007-09-28, Version 4.0.9
* apcups plugin: Fix reporting of the `load percent' data.
* wireless plugin: Correct the handling of cards returning signal and
noise quality as percentage.
* perl plugin: Fix a possible buffer overflow in get_module_name().
2007-09-12, Version 4.0.8
* collectd: The `sstrerror' function was improved to work correctly
with the broken GNU version of `strerror_r'.
* collectd: Write an error message to STDERR when loading of a plugin
fails.
* apcups plugin: Fix the `types' used to submit the values: They still
has an `apcups_' prefix which doesn't work anymore.
* rrdtool plugin: Create new RRD-files with the `begin' time set to
whatever the client thinks is `now'..
2007-08-26, Version 4.0.7
* documentation: Some typos have been fixed and some information has
been improved.
* build system: Many fixes for detecting libraries in unusual places,
such as on RedHat systems. The affected libraries are `libcurl',
`libmysql', and `libupsclient'.
* network plugin: Allow the `Port' option to be specified as a number
(i. e. without quotes).
* nut plugin: A fix allows linking the nut plugin against
libupsclient, version >= 2.2.0.
* processes plugin: Fix a potential segmentation fault.
2007-07-30, Version 4.0.6
* sensors plugin: Fix the ignorelist functionality: Only the `type
instance' was used to match against the list, but the documentation
told otherwise. This release fixes the code, so it complies with the
documentation.
* syslog plugin: Call `openlog' right when the plugin is loaded, so
configuration messages will end up in the logging facility.
* conrtib/fedora: The contributed specfile for Fedora has been
updated.
2007-07-05, Version 4.0.5
* Portability: More fixes for OpenBSD have been included.
2007-06-24, Version 4.0.4
* cpu plugin: Fixed the Solaris code.
* dns plugin: Fixed a build issue for OpenBSD.
* interface plugin: Fixed the Solaris code.
* load plugin: Fixed the alternative `/proc' Linux code.
* memory plugin: Fixed the Solaris code.
* oconfig: Don't require `-lfl' anymore.
2007-06-19, Version 4.0.3
* cpu plugin: Fix the Darwin / Mac OS X code.
* ping plugin: Use the return value of `getpid', not its address.
* csv, rrdtool plugin: Fixed a bug that prevented an buffer to be
initialized correctly.
* configure: Added `--with-nan-emulation' to aid cross compilation.
2007-06-12, Version 4.0.2
* hddtemp and ntpd plugin: Corrected the parsing of port numbers when
they're given in numerically form.
2007-06-07, Version 4.0.1
* iptables plugin: A bug in the configuration routine has been fixed.
Setting a comment in the configfile will no longer cause a
segmentation fault.
2007-06-03, Version 4.0.0
* collectd: The plugin-infrastructure has been changed to allow for
more types of plugins, namely `write' and `log' plugins.
* collectd: The read-function has been changed to read many plugins in
parallel, using threads. Thus, plugins generally need to use
thread-safe functions from now on.
* collectd: The '-t' command line options allows to perform syntax tests
of the configuration file and exit immediately.
* csv plugin: The new `csv' plugin handles output to `comma separated
values'-files.
* rrdtool plugin: The new `rrdtool' plugin handles output to
RRD-files. Data can be cached to combine multiple updates into one
write to increase IO-performance.
* network plugin: The new `network' plugin handles IO via the network.
It implements a different, much more extensible protocol which can
combine many values in one packet, decreasing the number of UDP-
packets being sent. It can read from and send to the network and
with the appropriate configuration even forward packets to other
networks.
* unixsock plugin: The new `unixsock' plugin provides an interface to
communicate with the daemon while it is running. Right now the
commands `GETVAL' and `PUTVAL' are implemented, but more are to
come.
* perl plugin: The new `perl' plugin allows you to write extensions
for collectd in the scripting-language Perl.
* logfile plugin: The new `logfile' plugin writes logmessages to files
or STDOUT or STDERR.
* syslog plugin: The new `syslog' plugin sends logmessages to the
system's syslog daemon.
* entropy plugin: The new `entropy' plugin collects the amount of
entropy currently being available to the system.
* exec plugin: The new `exec' plugin forks child processes and reads
back values provided by the forked processes.
* iptables plugin: The new `iptables' plugin reads counters from
iptables rules. Thanks to Sjoerd van der Berg for contributing this
plugin.
* irq plugin: The new `irq' plugin collects the IRQ-counters. Thanks
to Peter Holik for contributing this plugin.
* nut plugin: The new `nut' plugin connects the upsd of the `network
ups tools' and reads information about the connected UPS.
* apache plugin: Support for lighttpd's `BusyServers' (aka.
connections) field was added by Florent Monbillard.
* collectd-nagios: The new `collectd-nagios' binary queries values
from collectd, parses them and exits according to Nagios-standards.
* manpages: The manpages have been improved a lot.
2007-09-28, Version 3.11.7
* wireless plugin: Correct the handling of cards returning signal and
noise quality as percentage.
2007-08-31, Version 3.11.6
* processes plugin: Fix a potential segmentation fault.
2007-05-29, Version 3.11.5
* configure: Added `AC_SYS_LARGEFILE' for LFS.
* ntpd plugin: Fix a potential buffer overflow.
* processes plugin: Fix a bug when run under Linux 2.4. All processes
were accounted as `zombies'.
2007-04-10, Version 3.11.4
* dns plugin: Change the order of includes to make the plugin compile
under FreeBSD.
2007-03-30, Version 3.11.3
* configure: Have the configure-script define `HAVE_LIBKSTAT' instead
of the unused `COLLECT_KSTAT'.
2007-02-11, Version 3.11.2
* plugin: Catch NULL-pointer and try to fix them. Otherwise the
NULL-pointer may have been passed to `printf' which causes a
segfault with some libcs.
2007-02-10, Version 3.11.1
* df plugin: Some wrong defines have been fixed so the plugin works
under Solaris again.
* dns plugin: The usage of a struct has been fixed to work with
non-GNU libcs.
* processes plugin: Some missing defines have been added so the plugin
compiles cleanly under FreeBSD and presumably other UNIXes.
2006-12-22, Version 3.11.0
* collectd: The new command line option `-P' makes it easier for
distributors to change the location of PID-files.
* collectd: The daemon shuts down faster now which makes it easier to
write init.d-scripts for it.
* apache plugin: Increase the buffersize to 16k, because the 4k buffer
caused problems every now and then.
* df plugin: New config options allow to ignore certain mountpoints,
filesystem types or devices.
* dns plugin: The new dns plugin uses `libpcap' to capture DNS traffic
and interprets it. It collects traffic as well as qtype, opcode and
rcode counts.
* email plugin: Sebastian Harl has contributed this plugin which
counts received mails in categories (e. g. ham, spam, virus), spam
score (as given by SpamAssassin) and check types.
* mbmon plugin: Flavio Stanchina has contributed this plugin which
uses `mbmon' to gather information from sensors on the motherboard.
* processes plugin: Collect detailed statistics for configured
processes, that's process and thread count, CPU usage, resident
segment size and pagefaults.
* multimeter plugin: Peter Holik contributed a new plugin which
queries multimeters.
* sensors plugin: Lubos Stanek has put much effort into improving this
plugin, including `extended naming', collection of voltage values
and the possibility to ignore certain values.
2006-12-21, Version 3.10.4
* Max Kellermann has identified a bug in the server routine: When
opening a socket fails the daemon will (re)try opening the socket in
an endless loop, ultimately leading to a `EMFILE' error.
2006-11-04, Version 3.10.3
* Lubos Stanek has identified a bug in the ntpd-plugin: When the
ntpd's reply was sent in more than one packet, the buffer size was
calculated incorrectly, resulting in the reading of uninitialized or
freed memory.
2006-11-01, Version 3.10.2
* The sample config file has been improved.
* Errors in the manpages have been corrected.
* The ping-plugin now adds hosts during initialization, not during
startup. This speeds up startup when no network connectivity is
available. Also, the hosts are being added later when the network is
available.
* Improved BSD-support for the df-plugin.
* Fixed syntax errors in the swap-plugin for Mac OS X.
* Fix a wrong structure being passed to `getnameinfo' in the ntpd-
plugin.
* Don't disable the mysql-plugin if connecting to the database fails
during initialization. Instead, try again in increasing intervals.
2006-07-19, Version 3.10.1
* A bug in the apcups plugin was fixed: Is the plugin is loaded, but
the apcups cannot be reached, unconnected sockets will pile up and
eventually lead to `Too many open files' errors.
2006-07-09, Version 3.10.0
* The `disk' plugin has been ported to Darwin.
* The `battery' plugin should work on many Apple computers now.
* The `traffic' plugin can now ignore certain interfaces. Also,
statistics for sent/received packets and errors have been added.
* A plugin to monitor APC UPSes using `apcupsd' has been added. Thanks
to Anthony Gialluca for contributing this plugin and providing me
with a test environment :)
* A plugin for monitoring an NTP instance and the local clock drift
has been added.
2006-06-25, Version 3.9.4
* The Solaris code in the `swap' plugin has been changed to reflect
the numbers returned by `swap -s'. Thanks to Christophe Kalt for
working this out.
* The debugging system has been fixed to work with the Sun libc.
* When built without librrd the variable `operating_mode' could be
uninitialized. Thanks to David Elliot for reporting the bug.
2006-06-01, Version 3.9.3
* Fixed the ping-plugin under FreeBSD and Mac OS X. Potentially other
operating systems also profit from the changes, but I wasn't able to
check that.
* Changed the build system to find the netinet-includes under FreeBSD
and therefore successfully build the `liboping' library there.
2006-05-09, Version 3.9.2
* Applied a patch to the `liboping' library. Due to a bug in the
sequence checking the `ping' plugin stopped working after
approximately 7.6 days.
2006-05-09, Version 3.8.5
* Applied a patch to the `liboping' library. Due to a bug in the
sequence checking the `ping' plugin stopped working after
approximately 7.6 days.
2006-04-21, Version 3.9.1
* Build issues with Solaris and possible other architectures have been
resolved.
* Problems when building the `apache'-plugin without `libcurl' have
been resolved.
* A bug in the `ping' plugin has been fixed. Sorry folks.
2006-04-02, Version 3.9.0
* A plugin to monitor the Apache webserver has been added.
<http://httpd.apache.org/>
* A plugin to collect statistics about virtual servers using VServer.
<http://linux-vserver.org/> Thanks to Sebastian Harl for writing
this plugin :)
* A plugin for wireless LAN cards has been added. It monitors signal
strength, link quality and noise ratio..
* A plugin for Apple hardware sensors has been added.
* An option to compile collectd with different `step' and `heartbeat'
settings has been added. The size of RRAs is no longer static but
calculated based on the settings for `step' and `width'.
* The `ping' plugin can now be configured to use a certain TTL.
* A plugin to monitor the hardware sensors of Apple computers has been
added.
* The plugins `cpu', `memory', `processes' and `traffic' have been
ported to Mach/Darwin (Mac OS X).
* The `log mode' has been contributed by Christophe Kalt. It writes
the data into text files rather than RRD files.
2006-04-09, Version 3.8.4
* Applied patch by Vincent Stehlé which improves the disk-name
resolution in the `hddtemp' plugin for Linux systems.
2006-04-02, Version 3.8.3
* Applied a patch by James Byers: The MySQL plugin was not working
with MySQL 5.0.2 or later.
2006-03-14, Version 3.8.2
* `utils_mount.c' has been changed to not use the `MNTTAB' defined by
the GNU libc, because it points to `/etc/fstab' rather than
`/etc/mtab'.
2006-03-13, Version 3.8.1
* Fixes for building collectd under FreeBSD, Mac OS X and Solaris.
* Fixes in the debian `postinst' and `init.d' scripts.
2006-03-09, Version 3.8.0
* The `ping' plugin no longer uses `libping' but a self written
library named `liboping'. With this library it's possible to ping
multiple IPv4 and IPv6 addresses and hostnames - in parallel.
2006-02-18, Version 3.7.2
* A simple bug in the `battery' plugin has been fixed. It should now
work with ACPI based batteries as well. Thanks to Sebastian for
fixing this.
* Fixing a bug that prevented collectd to be built without librrd.
Thanks to Werner Heuser for reporting it.
2006-02-04, Version 3.7.1
* The new network code has been improved to build with older versions
of glibc.
* Fix in `libping' sets the ICMP sequence on outgoing packets. Thanks
to Tommie Gannert for this patch.
2006-01-30, Version 3.7.0
* The `battery' plugin has been added. It collects information about
laptop batteries..
* The MySQL plugin has been improved: It now writes two more RRD
files, `mysql_qcache.rrd' and `mysql_threads.rrd'.
* The `cpufreq' plugin now reads another file since the file it did
read so far causes much overhead in the kernel. Also, you need root
to read the old file, but not to read the new one.
* The `hddtemp' plugin can now be configured to connect to another
address and/or port than localhost.
* The `df' plugin now prefers `statvfs' over `statfs'.
* The network code has been rewritten. collectd now supports unicast
and multicast, and IPv4 and IPv6. Also, the TTL of sent packages can
be set in the configfile.
2006-01-24, Version 3.6.2
* Due to a bug in the configfile handling collectd wouldn't start in
client mode. This released fixes this.
2006-01-20, Version 3.6.1
* Due to a bug in `configure.in' all modules and the binary were
linked against `libmysqlclient'. This issue is solved by this
release.
2006-01-17, Version 3.6.0
* A config file has been added. This allows for loading only specific
plugins.
* A `df' plugin has been added.
* A `mysql' plugin has been added.
* The `ping' plugin doesn't entirely give up hope when a socket error
occurred, but will back of and increase the intervals between tries.
2006-01-21, Version 3.5.2
* Fixed yet another bug in the signal handling.. Stupid typo..
* Improved the ping plugin to not give up on socket errors (backport
from 3.6.0).
2005-12-18, Version 3.5.1
* The PID-file is now deleted correctly when shutting down the daemon.
* SIGINT and SIGTERM are now handled correctly.
2005-12-16, Version 3.5.0 (Revision 326)
* A bug in the `load' module under Solaris has been fixed.
* The `users' module has been contributed by Sebastian Harl. It counts
currently logged in users.
* The CPU module now works under FreeBSD without the use of
`libstatgrab', however SMP support is missing.
* The default directories for the RRD files and the PID file now
depend on the compile time setting of `localstatedir'.
2005-11-15, Version 3.4.0 (Revision 236)
* A PID-file is written to /var/run upon startup. Thanks to `Tommie'
from gentoo's bugzilla for writing the patch.
* The build dependency for librrd has been removed. Binaries built
without librrd are client-only and will multicast their value as
with the `-c' argument.
* A patch by Peter Holik adds a module for monitoring CPU frequencies.
* The newly introduced `-f' switch prevents daemon initialization
(forking, closing standard filehandles, etc.) Thanks to Alvaro
Barcellos for this patch.
2005-11-04, Version 3.3.0 (Revision 216)
* New modules have been added:
- `serial', for monitoring traffic on the serial interfaces
- `nfs', for graphing NFS procedure calls
- `tape', traffic from/to tape devices
* The memory.rrd now accepts more than 4Gig of memory.
2005-10-26, Version 3.2.0 (Revision 200)
* Support for graphing the processes has been added (thanks to Lyonel
Vincent)
* If reading from hddtemp fails collectd will increase the time
between polls up to one day.
* The init.d files have been improved.
* Problems with the spec file have been fixed.
2005-10-16, Version 3.1.0 (Revision 194)
* Added the `setsid' syscall to the startup code.
* Support for hddtemp has been added (thanks to Vincent Stehlé)
2005-09-30, Version 3.0.0 (Revision 184)
* The ability to send/receive data to/from the network (think
multicast) has been added.
* Modules have been split up into shared libraries can be loaded at
runtime. The biggest advantage is that the core program doesn't need
to be linked against an external library.
* A patch by George Kargiotakis has been applied: It fixes the sensors
behaviour then more than one sensor is being queried.
2005-09-16, Version 2.1.0 (Revision 172)
* A module for swap statistics has been added.
2005-09-09, Version 2.0.0 (Revision 135)
* Filenames can no longer be configured at program startup. The only
options as of this version are the directory and ping hosts.
* CPU statistics now include Wait-IO. If provided under Linux IRQ and
Soft-IRQ statistics are added to `System'.
* Diskstats now collect read and write bytes, not sectors.
* Ping statistics can now be collected for more than one host. There
is no default any more: If no host is given no host will be pinged.
* A self-written patch for libping has been applied so it builds
cleanly.
2005-09-01, Version 1.8.1 (Revision 123)
* Much improved configure-script: libraries and features may now be
disabled.
* More detailed warnings/error messages when RRD update fails.
2005-08-29, Version 1.8.0:
* Support for collecting disk statistics under Solaris.
2005-08-25, Version 1.7.0:
* Support for libstatgrab[1] for load, memory usage and network
traffic. CPU- and disk-usage are not (yet) supported, since
libstatgrab returns insufficient information. I will contact the
authors.
* Improved the CPU-initialization code for Solaris. Apparently CPUs
aren't necessarily counted linear which is now handled correctly.
[1]: http://www.i-scream.org/libstatgrab/
2005-08-21, Version 1.6.0:
* Basic support for Solaris: System load and cpu-usage can be
collected under Solaris, too. Other stats will follow later.
* Many fixes in the autoconf-script
* Collection/Museum scripts have been added under contrib/museum
* collectd may now be started in unprivileged mode, though ping
statistics will not work.
2005-07-17, Version 1.5.1:
* Diskstats-RRDs now use major/minor for naming. Some systems have
weird strings as disk-names..
2005-07-17, Version 1.5:
* A new module, diskstats, has been added. It collects information
about the disks and partitions.
2005-07-11, Version 1.4.2:
* The meminfo module has been changed to work with more platforms
and/or kernel versions.
2005-07-10, Version 1.4.1: Correct traffic stats
* The traffic rrd-file is now created with DS-type `COUNTER' which I
forgot to correct when I changed that module.
2005-07-09, Version 1.4: More traffic stats
* Traffic is now collected for all interfaces that can be found
* Temperature-statistics are read from lm-sensors if available
2005-07-08, Version 1.3: CPU stats
* Collecting CPU statistics now
2005-07-12, Version 1.2: Using syslog
* collectd is now using the syslog facility to report errors, warnings
and the like..
* The default directory is now /var/db/collectd
2005-07-10, Version 1.1: Minor changes
* Nothing really useful to say ;)
2005-07-09, Version 1.0: Initial Version
* The following modules are provided:
* Load average
* Ping time
* Traffic
* Memory info
|