{"id":20426071,"url":"https://github.com/syswe/ntop","last_synced_at":"2025-03-20T19:20:18.969Z","repository":{"id":186403327,"uuid":"658492830","full_name":"syswe/ntop","owner":"syswe","description":"ntop is an open source tool that allows you to visually and clearly see the status of all your nodes and filtered pods on Kubernetes stages.","archived":false,"fork":false,"pushed_at":"2024-04-03T22:13:22.000Z","size":16075,"stargazers_count":28,"open_issues_count":7,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-25T17:29:31.252Z","etag":null,"topics":["go","golang","kubectl","kubectl-plugins","kubernetes","kubernetes-cluster","monitoring","monitoring-tool"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syswe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-06-25T22:39:11.000Z","updated_at":"2025-01-06T22:52:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"b8180445-3574-4c19-b121-6ddd933e2662","html_url":"https://github.com/syswe/ntop","commit_stats":null,"previous_names":["canberkdmn/ntop","devopswe/ntop","syswe/ntop"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syswe%2Fntop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syswe%2Fntop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syswe%2Fntop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syswe%2Fntop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syswe","download_url":"https://codeload.github.com/syswe/ntop/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244676451,"owners_count":20491828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","kubectl","kubectl-plugins","kubernetes","kubernetes-cluster","monitoring","monitoring-tool"],"created_at":"2024-11-15T07:15:20.431Z","updated_at":"2025-03-20T19:20:18.945Z","avatar_url":"https://github.com/syswe.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 ntop - Kubernetes Node \u0026 Pod Metrics Tool\n![ntop-logo](https://i.ibb.co/WzWRNcz/ntop-logo.png)\n\n**ntop** is an open-source tool designed to provide clear and visual insights into the status of nodes and pods in your Kubernetes cluster. Leveraging Kubernetes' metrics server, ntop fetches and displays real-time CPU and memory utilization metrics in an easy-to-consume command-line interface.\n\n![GitHub release (with filter)](https://img.shields.io/github/v/release/devopswe/ntop?style=for-the-badge) ![GitHub contributors](https://img.shields.io/github/contributors/devopswe/ntop?style=for-the-badge) ![GitHub Repo stars](https://img.shields.io/github/stars/devopswe/ntop?style=for-the-badge)\n\n---\n\n## 📚 Table of Contents\n1. [Installation](#installation)\n2. [Usage](#usage)\n3. [Features](#features)\n4. [What's New in 0.2.0](#whats-new)\n5. [Development](#development)\n6. [Roadmap](#roadmap)\n7. [Contributing](#contributing)\n8. [License](#license)\n\n## 🛠 Installation\n\n### Prerequisites:\n- `Go` (1.16 or later)\n- Access to a Kubernetes cluster\n- Kubernetes configuration file (usually at `~/.kube/config`)\n\n### Build:\nClone the repository and build the tool:\n\n```bash\ngit clone https://github.com/devopswe/ntop\ncd ntop\nGOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o ntop-linux-64-0.2.0\n```\n\n## 🖥 Usage\n\nEnsure the metrics-server is installed on your cluster:\n\n```bash\nkubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml\n```\n\n\u003e **Note**: If you encounter SSL/TLS errors, modify `components.yaml` to include the `--kubelet-insecure-tls` flag.\n\nRun ntop:\n\n```bash\n./ntop-linux-64-0.2.0 --kubeconfig=path/to/your/kubeconfig\n```\n\nOptional flags:\n\n- `--pods`: Switch to pods view.\n- `--countpods=\u003cnumber\u003e`: Specify the number of pods to display (default is 10).\n\n### Listing Nodes Example:\n![Example nodes listing of NTOP 0.2.0](assets/nodes-list.png)\n\n### Listing Top Pods Example:\n![Example pods listing of NTOP 0.2.0](assets/top-pods-list.png)\n\n## ⭐ Features\n\n- Real-time CPU and memory usage metrics for nodes and pods.\n- Toggle between node and pod views with ease.\n- Customize the number of pods displayed.\n- Simple and intuitive command-line interface.\n\n## 🌟 What's New in 0.2.0\n\n- New **live** table display of nodes and pods.\n- `--pods` flag to easily switch to pod metrics.\n- `--countpods` flag to specify the number of pods displayed.\n- Improved performance and reduced waiting times.\n- Instantaneous pod data retrieval with the new concurrent structure.\n- Cross-platform availability: Windows, Linux, MacOS (Intel \u0026 ARM).\n\nSpecial thanks to [@dbtek](https://github.com/dbtek) and [@faruktoptas](https://github.com/faruktoptas) for their contributions!\n\n## 🛠 Development\n\n### Dependencies:\n- `k8s.io/client-go` and `k8s.io/metrics` for Kubernetes interaction.\n\nUse `go mod tidy` to manage dependencies.\n\n## 🗺 Roadmap\n\nOur vision for ntop includes:\n\n1. **Modularization**: Refactor for maintainability and scalability.\n2. **`kubectl` Plugin**: Enhance accessibility and integration.\n3. **Enhanced Filtering**: Customize data display based on user preferences.\n4. **Trend Analysis**: Introduce historical data tracking and analysis.\n5. **Interactive UI**: Develop a terminal-based interactive UI.\n6. **Support Additional Resources**: Extend monitoring to more Kubernetes resources.\n\n## 🤝 Contributing\n\nContributions are welcome! Please follow the standard PR process for your contributions.\n\n## 📜 License\n\nLicensed under the Apache License, Version 2.0. See the [LICENSE](LICENSE) file for details.\n\n---\n\nEnhance your Kubernetes monitoring with **ntop**. Try it out and let us know your thoughts!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyswe%2Fntop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyswe%2Fntop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyswe%2Fntop/lists"}