pyctuator
pyctuator copied to clipboard
Monitor Python applications using Spring Boot Admin
Hi - it would be helpful to a project I am on to support Apache Cassandra. If someone could give me an overview or some documentation on how this might...
Bumps [uvicorn](https://github.com/encode/uvicorn) from 0.9.1 to 0.11.7. Release notes Sourced from uvicorn's releases. Version 0.11.7 0.11.7 SECURITY FIX: Prevent sending invalid HTTP header names and values. SECURITY FIX: Ensure path value...
Hi, any example to implement this in django. Thanks
See https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-features.html#production-ready-kubernetes-probes for how its done in spring-boot's actuator. In high level, pyctuator should support telling k8s when an application/service is ready to serve requests (i.e. readiness probe) and if...

So far Pyctuator's API was manually built to match the spring-boot-actuator API and therefore some deviation is expected (and accepted...). Please identify these deviations and prioritize fixing them by comparing...
When tests are running, the following warnings are logged - all of them are for test-code: ``` =============================== warnings summary =============================== tests/test_pyctuator_e2e.py: 72 warnings tests/test_spring_boot_admin_registration.py: 4 warnings /usr/local/lib/python3.9/asyncio/base_events.py:1460: DeprecationWarning: The...
Adds new healthcheck provider with tests
If pyctuator is configured to start on "/" - it will modify content types of unrelated requests. A workaround is to initialize pyctuator in a sub path i.e /actuator The...
pyctuator._integrate_flask() does not use passed customizer: Optional[Callable] ``` def _integrate_flask( self, app: Any, pyctuator_impl: PyctuatorImpl, customizer: Optional[Callable], disabled_endpoints: Endpoints, ) -> bool: """ This method should only be called if...