简体   繁体   中英

How can I convert and append to a slice of strings in Golang a net type variable from go-ping repository?

This is the entire code, not much different from the one you can find on the git repo page.

package main
import (
    "fmt"
    "github.com/go-ping"
    "time"
)

var stats = [][]string{nil}

func pinging(domain string, interval int, unit string, exit int) {

current_time:= time.Now().Local()
current_time.Format("02-01-2000")

switch unit {

case "ms":
    interval *= 1
case "sec":
    interval *= 1000
case "min":
    interval *= 6000

}

pinger, err := ping.NewPinger(domain)
if err != nil {
    panic(err)
}

// interval between ping
pinger.Interval=time.Millisecond*time.Duration(interval)

//number of total pings
pinger.Count=exit

pinger.OnRecv = func(pkt *ping.Packet) {
    fmt.Printf("%d bytes from %s: icmp_seq=%d time=%v\n",
        pkt.Nbytes, pkt.IPAddr, pkt.Seq, pkt.Rtt)
}
pinger.OnFinish = func(stats *ping.Statistics) {
    fmt.Printf("\n--- %s ping statistics ---\n", stats.Addr)
    fmt.Printf("%d packets transmitted, %d packets received, %v%% packet loss\n",
        stats.PacketsSent, stats.PacketsRecv, stats.PacketLoss)
    fmt.Printf("round-trip min/avg/max/stddev = %v/%v/%v/%v\n",
        stats.MinRtt, stats.AvgRtt, stats.MaxRtt, stats.StdDevRtt)
}

fmt.Printf("PING %s (%s):\n", pinger.Addr(), pinger.IPAddr())
pinger.Run()

}

I need to convert and append to a slice of string these variables pkt.Nbytes, pkt.IPAddr, pkt.Seq, pkt.Rtt, which are type *net from this repo https://github.com/sparrc/go-ping .

I need to do so because after that I'll print everything to a .csv How could I do that?

Use fmt.Sprintf with your example code:

var s []string
s = append(s, fmt.Sprintf("%d", pkt.Nbytes)
s = append(s, fmt.Sprintf("%s", pkt.IPAddr)
s = append(s, fmt.Sprintf("%d", pkt.Seq)
s = append(s, fmt.Sprintf("%v", pkt.Rtt)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM