← CodeClarityLab Home
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Observability educational data only
| |
Last 30 days
14 pings — 2026-04-08 W 1 ping — 2026-04-09 T 16 pings — 2026-04-10 F 16 pings — 2026-04-11 S 15 pings — 2026-04-12 S 15 pings — 2026-04-13 M 1 ping — 2026-04-14 T 2 pings — 2026-04-15 W 1 ping — 2026-04-16 T 19 pings — 2026-04-17 F 9 pings — 2026-04-18 S 10 pings — 2026-04-19 S 12 pings — 2026-04-20 M 2 pings — 2026-04-21 T 2 pings — 2026-04-22 W 15 pings — 2026-04-23 T 23 pings — 2026-04-24 F 47 pings — 2026-04-25 S 80 pings — 2026-04-26 S 4 pings — 2026-04-27 M 7 pings — 2026-04-28 T 23 pings — 2026-04-29 W 5 pings — 2026-04-30 T 28 pings — 2026-05-01 F 15 pings — 2026-05-02 S 10 pings — 2026-05-03 S 0 pings — 2026-05-04 M 1 ping — 2026-05-05 T 1 ping — Yesterday W 5 pings — Today T
You.com 1
Amazonbot 262Perplexity 189Google 126You.com 94ChatGPT 87Unknown AI 68Ahrefs 63Majestic 19SEMrush 17Meta AI 5Qwen 1
crawler 879 crawler_json 29 pre-tracking 23
Category total931 pings Terms pinged31 / 31 Distinct agents10
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Structured Logging PHP 8.0+
Emitting log entries as machine-parseable key-value pairs (JSON) rather than free-form strings — enabling filtering, aggregation, and alerting.
1mo ago observability intermediate
Alerting Best Practices
Good alerts are actionable, symptom-based, and rare — page on user impact, not causes. Alert fatigue from noisy alerts is as dangerous as no alerts.
2mo ago observability intermediate
APM — Application Performance Monitoring PHP 7.0+
APM tools (Datadog, New Relic, Blackfire) automatically instrument applications to profile code-level performance — identifying slow DB queries, N+1 problems, and method-level bottlenecks.
2mo ago observability intermediate
Canary Deployment & Observability
Canary deployments route a small percentage of traffic to a new version — compare its golden signals against the stable version before full rollout to catch regressions automatically.
2mo ago observability intermediate
Cardinality in Metrics
Cardinality is the number of unique label value combinations — high cardinality (user_id, URL, session_id as labels) creates millions of time series and crashes Prometheus.
2mo ago observability intermediate
Cardinality in Observability PHP 7.0+
The number of unique combinations of label values in a metric — high cardinality (millions of unique label combinations) causes memory exhaustion in time-series databases and is the most common observability scaling problem.
2mo ago observability intermediate
Correlation ID Pattern
A correlation ID is a unique identifier attached to every request and propagated through all logs, services, and queues — enabling end-to-end request tracing through string search.
2mo ago observability beginner
Distributed Tracing
Distributed tracing tracks a request as it flows through multiple services — each service adds a span to a shared trace, giving end-to-end visibility into latency and failures.
2mo ago observability intermediate
Error Budget
Error budget is the allowed amount of unreliability within an SLO period — 99.9% SLO = 43.8 min/month downtime allowed. When budget is exhausted, reliability takes priority over features.
2mo ago observability intermediate
Four Golden Signals
Google SRE's Four Golden Signals — Latency, Traffic, Errors, Saturation — are the four metrics that, if monitored and alerted on, cover most production reliability concerns.
2mo ago observability beginner
Grafana & Dashboards
Grafana is the de facto open-source dashboard platform — connecting to Prometheus, Loki, Elasticsearch, and 50+ data sources to visualise metrics, logs, and traces in a unified UI.
2mo ago observability beginner
Health Check Patterns
Health checks report service status to load balancers and orchestrators — /health/live (is the process running?), /health/ready (can it serve traffic?), and deep health checks for dependencies.
2mo ago observability beginner
Log Aggregation (ELK/Loki)
Log aggregation collects logs from all services into a central searchable store — ELK (Elasticsearch+Logstash+Kibana) for full-text search, Loki (Prometheus-style) for cost-efficient label-based search.
2mo ago observability intermediate
Log Levels & When to Use Each
Log levels (DEBUG, INFO, WARNING, ERROR, CRITICAL) communicate severity — use the right level so alerts fire on real issues and noise doesn't mask real problems.
2mo ago observability beginner
On-Call & Runbooks
A runbook documents how to diagnose and resolve specific alerts — on-call engineers shouldn't have to think from scratch at 3am; the runbook provides the playbook.
2mo ago observability beginner
OpenTelemetry
OpenTelemetry (OTel) is the open standard for telemetry — a vendor-neutral SDK for traces, metrics, and logs that exports to any backend (Jaeger, Datadog, Honeycomb, Prometheus).
2mo ago observability intermediate
P50/P95/P99 Latency Percentiles
Latency percentiles (P50, P95, P99) tell you what most users experience — P99 means '99% of requests are faster than this', revealing the worst experiences that averages hide.
2mo ago observability beginner
Prometheus Concepts
Prometheus is a pull-based metrics system — services expose /metrics in text format, Prometheus scrapes them, stores as time series, and evaluates alerting rules via PromQL.
2mo ago observability intermediate
SLO / SLI / SLA
SLI (what you measure), SLO (your internal target), SLA (your customer commitment) — the hierarchy that turns vague 'uptime' promises into measurable operational objectives.
2mo ago observability intermediate
Spans & Traces
A trace is one request's full journey; spans are the individual operations within it — each span has a name, start time, duration, status, and optional attributes.
2mo ago observability beginner
✓ schema.org compliant