Polycrate API 0.11.27 released: Pod Status, DataSource & SLO Dashboard
Polycrate API 0.11.27 is a major feature release focusing on K8sApp pod status tracking, DataSource …

TL;DR
Logs are the indispensable “memory” of any application, but their storage often becomes the largest cost item in the cloud. Traditional solutions like Elasticsearch or Splunk index every single word, making them powerful but extremely resource-intensive. Loki takes a radically different approach: “Like Prometheus, but for Logs.” It indexes only the metadata (labels), not the content. The result is a log system that stores petabytes of data at a fraction of the cost in inexpensive object storage (S3) and integrates seamlessly with Grafana.
Classic log systems (like the ELK Stack) create a massive inverted index over the entire text. If you write 1 TB of logs, you often need another 1 TB for the index. This consumes expensive RAM and fast SSDs.
Loki turns the tables.
app=frontend, env=production), just like Prometheus. The actual log text remains compressed and unindexed.The biggest problem with AWS CloudWatch Logs or Elastic is “retention.” For cost reasons, logs are often deleted after 14 days. Loki was built for the cloud era.
error in the last 5 minutes”).Context switching kills productivity. If you see a CPU spike in a dashboard, you don’t want to switch to another tool and copy timestamps. Since Loki and Prometheus use the same labels, Grafana enables seamless split-screen. Click on the spike in the graph, and Grafana shows you exactly the logs from the pods that were running at that time. This “context switch” takes milliseconds, not minutes.
Here, it’s decided whether you pay a “log tax” to AWS or have control over your data.
Scenario A: AWS CloudWatch Logs (The Expensive Black Box) CloudWatch is the standard, but the pricing model is aggressive.
Scenario B: Loki with Managed Kubernetes from ayedo In the ayedo App Catalog, Loki is the standard for logging.
logcli or Grafana, you can stream logs in real-time (“tail -f”), just like on the server—a feature that is often painfully slow in the CloudWatch web interface.| Aspect | AWS CloudWatch Logs | ayedo (Managed Loki) |
|---|---|---|
| Indexing | Full-text (Expensive) | Metadata/Labels (Efficient) |
| Storage Backend | Proprietary | Object Storage (S3/MinIO) |
| Costs (Ingest) | High ($0.50+/GB) | Infrastructure (Minimal) |
| Query Costs | Pay-per-Query | Included (Compute) |
| Retention | Expensive (Often short) | Cheap (Long-term on S3) |
| Live-Tail | Sluggish / Delayed | Real-time (WebSocket) |
| Strategic Risk | High Lock-in | Full Sovereignty |
Loki vs. Elasticsearch (ELK): Who wins? If you need complex full-text analyses (“Find all logs where word X occurs, but not word Y, weighted by relevance”), Elasticsearch is unbeatable. For the classic DevOps routine (“Why did the pod crash?” or “Show me all 500 errors”), Loki is the better choice: It’s easier to operate, consumes much less RAM, and is drastically cheaper.
Do I need an agent on the nodes? Yes. The standard is Promtail (or the Grafana Agent). It runs as a DaemonSet on each Kubernetes node, collects the container logs, tags them with the correct Kubernetes labels (pod name, namespace), and sends them to Loki. In the ayedo stack, this is all pre-installed.
Can I build alerts on logs? Absolutely. Since Loki integrates with the Grafana Alertmanager, you can define alerts like: “If the word ‘Deadlock’ appears more than 10 times per minute in the database logs, alert the on-call team via Slack.”
How fast is the search without an index? Surprisingly fast. Since Loki breaks the search into small chunks and parallelizes it (on Lambda or Kubernetes pods), terabytes of logs can be searched in seconds. The trick is to pre-filter the search via labels (e.g., app=payment) so Loki doesn’t have to scan everything.
Logging is often a “write-only” data grave: You store terabytes but rarely look at them—yet pay immense sums for it. AWS CloudWatch Logs and Elasticsearch are often overkill for this pattern, both technologically and economically. Loki corrects this imbalance. It offers a lightweight, cost-efficient architecture perfectly tailored to the needs of Cloud-Native environments. With the ayedo Managed Stack, you get a logging solution where you can finally afford to keep all logs without flinching at the bill.
Polycrate API 0.11.27 is a major feature release focusing on K8sApp pod status tracking, DataSource …
Polycrate CLI version 0.29.16 brings comprehensive improvements for monitoring Kubernetes workloads …
TL;DR The Container Registry is the heart of your software supply chain. Trusting cloud services …