{"id":13821703,"url":"https://github.com/cilium/hubble-ui","last_synced_at":"2025-05-14T14:08:53.678Z","repository":{"id":38085890,"uuid":"236549577","full_name":"cilium/hubble-ui","owner":"cilium","description":"Observability \u0026 Troubleshooting for Kubernetes Services","archived":false,"fork":false,"pushed_at":"2025-05-12T18:09:29.000Z","size":46445,"stargazers_count":434,"open_issues_count":53,"forks_count":65,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-05-12T21:48:46.116Z","etag":null,"topics":["cilium","ebpf","graphical","kubernetes","observability","reactjs","security","troubleshooting","ui"],"latest_commit_sha":null,"homepage":"https://www.cilium.io","language":"TypeScript","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/cilium.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-01-27T17:29:11.000Z","updated_at":"2025-05-10T16:29:10.000Z","dependencies_parsed_at":"2023-12-22T12:23:37.407Z","dependency_job_id":"c7c2908f-0bac-484a-b0ed-8b36497faffd","html_url":"https://github.com/cilium/hubble-ui","commit_stats":{"total_commits":511,"total_committers":28,"mean_commits":18.25,"dds":0.6379647749510764,"last_synced_commit":"a06e19ba65299c63a58034a360aeedde9266ec01"},"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cilium%2Fhubble-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cilium%2Fhubble-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cilium%2Fhubble-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cilium%2Fhubble-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cilium","download_url":"https://codeload.github.com/cilium/hubble-ui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254159991,"owners_count":22024566,"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":["cilium","ebpf","graphical","kubernetes","observability","reactjs","security","troubleshooting","ui"],"created_at":"2024-08-04T08:01:26.419Z","updated_at":"2025-05-14T14:08:48.668Z","avatar_url":"https://github.com/cilium.png","language":"TypeScript","funding_links":[],"categories":["ui","TypeScript"],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eHubble UI\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n  Hubble UI is an open-source user interface for \u003ca href=\"https://github.com/cilium/hubble\"\u003eCilium Hubble\u003c/a\u003e.\n\u003c/p\u003e\n\n## 🚀 Installation\n\nHubble UI is installed as part of Hubble. Please see the Hubble [Getting Started Guide](https://docs.cilium.io/en/stable/gettingstarted/hubble/#deploy-cilium-and-hubble) for instructions.\n\n## 🌐 Why Hubble UI?\n\nTroubleshooting microservices application connectivity is a challenging task. Simply looking at `kubectl get pods` does not indicate dependencies between each service, external APIs, or databases.\n\nHubble UI enables zero-effort automatic discovery of the service dependency graph for Kubernetes Clusters at L3/L4 and even L7, allowing user-friendly visualization and filtering of those dataflows as a Service Map.\n\nSee [Hubble Getting Started Guide](https://docs.cilium.io/en/stable/gettingstarted/hubble/#deploy-cilium-and-hubble) for details.\n\n![Service Map](promo/servicemap.png)\n\n## 🛠 Development\n\n### Backend\n\nIf you want to point the frontend to a backend deployed in Minikube, simply create a port forward.\n\n```shell\nkubectl port-forward -n kube-system deployment/hubble-ui 8081\n```\n\nTo make changes to the Go backend, there are additional steps.\n\n1. Go to the 📁 `backend` directory and execute `./ctl.sh`.\n\n   ```shell\n   cd ./backend\n   ./ctl.sh run\n   ```\n\n   Wait until the build and server are running.\n\n2. In a separate terminal, enter the 📁 `server` directory containing the Envoy config.\n\n   ```shell\n   cd ./server\n   ```\n\n   Assuming Envoy has already been installed, execute:\n\n   ```shell\n   envoy -c ./envoy.yaml\n   ```\n\n3. In a separate terminal, run a port forward to Hubble Relay.\n\n   ```shell\n   kubectl port-forward -n kube-system deployment/hubble-relay 50051:4245\n   ```\n\n#### Docker 🐳\n\nBuild the backend Docker image:\n\n```shell\nmake hubble-ui-backend\n```\n\n### Frontend\n\n1. Install dependencies.\n\n```shell\nnpm install\n```\n\n2. Start the development server.\n\n```shell\nnpm run watch\n```\n\n3. Open [http://localhost:8080](http://localhost:8080)\n\n#### Docker 🐳\n\nBuild the frontend Docker image:\n\n```shell\nmake hubble-ui\n```\n\n## 🐝 Community\n\nLearn more about the [Cilium community](https://github.com/cilium/cilium#community).\n\n## 🌏 Releases\n\nPush a tag into GitHub and ping a maintainer to accept the [GitHub action run](https://github.com/cilium/hubble-ui/actions) which pushes the built images into the official repositories.\n\n## ⚖️ License\n\n[Apache License, Version 2.0](https://github.com/cilium/hubble-ui/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcilium%2Fhubble-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcilium%2Fhubble-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcilium%2Fhubble-ui/lists"}