# flask-metrics-high-load **Repository Path**: mirrors_getsentry/flask-metrics-high-load ## Basic Information - **Project Name**: flask-metrics-high-load - **Description**: Flask application with one route that generated 100,000 metrics. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-16 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Running the app ```bash flask --app hello run ``` # Running the app in docker ```bash docker build . -t flask-metrics docker run --rm -it -v "$PWD":/app -p 5001:5000 --memory=100m flask-metrics \ flask --app app/hello run --host=0.0.0.0 ``` ```bash seq 1 50000 | xargs -Iname -P100 curl "http://127.0.0.1:5001" ```