mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-18 14:40:12 +01:00
27 lines
532 B
Markdown
27 lines
532 B
Markdown
|
qdisc [![Build Status](https://travis-ci.org/ema/qdisc.svg?branch=master)](https://travis-ci.org/ema/qdisc)
|
||
|
=====
|
||
|
|
||
|
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)
|
||
|
}
|
||
|
}
|
||
|
}
|