Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kubeshark/kubeshark
The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. Inspired by Wireshark, purposely built for Kubernetes
https://github.com/kubeshark/kubeshark
amqp cloud-native devops devops-tools docker forensics go golang grpc incident-response kafka kubernetes microservice microservices microservices-application observability redis rest sniffer wireshark
Last synced: 2 days ago
JSON representation
The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. Inspired by Wireshark, purposely built for Kubernetes
- Host: GitHub
- URL: https://github.com/kubeshark/kubeshark
- Owner: kubeshark
- License: apache-2.0
- Created: 2021-04-19T10:29:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-20T00:02:44.000Z (4 months ago)
- Last Synced: 2024-10-25T08:49:31.423Z (4 months ago)
- Topics: amqp, cloud-native, devops, devops-tools, docker, forensics, go, golang, grpc, incident-response, kafka, kubernetes, microservice, microservices, microservices-application, observability, redis, rest, sniffer, wireshark
- Language: Go
- Homepage: https://kubeshark.co
- Size: 26.3 MB
- Stars: 10,978
- Watchers: 73
- Forks: 467
- Open Issues: 140
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-go - kubeshark/kubeshark - time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters.. Think TCPDump and Wireshark re-invented for Kubernetes|8,986| (Popular)
- stars - kubeshark/kubeshark - time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. Inspired by Wireshark, purposely built for Kubernetes (HarmonyOS / Windows Manager)
- awesome-containerized-security - kubeshark - invented for Kubernetes (Kubernetes cluster security)
- awesome-repositories - kubeshark/kubeshark - The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and cluste (Go)
- awesome-go - kubeshark - API traffic analyzer for Kubernetes, inspired by Wireshark, purposely built for Kubernetes. Stars:`11.2K`. (Software Packages / DevOps Tools)
- awesome-golang-repositories - kubeshark - invented for Kubernetes (Repositories)
- StarryDivineSky - kubeshark/kubeshark
- AiTreasureBox - kubeshark/kubeshark - 02-07_11182_1](https://img.shields.io/github/stars/kubeshark/kubeshark.svg)|The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. Inspired by Wireshark, purposely built for Kubernetes| (Repos)
- awesome-ops - kubeshark/kubeshark - 2.0|10939|2021-04-19|2024-10-06 | K8s 的 API 流量分析器,提供对 K8s 内部网络的实时协议级可见性,捕获和监控进出以及跨容器、pod、节点和集群的所有流量和负载 | (K8S-Network)
- my-awesome - kubeshark/kubeshark - native,devops,devops-tools,docker,forensics,go,golang,grpc,incident-response,kafka,kubernetes,microservice,microservices,microservices-application,observability,redis,rest,sniffer,wireshark pushed_at:2025-02 star:11.2k fork:0.5k The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters. Inspired by Wireshark, purposely built for Kubernetes (Go)
README
![]()
Want to see Kubeshark in action right now? Visit this
live demo deployment of Kubeshark.
**Kubeshark** is a network observability platform for [**Kubernetes**](https://kubernetes.io/), providing real-time, protocol-level visibility into Kubernetes’ network. It enables users to inspect all internal and external cluster connections, API calls, and data in transit. Additionally, Kubeshark detects suspicious network behaviors, triggers automated actions, and provides deep insights into the network.
![Simple UI](https://github.com/kubeshark/assets/raw/master/png/kubeshark-ui.png)
Think [TCPDump](https://en.wikipedia.org/wiki/Tcpdump) and [Wireshark](https://www.wireshark.org/) reimagined for Kubernetes.
## Getting Started
Download **Kubeshark**'s binary distribution [latest release](https://github.com/kubeshark/kubeshark/releases/latest) or use one of the following methods to deploy **Kubeshark**. The [web-based dashboard](https://docs.kubeshark.co/en/ui) should open in your browser, showing a real-time view of your cluster's traffic.### Homebrew
[Homebrew](https://brew.sh/) :beer: users can install the Kubeshark CLI with:
```shell
brew install kubeshark
kubeshark tap
```To clean up:
```shell
kubeshark clean
```### Helm
Add the Helm repository and install the chart:
```shell
helm repo add kubeshark https://helm.kubeshark.co
helm install kubeshark kubeshark/kubeshark
```
Follow the on-screen instructions how to connect to the dashboard.To clean up:
```shell
helm uninstall kubeshark
```## Building From Source
Clone this repository and run the `make` command to build it. After the build is complete, the executable can be found at `./bin/kubeshark`.
## Documentation
To learn more, read the [documentation](https://docs.kubeshark.co).
## Additional Use Cases
### Dump All Cluster-wide Traffic into a Single PCAP File
Record **all** cluster traffic and consolidate it into a single PCAP file (tcpdump-style).
Run Kubeshark to start capturing traffic:
```shell
kubeshark tap --set headless=true
```
> You can press `^C` to stop the command. Kubeshark will continue running in the background.Take a snapshot of traffic (e.g., from the past 5 minutes):
```shell
kubeshark pcapdump --time 5m
```
> Read more [here](https://docs.kubeshark.co/en/pcapdump).## Contributing
We :heart: pull requests! See [CONTRIBUTING.md](CONTRIBUTING.md) for the contribution guide.