Remove metrics dashboards #20
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request removes built-in support for Prometheus and Grafana monitoring from the Python Template Server project. The Docker configuration, documentation, and codebase have been updated to eliminate references to Prometheus and Grafana, simplifying the stack to focus on the FastAPI server. The most important changes are grouped below.
Docker and Deployment Configuration:
docker-compose.yml. The stack now only includes the FastAPI server and essential volumes. [1] [2] [3]Dockerfileto stop copyinggrafana/andprometheus/directories, and removed setup steps for monitoring configs. [1] [2] [3].github/workflows/build.ymlby removing checks and directory listings for Prometheus and Grafana. [1] [2]Documentation Updates:
README.md,docs/API.md, anddocs/DOCKER_DEPLOYMENT.mdto remove all references to Prometheus metrics, Grafana dashboards, and related endpoints. Documentation now focuses solely on the FastAPI server and its features. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]Internal Project Structure:
These changes streamline the project by removing external observability dependencies, making the template easier to deploy and maintain.