SkillAgentSearch skills...

KubeNodeUsage

KubeNodeUsage is a Terminal App designed to provide insights into Kubernetes node and pod usage. It offers both interactive exploration and command-line filtering options to help you analyze your cluster effectively right from your terminal

Install / Use

/learn @AKSarav/KubeNodeUsage
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

KubeNodeUsage

GitHub releaseGitHub all releasesGitHub stars

Go-VersionGitHubGitHub issuesGitHub pull requests

KubeNodeUsage is a Terminal App designed to provide insights into Kubernetes node and pod usage. It offers both interactive exploration and command-line filtering options to help you analyze your cluster effectively right from your terminal .

Available to download from Brew and Goinstall

You no longer have to wait for that prometheus and grafana - Just check the usage visually right from terminal.

Alt text

KubeNodeUsage use your local KubeConfig file to connect to the cluster and use Kubernetes API directly using Kubernetes GO SDK

It fetches the Node and Pod Metrics from Kubernetes API and apply filters and aggreations to display it in a nice human readable Graphical format as Bar Charts.

🌟 Newly added Features v3.0.4

  • Smart Search: Press S to instantly filter and highlight matching entries
    • Real-time filtering as you type
    • Headers remain visible for context
    • Match count display
    • Press ESC to exit search mode
  • Horizontal Scrolling: Use and arrows to view wide content
    • Smooth scrolling for large tables
    • Preserves column alignment
  • New Pod Usage:
    • Now you can see Pod usage in KubeNodeUsage
  • Extra fields in NodeUsage
    • Thanks to the Horizontal scrolling - we can show more fields like Uptime and Status
  • More accurate diskusage calculation
    • Bringing you the accurate diskusage calculation for POD and Node using /stats/summary endpoint in Kubelet

🚀 Existing Features

  • Filter output by Node, Color, Label
  • Display any specific Node Label as a Custom field
  • Metrics are dynamically updated every 2 seconds, so you get the real time data always
  • Choose to not display the ClusterInfo for additional security
  • No data collected everything is local
  • Sorting with Ascending and Descending

Options for Filtering and Sorting

Perfect for scripting and automation:

  • Node/Pod Filtering:
    • --filternodes: Filter by node name using regex
    • --filtercolor: Filter by usage levels (green/orange/red)
    • --filterlabel: Filter by label key-value pairs
  • Sorting Options:
    • --sortby: Sort by various metrics (name, free, usage, etc.)
    • --desc: Reverse sort order
  • Display Options:
    • --noinfo: To not display the Cluster information ( can sometimes be confidential ) - Default is to display
    • --label: To display a specific lable with custom FieldName

 

Refer the Options and Screenshots section for more details

 

Screenshots 📸

:sparkle: Screenshot of Latest Version 3.0.1 with Cluster Info

Alt text

:sparkle: Screenshot of Version 3.0.2 with Label Column and Total Pods Count with -noinfo flag ( to turn off Cluster Info)

Alt text

:sparkle: Screenshot of Multiple RegEx patterns with FilterNodes

Alt text

 

:sparkle: Screenshot of Label Filtering with FilterLabel

Alt text

:sparkle: Screenshot of Search and PodUsage Alt text

:sparkle: More powerful DiskUsage for Pods and Nodes powered by Kubelet /stats endpoint

Alt text

:sparkle: Pods Memory by Sort - All the filters and sorts are available for Pods too

Alt text

Kubernetes Supported Versions / Clusters :white_check_mark:

As KubeNodeUsage use the Kubernetes Go SDK and directly connects to the API - It supports all the Kubernetes cluster which supports .kube/config file based authentication

Clusters

I have tested it with the following K8s clusters

  • EKS - Elastic Kubernetes Service from AWS
  • Azure Kubernetes Service
  • GKE - Google Kubernetes Engine
  • Minikube
  • Kind Cluster
  • Rancher Kubernetes Engine

Versions

I have tested KubeNodeUsage starting from 1.19 - 1.29 ( the latest stable version as of 30th June)

 

How it Works :bulb:

KubeNodeUsage is written in GoLang and uses client-go and kubernetes SDK libraries

When you start KubeNodeUsage - It try to read the $HOME/.kube/config file in your HOME directory

KubeNodeUsage connects to the Default cluster set by the CurrentContext on the ./kube/config file

You can manually edit this file and update it but the recommended way to update current-context is to use kubectl config use-context

KubeNodeUsage does not use kubectl directly and it relies on the .kube/config file and the authentication method defined in there

KubeNodeUsage works the same way - kubectl works based on the configuration information found on .kube/config file

