Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions scripts/nio-diagnose
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,16 @@ function analyse_process() {
analyse_syscalls "$pid"
}

function produce_network_stats() {
declare -a command

command=( netstat -s )

output "### System-wide network statistics"
output
run_and_print "${command[@]}"
}

number_of_nio_pids=0

output "# NIO diagnose ($(shasum "${BASH_SOURCE[0]}"))"
Expand All @@ -378,6 +388,7 @@ analyse_system_versions
analyse_tcp_conns
analyse_udp
analyse_uds
produce_network_stats
analyse_procs
analyse_ulimit

Expand Down
Loading