pingers

Overview

The goal of pingers is to assist you with troubleshooting internet connection issues and assist in isolating packet loss on your network.

It does this by allowing you to retrieve the top trace route destinations your internet provider uses, and recursively ping each server in sequence while capturing the results and writing them to a log file. Each iteration it queries the destinations again, before shuffling the sequence of destinations to ensure the analysis is unbiased and consistent across each trace route.

Installation

# Install through CRAN
install.packages("pingers")

# Or the development version from GitHub
# install.packages("devtools")
devtools::install_github("jessevent/pingers")

Usage

The below showcases the main functions of the pingers package.

These functions will:

  • Retrieve hops between ISP destinations on your network
  • Ping a destination repeatedly and calculate packet loss
  • Repeat pinging the destinations to isolate and locate troublesome destinations
  • Shuffle the destinations in each iteration as to not be only testing for one path
# Install pingers from GitHub
# devtools::install_github("jessevent/pinger")
library(pingers)

# Retrieve top n traceroute results in your call stack
destinations <- get_destinations(top_n = 9)

# Ping the first result of destinations 50 times
ping_results <- ping_capture(destinations$ip[1], 50)

# File and path of where to save the network log
log_path     <- "~/Desktop/netlogs/network_logs.csv"

# Start recursively capturing network logs until cancelled or interupted.
# capture_logs(destinations = 3, pings = 10, log_path = log, sleep = 20) 

Use Ctrl + C to stop capturing logs, or the Stop button in RStudio.

Output

The network_log.csv file will contain the following:

Author/License

This project is licensed under the MIT License - see the LICENSE file for details.

Copy Link

Version

Down Chevron

Install

install.packages('pingers')

Monthly Downloads

144

Version

0.1.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

October 26th, 2018

Functions in pingers (0.1.1)