streamlit_healthcheck
Streamlit Healthcheck
This package provides utilities for monitoring, reporting, and automating health checks in Streamlit applications.
Features
- Automated health checks for Streamlit services
- Customizable health endpoints
- Integration with CI/CD pipelines for deployment validation
- Metrics collection and reporting for application status
- Extensible design for adding custom checks
Usage
Import the package and use the provided functions to add health checks to your Streamlit app:
from streamlit_healthcheck import healthcheck
# Example usage
status = healthcheck.run_all()
DevOps Alignment
Designed to support continuous delivery and operational excellence by enabling automated, reliable health monitoring in Streamlit-based workflows.
License
GNU GENERAL PUBLIC LICENSE V3
1""" 2Streamlit Healthcheck 3 4This package provides utilities for monitoring, reporting, and automating health checks in Streamlit applications. 5 6## Features 7 8- Automated health checks for Streamlit services 9- Customizable health endpoints 10- Integration with CI/CD pipelines for deployment validation 11- Metrics collection and reporting for application status 12- Extensible design for adding custom checks 13 14## Usage 15 16Import the package and use the provided functions to add health checks to your Streamlit app: 17 18```python 19from streamlit_healthcheck import healthcheck 20 21# Example usage 22status = healthcheck.run_all() 23``` 24 25## DevOps Alignment 26 27Designed to support continuous delivery and operational excellence by enabling automated, reliable health monitoring in Streamlit-based workflows. 28 29## License 30 31GNU GENERAL PUBLIC LICENSE V3 32 33""" 34# -*- coding: utf-8 -*- 35# Version 36__version__ = "1.0.0"