{"id":23760652,"url":"https://github.com/george0st/qgate-graph","last_synced_at":"2025-04-04T17:04:25.838Z","repository":{"id":199484588,"uuid":"633577776","full_name":"george0st/qgate-graph","owner":"george0st","description":"The graph visualization under quality gate solution","archived":false,"fork":false,"pushed_at":"2024-12-04T11:28:58.000Z","size":3240,"stargazers_count":118,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T16:04:29.330Z","etag":null,"topics":["graphs","python","quality-gate"],"latest_commit_sha":null,"homepage":"","language":"Python","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/george0st.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,"publiccode":null,"codemeta":null}},"created_at":"2023-04-27T20:20:36.000Z","updated_at":"2025-03-16T14:50:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"20490cc4-61f7-4140-a841-069de977f6a0","html_url":"https://github.com/george0st/qgate-graph","commit_stats":null,"previous_names":["george0st/qgate-graph"],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george0st%2Fqgate-graph","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george0st%2Fqgate-graph/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george0st%2Fqgate-graph/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george0st%2Fqgate-graph/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/george0st","download_url":"https://codeload.github.com/george0st/qgate-graph/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247217173,"owners_count":20903008,"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":["graphs","python","quality-gate"],"created_at":"2024-12-31T20:32:59.401Z","updated_at":"2025-04-04T17:04:25.820Z","avatar_url":"https://github.com/george0st.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![PyPI version fury.io](https://badge.fury.io/py/qgate-graph.svg)](https://pypi.python.org/pypi/qgate-graph/)\n![coverage](https://github.com/george0st/qgate-graph/blob/main/coverage.svg?raw=true)\n![GitHub commit activity](https://img.shields.io/github/commit-activity/w/george0st/qgate-graph)\n![GitHub release](https://img.shields.io/github/v/release/george0st/qgate-graph)\n\n# QGate-Graph\n\nThe QGate graph generates graphical outputs based on performance tests (QGate Perf). Key benefits:\n - provide graphs about Performance/Throughput and Response time (on typically client side)\n - provide graphs about Executors in time\n\nIt is a quick way, how you can identify real performance for your python solution.\n\nNOTE: These graphs only visualize outputs from performance tests (QGate Perf), it is not replacement of\ndetail views from Grafana, Prometheus, etc. in detail of CPU, GPU, RAM, I/O etc. on \nside of testing system. \n\n## Usage\n\n```python\nfrom qgate_graph.graph_performance_txt import GraphPerformanceTxt\nfrom qgate_graph.graph_performance_csv import GraphPerformanceCsv\nfrom qgate_graph.graph_performance import GraphPerformance\nfrom qgate_graph.graph_executor import GraphExecutor\nimport logging\n\n# setup login level\nlogging.basicConfig()\nlogging.getLogger().setLevel(logging.INFO)\n\n# generate performance/throughput graphs\ngraph=GraphPerformance()\ngraph.generate_from_dir()\n\n# generate executors in time graphs\ngraph=GraphExecutor()\ngraph.generate_from_dir()\n\n# generate performance/throughput graphs in TXT form\ngraph=GraphPerformanceTxt()\ngraph.generate_from_dir()\n\n# generate performance/throughput graphs in CSV form\ngraph=GraphPerformanceCsv()\ngraph.generate_from_dir()\n```\n\n## Sample of outputs\n#### Performance/Throughput \u0026 Response time\n![graph](https://github.com/george0st/qgate-graph/blob/main/assets/PRF-Calc-2023-05-06_18-22-19-bulk-1x10.png?raw=true)\n![graph](https://github.com/george0st/qgate-graph/blob/main/assets/PRF-NoSQL_igz_nonprod-2023-04-23_14-41-18-bulk-100x50.png?raw=true)\n\n#### Executors in time\n![graph](https://github.com/george0st/qgate-graph/blob/main/assets/EXE-Calc-2023-05-06_18-22-19-bulk-1x10-plan-128x4.png?raw=true)\n![graph](https://github.com/george0st/qgate-graph/blob/main/assets/EXE-NoSQL-2023-05-04_19-33-30-bulk-1x50-plan-8x2.png?raw=true)\n\n#### Performance/Throughput \u0026 Response time in [TXT form](https://github.com/george0st/qgate-graph/blob/main/assets/TXT-cassandra-163551-W1-low-RAW-2024-10-11_14-36-07-bulk-200x10.txt?raw=true)\n![Performance in TXT](https://github.com/george0st/qgate-graph/blob/main/assets/TXT-cassandra-163551-W1-low-RAW-2024-10-11_14-36-07-bulk-200x10.png?raw=true)\n\n#### Performance/Throughput \u0026 Response time in [CSV form](https://github.com/george0st/qgate-graph/blob/main/assets/CSV-cassandra-235115-W2-med-RAW-2024-10-11_22-14-47-bulk-200x20.csv?raw=true)\n![Performance in CSV](https://github.com/george0st/qgate-graph/blob/main/assets/CSV-cassandra-235115-W2-med-RAW-2024-10-11_22-14-47-bulk-200x20.png?raw=true)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge0st%2Fqgate-graph","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorge0st%2Fqgate-graph","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge0st%2Fqgate-graph/lists"}