If the kubectlcommands are not working - its highly likely KubeNodeUsage would fail too - In this case you have to check your Kube config file

 

Is it secure ? How about Data Privacy :lock:

KubeNodeUsage do not collect any data of your cluster or usage.  

How to Download :arrow_double_down:

You can clone this project and run it as shown below

Brew Install 🍺

brew tap AKSarav/kubenodeusage
brew install kubenodeusage

Note: If you are using Brew install - You have to use all lowercase letters for the command kubenodeusage instead of KubeNodeUsage

With GO install command 🚀

go install github.com/AKSarav/KubeNodeUsage/v3@v3.0.4

Clone and Run 👨‍💻

git clone https://github.com/AKSarav/KubeNodeUsage.git
cd Kube-Node-Usage
go run main.go

Download the Binaries from the Release Page 📦

Goto the https://github.com/AKSarav/KubeNodeUsage/releases and download the suitable binary for your OS and use it

unzip KubeNodeUsage-windows-386.exe.zip
./KubeNodeUsage-windows-386

 

How to use :book:

KubeNodeUsage is a command line utility with lot of startup options/flags

KubeNodeUsage [options]

You can find the detail information on all available options here

  Available Options :memo:

  • help: Display help information.

  • noinfo : Disable the Cluster Info display. ( New feature in V3.0.2)

  • metrics: Choose which metric to display. Valid options include:

    • memory
    • disk
    • cpu
  • filternodes: Filter nodes based on node name using a regular expression. (Note: Only one filter can be used at a time, and the input should be enclosed in quotes.)

  • filtercolor: Filter nodes based on color categories. Valid options include:

    • red
    • green
    • orange
  • filterlabel: Filter nodes based on the label key-value pair. ( New feature in V3.0.2) Syntax is --filterlabel=<label-key>=<label-value>

  • debug: Enable debug mode. ( Prints more logging for debug)

  • sortby: Sort the output by a specific metric. Valid options include:

    • name (Sort by node name alphabetically)

    • node (Sort by node name alphabetically, same as 'name')

    • free (Sort by available resources)

    • usage (Sort by resource usage)

    • color (Sort by color category, same as usage)

    • capacity (Sort by resource capacity)

    • max (Sort by maximum resource value, same as 'capacity')

  • desc: Enable reverse sort order.

  • label: Display the Label information as a new column in the output. ( New feature in V3.0.2) Syntax is --label=<label-key>#<columnname>

 

Examples 📝

# Display help information
KubeNodeUsage --help

# Display node usage with default settings (memory is the default metric)
KubeNodeUsage

# To disable the Cluster Info display use --noinfo flag with any other options
KubeNodeUsage --noinfo
KubeNodeUsage --noinfo --metrics cpu
KubeNodeUsage --noinfo --metrics cpu --sortby usage --desc

# Display node usage sorted by node name
KubeNodeUsage --sortby name

# Display node usage sorted by free resources in descending order
KubeNodeUsage --sortby free --desc

# Display node usage sorted by usage in ascending order
KubeNodeUsage --sortby usage

# Display node usage sorted by capacity in descending order
KubeNodeUsage --sortby capacity --desc

# Filter nodes with a name starting with "web" - supports regular expression
KubeNodeUsage --filternodes "web.*"

# Filter nodes with color category "green"
KubeNodeUsage --filtercolor green

# Display memory usage for all nodes
KubeNodeUsage --metrics memory

# Display disk usage for nodes with a name containing "data"
KubeNodeUsage --metrics disk --filternodes ".*data.*"

# Show CPU usage for nodes with color category "red" in descending order
KubeNodeUsage --metrics cpu --filtercolor red --desc

# Display node usage sorted by maximum resource value in ascending order
KubeNodeUsage --sortby max

# Display node usage sorted by capacity, show memory usage, and filter nodes with a name starting with "prod"
KubeNodeUsage --sortby capacity --metrics memory --filternodes "prod.*"

# Show CPU usage for nodes with a name containing "IP range" - here we are using multiple regex patterns as comma separated values
KubeNodeUsage --metrics cpu --filternodes ".*172-31.*",".*172-32.*"

# Display node usage sorted by name, filter nodes with a name starting with "app", and enable debug mode
KubeNodeUsage --sortby name --filternodes "app.*" --debug

# Display Label as a new column in the output. use the `--label` the synt
View on GitHub
GitHub Stars257
CategoryDevelopment
Updated9d ago
Forks23

Languages

Go

Security Score

100/100

Audited on Mar 28, 2026

No findings