Skip to content

Commit

Permalink
Added --report-wide to MTR to prevent hostname cut-off
Browse files Browse the repository at this point in the history
  • Loading branch information
telephone committed Sep 24, 2012
1 parent 5594ea2 commit 9c7ebdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LookingGlass/LookingGlass.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function host($host)
public function mtr($host)
{
if ($host = $this->validate($host)) {
return $this->procExecute('mtr -4 --report', $host);
return $this->procExecute('mtr -4 --report --report-wide', $host);
}
return false;
}
Expand All @@ -82,7 +82,7 @@ public function mtr($host)
public function mtr6($host)
{
if ($host = $this->validate($host, 6)) {
return $this->procExecute('mtr -6 --report', $host);
return $this->procExecute('mtr -6 --report --report-wide', $host);
}
return false;
}
Expand Down

0 comments on commit 9c7ebdd

Please sign in to comment.