Exporter for machine metrics
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Tobias Schmidt 052422ec61 Fix panic by updating github.com/ema/qdisc dependency (#778) 7 years ago
..
LICENSE.md
Makefile
README.md
get.go Fix panic by updating github.com/ema/qdisc dependency (#778) 7 years ago

README.md

qdisc Build Status

Package qdisc allows to get queuing discipline information via netlink, similarly to what tc -s qdisc show does.

Example usage

package main

import (
    "fmt"

    "github.com/ema/qdisc"
)

func main() {
    info, err := qdisc.Get()

    if err == nil {
        for _, msg := range info {
            fmt.Printf("%+v\n", msg)
        }
    }
}