summaryrefslogtreecommitdiffstats
path: root/api/ifcounters/doc.go
diff options
context:
space:
mode:
authorMilan Lenco <milan.lenco@pantheon.tech>2017-06-20 17:15:59 +0200
committerMilan Lenco <milan.lenco@pantheon.tech>2017-06-20 17:39:14 +0200
commit0b6ef19a7de5b073b7818013930cc7f07526c929 (patch)
treec6f6c657001ebc5613cda2168060cec7bd453c20 /api/ifcounters/doc.go
parent878bade578bb9d52547591ee02b57d1ac04849b2 (diff)
Upgrade dependency to VPP 17.07 RC0
Change-Id: I732d478b71895f4d3889752c683dbb6a84c6e17c Signed-off-by: Milan Lenco <milan.lenco@pantheon.tech>
Diffstat (limited to 'api/ifcounters/doc.go')
-rw-r--r--api/ifcounters/doc.go29
1 files changed, 0 insertions, 29 deletions
diff --git a/api/ifcounters/doc.go b/api/ifcounters/doc.go
deleted file mode 100644
index 35c7f7b..0000000
--- a/api/ifcounters/doc.go
+++ /dev/null
@@ -1,29 +0,0 @@
-// Package ifcounters provides the helper API for decoding VnetInterfaceCounters binary API message
-// that contains binary-encoded statistics data into the Go structs that are better consumable by the Go code.
-//
-// VPP provides two types of interface counters that can be encoded inside of a single VnetInterfaceCounters
-// message: simple and combined. For both of them, ifcounters API provides a separate decode function:
-// DecodeCounters or DecodeCombinedCounters. The functions return a slice of simple or combined counters respectively:
-//
-// notifMsg := <-notifChan:
-// notif := notifMsg.(*interfaces.VnetInterfaceCounters)
-//
-// if notif.IsCombined == 0 {
-// // simple counter
-// counters, err := ifcounters.DecodeCounters(ifcounters.VnetInterfaceCounters(*notif))
-// if err != nil {
-// fmt.Println("Error:", err)
-// } else {
-// fmt.Printf("%+v\n", counters)
-// }
-// } else {
-// // combined counter
-// counters, err := ifcounters.DecodeCombinedCounters(ifcounters.VnetInterfaceCounters(*notif))
-// if err != nil {
-// fmt.Println("Error:", err)
-// } else {
-// fmt.Printf("%+v\n", counters)
-// }
-// }
-//
-package ifcounters