PingOutput returns the full ping output under a test ID.
(ctx context.Context, pingID TestID)
| 223 | |
| 224 | // PingOutput returns the full ping output under a test ID. |
| 225 | func (s *RunService) PingOutput(ctx context.Context, pingID TestID) (*RunOutput, error) { |
| 226 | return s.doGetRunOutput(ctx, "/run/ping/", pingID) |
| 227 | } |
| 228 | |
| 229 | // Traceroute runs a traceroute test. |
| 230 | func (s *RunService) Traceroute(ctx context.Context, ping *RunRequest) (TestID, error) { |