{"id":22135537,"url":"https://github.com/nikita-filonov/load-testing-hub-api","last_synced_at":"2025-10-12T10:31:50.439Z","repository":{"id":252924554,"uuid":"841924099","full_name":"Nikita-Filonov/load-testing-hub-api","owner":"Nikita-Filonov","description":"API for https://github.com/Nikita-Filonov/load-testing-hub-panel","archived":false,"fork":false,"pushed_at":"2025-08-09T15:32:10.000Z","size":250,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T16:32:19.261Z","etag":null,"topics":["fastapi","performance","performance-analysis","performance-metrics","performance-monitoring","performance-testing","performance-visualization","postgresql","python","sqlalchemy"],"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/Nikita-Filonov.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":"2024-08-13T10:14:50.000Z","updated_at":"2025-08-09T15:31:56.000Z","dependencies_parsed_at":"2024-12-14T09:27:06.778Z","dependency_job_id":"0e7f1981-ef5c-4d4d-bda7-7a3ef3ac18f8","html_url":"https://github.com/Nikita-Filonov/load-testing-hub-api","commit_stats":null,"previous_names":["nikita-filonov/load-testing-hub-api"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/Nikita-Filonov/load-testing-hub-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nikita-Filonov%2Fload-testing-hub-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nikita-Filonov%2Fload-testing-hub-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nikita-Filonov%2Fload-testing-hub-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nikita-Filonov%2Fload-testing-hub-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nikita-Filonov","download_url":"https://codeload.github.com/Nikita-Filonov/load-testing-hub-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nikita-Filonov%2Fload-testing-hub-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011063,"owners_count":26084865,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["fastapi","performance","performance-analysis","performance-metrics","performance-monitoring","performance-testing","performance-visualization","postgresql","python","sqlalchemy"],"created_at":"2024-12-01T19:15:08.079Z","updated_at":"2025-10-12T10:31:50.432Z","avatar_url":"https://github.com/Nikita-Filonov.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Load testing hub API\n\nIf you have any questions, you can ask [@Nikita Filonov](https://t.me/sound_right)\n\n## 🚀 Quick Start\n\nRun **Load Testing Hub** locally in just a couple of commands.\n\n### 1. Create [.env.load-testing-hub](./examples/.env.load-testing-hub) in the project root\n\n```dotenv\n# API\nPOSTGRES.PORT=5432\nPOSTGRES.HOST=postgres\nPOSTGRES.DATABASE=load_testing_metrics_db\nPOSTGRES.USERNAME=load_testing_metrics_user\nPOSTGRES.PASSWORD=load_testing_metrics_password\n\nKIBANA_URL=http://localhost:3001\nGRAFANA_URL=http://localhost:3001\nKUBERNETES_URL=http://localhost:3001\n\n# Panel\nSERVER_URL=http://localhost:13000\nAPI_VERSION=/api/v1\nDURATION_FORMAT=m[m]s[s]\nAPI_DATE_FORMAT=YYYY-MM-DD\nAPI_TIME_FORMAT=HH:mm:ss\nPICKER_DATE_FORMAT=dd.MM.yyyy\nPICKER_TIME_FORMAT=HH:mm\n```\n\n### 2. Create [docker-compose.yaml](./examples/docker-compose.yaml)\n\n```yaml\nversion: \"3.9\"\n\nservices:\n  api:\n    image: nikitafilonov/load-testing-hub-api:latest\n    ports: [ \"13000:13000\" ]\n    env_file: [ .env.load-testing-hub ]\n    depends_on:\n      migrator:\n        condition: service_completed_successfully\n    container_name: api\n\n  panel:\n    image: nikitafilonov/load-testing-hub-panel:latest\n    ports: [ \"13100:13100\" ]\n    env_file: [ .env.load-testing-hub ]\n    container_name: panel\n\n  migrator:\n    image: nikitafilonov/load-testing-hub-api:latest\n    command: alembic upgrade head\n    env_file: [ .env.load-testing-hub ]\n    depends_on:\n      postgres:\n        condition: service_healthy\n    container_name: migrator\n\n  postgres:\n    image: postgres:16-alpine\n    ports: [ \"5432:5432\" ]\n    volumes: [ postgres_data:/var/lib/postgresql/data ]\n    environment:\n      POSTGRES_DB: load_testing_metrics_db\n      POSTGRES_USER: load_testing_metrics_user\n      POSTGRES_PASSWORD: load_testing_metrics_password\n    healthcheck:\n      test: [ \"CMD-SHELL\", \"pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}\" ]\n      retries: 5\n      timeout: 3s\n      interval: 5s\n    container_name: postgres\n\nvolumes:\n  postgres_data:\n```\n\n### 3. Run the project\n\n```shell\ndocker compose up -d\n```\n\n### 4. Open in your browser\n\n- API: http://localhost:13000/docs\n- Panel: http://localhost:13100\n\n## Project setup\n\n```shell\ngit clone https://github.com/Nikita-Filonov/load-testing-hub-api.git\ncd load-testing-hub-api\n\npip install -r requirements.txt\nuvicorn main:app --reload\n```\n\n## Apply migrations\n\n```shell\nalemibc upgrade head\n```\n\n## Architecture\n\n![Architecture](docs/architecture/architecture.png \"Architecture\")","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikita-filonov%2Fload-testing-hub-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnikita-filonov%2Fload-testing-hub-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikita-filonov%2Fload-testing-hub-api/lists"}