diff --git a/plugins/telegraf_pfinterface.php b/plugins/telegraf_pfinterface.php new file mode 100755 index 0000000..401081d --- /dev/null +++ b/plugins/telegraf_pfinterface.php @@ -0,0 +1,44 @@ +#!/usr/local/bin/php-cgi -f + $friendly) { + $ifinfo = get_interface_info($ifname); + $ifstatus = $ifinfo['status']; + $ifconf = $config['interfaces'][$ifname]; + $ipaddr = get_interface_ip($ifname); + $subnet = get_interface_subnet($ifname); + $ipaddr6 = get_interface_ipv6($ifname); + $subnet6 = get_interface_subnetv6($ifname); + $realif = get_real_interface($ifname); + $mac = get_interface_mac($realif); + + if (strtolower($ifstatus) == "up"){ + $ifstatus = 1; + } + if (strtolower($ifstatus) == "no carrier"){ + $ifstatus = 0; + } + if (!isset($ifstatus)){ + $ifstatus = "Unknown"; + } + + if (!empty($ipaddr)) { + printf("interface,host=%s,name=%s,ip_address=%s,mac_address=%s,friendlyname=%s,source=%s status=%s\n", + $host, + $realif, + $ipaddr, + $mac, + $friendly, + $source, + $ifstatus + ); + } +} +?> \ No newline at end of file