{"id":18399151,"url":"https://github.com/mgubaidullin/kepaso","last_synced_at":"2026-04-08T20:51:20.954Z","repository":{"id":92156854,"uuid":"294274131","full_name":"mgubaidullin/kepaso","owner":"mgubaidullin","description":"Small and easy-to-use Dashboard for CloudEvents","archived":false,"fork":false,"pushed_at":"2020-09-14T13:42:23.000Z","size":5938,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-19T11:19:38.780Z","etag":null,"topics":["charts","cloudevents","dart","flutter","java","quarkusio"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/mgubaidullin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"publiccode":null,"codemeta":null}},"created_at":"2020-09-10T01:49:37.000Z","updated_at":"2023-10-24T15:46:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"c3523f6c-f081-4eaf-9fa8-76efb7e35be4","html_url":"https://github.com/mgubaidullin/kepaso","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mgubaidullin/kepaso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgubaidullin%2Fkepaso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgubaidullin%2Fkepaso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgubaidullin%2Fkepaso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgubaidullin%2Fkepaso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgubaidullin","download_url":"https://codeload.github.com/mgubaidullin/kepaso/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgubaidullin%2Fkepaso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31573788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["charts","cloudevents","dart","flutter","java","quarkusio"],"created_at":"2024-11-06T02:25:56.480Z","updated_at":"2026-04-08T20:51:20.932Z","avatar_url":"https://github.com/mgubaidullin.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KEPASO\n\n![Build](https://img.shields.io/badge/KEPASO_Build_with--\u003e-gray.svg?style=for-the-badge)\n![Java](https://img.shields.io/badge/-Java-blue.svg?style=for-the-badge\u0026logo=Java)\n![Quarkus](https://img.shields.io/badge/-Quarkus-blue.svg?style=for-the-badge)\n![Flutter](https://img.shields.io/badge/-Flutter-blue.svg?style=for-the-badge\u0026logo=Flutter)\n![License](https://img.shields.io/badge/License-Apache-green.svg?style=for-the-badge)\n\nSmall and easy-to-use Dashboard for CloudEvents.  \n\n![Monitoring](img/monitoring.gif)\n \n## Requirements\n- User should be able to POST data is JSON CloudEvent format\n- User should be able to observe data as a Chart\n- User should be able to start application in Docker container\n\n## Architecture\n![Architecture](img/architecture.png)\n\n- UI - Flutter-based web interface\n- Backend Quarkus-based application\n\n## Install \nPull docker image from [DockerHub](https://hub.docker.com/r/kepaso/kepaso)\n```\ndocker pull kepaso/kepaso\n```\n\n## Build \nRequires Git and Docker installed.\n```\ngit clone git@github.com:mgubaidullin/kepaso.git\ndocker build -t kepaso/kepaso .\n```\n\n## Run\nApplication start\n```\ndocker run -p 8080:8080 kepaso/kepaso\nopen http://localhost:8080\n```\n\nPost cloudevent to ```http://host:port/events```\n```\n{\n    \"specversion\": \"1.0\",\n    \"type\": \"com.example.someeventX\",\n    \"source\": \"/some-source\",\n    \"id\": \"C234-1234-1232\",\n    \"time\": \"2018-04-05T17:31:00Z\",\n    \"datacontenttype\": \"application/json\",\n    \"data\": {\n        \"appinfoA\": 123,\n        \"appinfoB\": 456,\n        \"appinfoC\": 789\n    }\n}\n```\nCommand-line demo:\n```\ncurl -X POST \"http://0.0.0.0:8080/events\" -H  \"accept: application/json\" -H  \"Content-Type: application/json\" -d '{\"specversion\" : \"1.0\",\"type\" : \"com.example.someevent\",\"source\" : \"/mycontext1\",\"id\" : \"C234-1234-1232\",\"time\" : \"2018-04-05T17:31:00Z\",\"datacontenttype\" : \"application/json\",\"data\" : {\"value\" : 1220,\"appinfoB\" : 1,\"appinfoC\" : 500}}'\n```\n\nUI demo (click \"Start demo\" button):\n\n![Intro](img/intro.png)\n\n**Enjoy your dashboard!**\n\u003c/br\u003e\n\u003c/br\u003e\n\u003c/br\u003e\n## Performance\nStartup time\n```\nkepaso 1.0.0 native (powered by Quarkus 1.7.3.Final) started in 0.039s.\n```\nContainer size\n```\nREPOSITORY                 IMAGE ID            CREATED             SIZE\nkepaso/kepaso              35e7dda20516        16 minutes ago      61.2MB\n```\nMemory usage after start\n```\nCONTAINER ID        NAME                CPU %               MEM USAGE \n5f77fd99167d        kepaso              0.01%               5.488MiB\n```\nMemory usage while processing 1000s of events processed\n```\nCONTAINER ID        NAME                CPU %               MEM USAGE \n5f77fd99167d        kepaso              12.43%              21.03MiB\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgubaidullin%2Fkepaso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgubaidullin%2Fkepaso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgubaidullin%2Fkepaso/lists"}