Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugtool: Deduplicate tc qdisc commands #32455

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions bugtool/cmd/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ func defaultCommands(confDir string, cmdDir string, k8sPods []string) []string {
"ip -6 n",
"ss -t -p -a -i -s -n -e",
"ss -u -p -a -i -s -n -e",
"tc qdisc show",
"tc -d -s qdisc show",
"uname -a",
"top -b -n 1",
"uptime",
Expand Down Expand Up @@ -122,8 +120,8 @@ func defaultCommands(confDir string, cmdDir string, k8sPods []string) []string {
fmt.Sprintf("ls -la /proc/$(pidof %s)/fd", components.CiliumAgentName),
"lsmod",
// tc
"tc -s qdisc", // Show statistics on queuing disciplines
"tc qdisc show",
"tc -d -s qdisc show", // Show statistics on queuing disciplines
}

// LB and CT map for debugging services; using bpftool for a reliable dump
Expand Down