2

I have created a script to shape my traffic using tc. Is there any tool in Linux which will help me to visualize and monitor qdisc bandwidth utilization ?

Supratik
  • 2,154
  • 10
  • 51
  • 66

1 Answers1

2

tc information:

    tc -s qdisc ls dev $DEV
    tc -s class ls dev $DEV

You can use any language to process the tc output.

alvosu
  • 8,437
  • 25
  • 22