Prometheus metrics and Grafana dashboards for Python apps
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill application-monitoring --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Application Monitoring?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-application-monitoring)More formats (shields.io, HTML) on the badges page.
---
name: application-monitoring
description: "Prometheus metrics and Grafana dashboards for Python apps"
---
# Application Monitoring
## Prometheus Python Client
```python
from prometheus_client import Counter, Histogram, start_http_server
import time
REQUESTS = Counter("http_requests_total", "Total requests")
LATENCY = Histogram("http_request_duration_seconds", "Request latency")
def handle_request():
REQUESTS.inc()
with LATENCY.time():
time.sleep(0.1)
```
## Start Metrics Endpoint
```python
start_http_server(8000)
# Metrics at http://localhost:8000/metrics
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!