. * * @package LibreNMS * @link http://librenms.org * @copyright 2018 Neil Lathwood * @author Neil Lathwood */ use App\Models\DevicePerf; $perf_info = DevicePerf::where('device_id', $device['device_id'])->latest('timestamp')->first(); $perf_debug = json_decode($perf_info['debug'], true); if ($perf_debug['traceroute']) { echo "

Traceroute ({$perf_info['timestamp']})

{$perf_debug['traceroute']}
"; }