# Grafana Cloud Metrics

Fully managed metrics service in Grafana Cloud for visualizing metric data, alerting, and troubleshooting issues.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## v20.2.3 Tentacle released

DevFeed: [v20.2.3 Tentacle released](<https://devfeed.tech/articles/v20-2-3-tentacle-released-12344.md>)

Original publisher: [Read original article](<https://ceph.io/en/news/blog/2026/v20-2-3-tentacle-released/>)

Author: Yuri Weinstein

Published: 2026-08-05T00:00:00Z

Content type: release

Language: en

Sources: [Ceph Blog](<https://devfeed.tech/sources/ceph-blog.md>)

Topics: [Deployment](<https://devfeed.tech/topics/deployment.md>), [Server](<https://devfeed.tech/topics/server.md>), [Hardware](<https://devfeed.tech/topics/hardware.md>), [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>), [Kafka](<https://devfeed.tech/topics/kafka.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [Monitoring](<https://devfeed.tech/topics/monitoring.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [IO](<https://devfeed.tech/topics/io.md>)

Tags: [2026](<https://devfeed.tech/tags/2026.md>), [authentication](<https://devfeed.tech/tags/authentication.md>), [blog-post](<https://devfeed.tech/tags/blog-post.md>), [cli](<https://devfeed.tech/tags/cli.md>), [en-article](<https://devfeed.tech/tags/en-article.md>), [en-blog-post](<https://devfeed.tech/tags/en-blog-post.md>), [hardware](<https://devfeed.tech/tags/hardware.md>), [io](<https://devfeed.tech/tags/io.md>), [kafka](<https://devfeed.tech/tags/kafka.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [monitoring](<https://devfeed.tech/tags/monitoring.md>), [release](<https://devfeed.tech/tags/release.md>), [storage](<https://devfeed.tech/tags/storage.md>), [tentacle](<https://devfeed.tech/tags/tentacle.md>), [tls](<https://devfeed.tech/tags/tls.md>)

### AI overview

Ceph v20.2.3, the third minor release in the Tentacle series, is a recommended update containing fixes and improvements across metadata servers, object storage daemons, RADOS Gateway, client libraries, the dashboard, ceph-volume, and NVMe-oF. Changes include storage reliability fixes, TLS 1.3 cipher customization, encrypted object copying, Kafka notification authentication, hardware monitoring, CSV host uploads, and role-management updates.

### Source excerpt

This is the third minor release in the Tentacle series. We recommend that all users update to this release. Release Date ¶ August 5, 2026 Notable Changes ¶ MDS (Metadata Server) ¶ Fixed a crash and shutdown hang that could occur when ephemeral pins were active and max_mds was set to 0. Session reclaim could miss blocklisting an old session; this is now handled correctly. Fixed a case where scrub was unable to identify damage from an irreparable hard link. OSD (Object Storage Daemon) ¶ BlueStore: Fixed a BlueFS WAL envelope-mode bug that caused write buffer misalignment. Erasure Coding: Fixed truncate+write planning for EC shard sizes. Fixed a condition that prevented rolling forward of PG log entries. Prevented OSDMap::check_health() from asserting when new OSDs are found in a subtree. Scrub: "repairing" scrubs -- deep scrubs re-run specifically to fix a previously detected inconsistency -- are no longer blocked by the configured allowed scrub hours/days; they can now run at any time. RGW (RADOS Gateway) ¶ Added the ssl_ciphersuites option for the Beast front-end to support TLS 1.3 cipher customization. Fixed PutObject's canned_acl comparison bug affecting BlockPublicAcls. Fixed crashes occurring on realm reload. Implemented CopyObject support for encrypted objects. Added mTLS client-certificate authentication support for Kafka notifications. Fixed removal of delete markers in lifecycle processing. RADOS / librados / neorados ¶ neorados: Fixed an infinite trim loop on empty data log shards. Fixed cancellation-slot cleanup in librados/asio's associated executor. Dashboard ¶ Added a hardware-monitoring dashboard backed by node-proxy metrics. Fixed a bind-address regression caused by CherryPy isolation. Added support for adding hosts via CSV upload. NVMeoF: multiple CLI and UI backports (EC pool support, IO statistics, role management). Object: The global RGW Roles tab has been removed. Role management is now scoped under RGW Accounts, where roles can be listed, created,

## Building a Custom Metrics Exporter for Kubernetes

DevFeed: [Building a Custom Metrics Exporter for Kubernetes](<https://devfeed.tech/articles/building-a-custom-metrics-exporter-for-kubernetes-4567.md>)

Original publisher: [Read original article](<https://kubernetes.io/blog/2026/07/14/custom-metrics-exporter-kubernetes/>)

Author: Victor David Effiok

Published: 2026-07-14T18:00:00Z

Content type: tutorial

Language: en

Sources: [Kubernetes Blog](<https://devfeed.tech/sources/kubernetes-blog.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [autoscaling](<https://devfeed.tech/topics/autoscaling.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [Time Series](<https://devfeed.tech/topics/time-series.md>), [Go Language](<https://devfeed.tech/topics/go-language.md>), [WebSocket](<https://devfeed.tech/topics/websocket.md>)

Tags: [autoscaling](<https://devfeed.tech/tags/autoscaling.md>), [building](<https://devfeed.tech/tags/building.md>), [code](<https://devfeed.tech/tags/code.md>), [go](<https://devfeed.tech/tags/go.md>), [http](<https://devfeed.tech/tags/http.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [prometheus](<https://devfeed.tech/tags/prometheus.md>), [server](<https://devfeed.tech/tags/server.md>), [time-series](<https://devfeed.tech/tags/time-series.md>)

### AI overview

A tutorial on building a custom Kubernetes metrics exporter that exposes application or external state for Prometheus, enabling queries, alerts, and HorizontalPodAutoscaler scaling. It covers exporter architecture, direct instrumentation, metric formatting, and choosing counters, gauges, or histograms.

### Source excerpt

Kubernetes ships with built-in awareness of CPU and memory, but most real-world scaling decisions depend on signals that live entirely outside that narrow window: how many messages are waiting in a queue, how long the last batch job took, how many active WebSocket connections a pod is holding. When the built-in metrics are not enough, a metrics exporter bridges that gap. This post walks through writing one from scratch, packaging it as a container, and wiring it into a cluster so that Prometheus -- and ultimately the HorizontalPodAutoscaler -- can consume it. What a metrics exporter actually does An exporter is a small HTTP server with a single responsibility: expose application state as text on a /metrics endpoint. Prometheus scrapes that endpoint on a regular interval, stores the time-series data, and makes it available for queries, alerts, and autoscaling rules. In some cases you can instrument your application directly -- embedding the Prometheus client library and exposing /metrics from within the same process -- rather than running a separate exporter. A standalone exporter makes more sense when the data source is external to your application or when you do not control the application code. The format Prometheus expects is plain text -- one metric per line, with a name, optional labels, and a numeric value. Client libraries handle the serialization for you, so in practice you only need to decide what to measure and call the right function when that value changes. Choosing what to measure Before writing any code, it helps to decide what kind of signal you are dealing with. The Prometheus data model has three main types: Counters only ever increase. They are the right tool for totals: requests served, jobs processed, errors encountered. Never use a counter for a value that can go down. Gauges represent a current snapshot of a value that can rise and fall freely. Queue depth, active connections, and cache size are all gauges. Histograms record the distribution of obse

## Introducing AI observability notebooks for Managed ClickStack in Private Preview

DevFeed: [Introducing AI observability notebooks for Managed ClickStack in Private Preview](<https://devfeed.tech/articles/introducing-ai-observability-notebooks-for-managed-clickstack-in-private-preview-5190.md>)

Original publisher: [Read original article](<https://clickhouse.com/blog/clickstack-ai-notebooks>)

Author: Mike Shi

Published: 2026-03-18T00:00:00Z

Content type: article

Language: en

Sources: [ClickHouse Blog](<https://devfeed.tech/sources/clickhouse-blog.md>)

Topics: [ai observability](<https://devfeed.tech/topics/ai-observability.md>), [observability](<https://devfeed.tech/topics/observability.md>), [Claude](<https://devfeed.tech/topics/claude.md>), [clickhouse](<https://devfeed.tech/topics/clickhouse.md>), [log management](<https://devfeed.tech/topics/log-management.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [Traces](<https://devfeed.tech/topics/traces.md>), [anthropic](<https://devfeed.tech/topics/anthropic.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [ai-observability](<https://devfeed.tech/tags/ai-observability.md>), [anthropic](<https://devfeed.tech/tags/anthropic.md>), [clickhouse](<https://devfeed.tech/tags/clickhouse.md>), [logs](<https://devfeed.tech/tags/logs.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [observability](<https://devfeed.tech/tags/observability.md>), [production](<https://devfeed.tech/tags/production.md>), [sre](<https://devfeed.tech/tags/sre.md>), [traces](<https://devfeed.tech/tags/traces.md>)

### AI overview

ClickStack AI Notebooks bring AI-assisted investigation to Managed ClickStack in ClickHouse Cloud. Engineers can investigate logs, metrics, and traces in a persistent, structured workspace, using natural-language questions, editable ClickHouse queries, intermediate reasoning, and branching investigations while retaining control of the workflow.

### Source excerpt

AI-native observability notebooks for Managed ClickStack let engineers investigate logs, metrics, and traces with AI as a collaborator -- keeping humans in control at every step.

## Monitoring Temporal Cloud with ClickStack

DevFeed: [Monitoring Temporal Cloud with ClickStack](<https://devfeed.tech/articles/monitoring-temporal-cloud-with-clickstack-35922.md>)

Original publisher: [Read original article](<https://temporal.io/blog/monitoring-temporal-cloud-with-clickstack>)

Author: Dale McDiarmid

Published: 2026-01-28T00:00:00Z

Content type: release

Language: en

Sources: [Temporal Blog](<https://devfeed.tech/sources/temporal-blog.md>)

Topics: [clickhouse](<https://devfeed.tech/topics/clickhouse.md>), [observability](<https://devfeed.tech/topics/observability.md>), [Monitoring](<https://devfeed.tech/topics/monitoring.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [dashboards](<https://devfeed.tech/topics/dashboards.md>), [telemetry](<https://devfeed.tech/topics/telemetry.md>), [OpenTelemetry](<https://devfeed.tech/topics/opentelemetry.md>), [site-reliability-engineering](<https://devfeed.tech/topics/site-reliability-engineering.md>)

Tags: [announcements](<https://devfeed.tech/tags/announcements.md>), [clickhouse](<https://devfeed.tech/tags/clickhouse.md>), [dashboards](<https://devfeed.tech/tags/dashboards.md>), [logs](<https://devfeed.tech/tags/logs.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [monitoring](<https://devfeed.tech/tags/monitoring.md>), [observability](<https://devfeed.tech/tags/observability.md>), [opentelemetry](<https://devfeed.tech/tags/opentelemetry.md>), [traces](<https://devfeed.tech/tags/traces.md>)

### AI overview

Temporal announces an integration between ClickStack and Temporal Cloud's OpenMetrics endpoint. The article explains how ClickStack, built on ClickHouse, can monitor workflow success rates, latency, Actions consumption, and Task Queue backlogs through dashboards, alerts, and correlation across logs, metrics, and traces.

### Source excerpt

Monitor Temporal Cloud in ClickStack via the OpenMetrics endpoint. See Workflow success rates, latency, Actions consumption, and Task Queue backlogs in ClickHouse dashboards, with alerts and correlation across logs, metrics, and traces.

## Monitoriza Linux con Prometheus y Grafana

DevFeed: [Monitoriza Linux con Prometheus y Grafana](<https://devfeed.tech/articles/monitoriza-linux-con-prometheus-y-grafana-34069.md>)

Original publisher: [Read original article](<https://tengoping.com/blog/monitorizar-servidores-linux-prometheus-grafana/>)

Author: Antonio Pérez

Published: 2026-01-25T00:00:00Z

Content type: tutorial

Language: es

Sources: [tengoping.com](<https://devfeed.tech/sources/tengoping-com.md>)

Topics: [Grafana](<https://devfeed.tech/topics/grafana.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [systemd](<https://devfeed.tech/topics/systemd.md>)

Tags: [dashboards](<https://devfeed.tech/tags/dashboards.md>), [grafana](<https://devfeed.tech/tags/grafana.md>), [linux](<https://devfeed.tech/tags/linux.md>), [monitor](<https://devfeed.tech/tags/monitor.md>), [prometheus](<https://devfeed.tech/tags/prometheus.md>), [systemd](<https://devfeed.tech/tags/systemd.md>)

### AI overview

A step-by-step guide to deploying a Prometheus and Grafana monitoring stack on Linux servers with Node Exporter. It covers collecting system metrics, configuring Prometheus targets, connecting Grafana, importing a dashboard, and using PromQL for gauges and counters.

### Source excerpt

Guía paso a paso para desplegar un stack de monitorización con Prometheus y Grafana en servidores Linux usando Node Exporter.

## Inside Laravel Nightwatch's Observability Pipeline: Real-Time Event Processing with Amazon MSK and ClickHouse Cloud

DevFeed: [Inside Laravel Nightwatch's Observability Pipeline: Real-Time Event Processing with Amazon MSK and ClickHouse Cloud](<https://devfeed.tech/articles/inside-laravel-nightwatch-s-observability-pipeline-real-time-event-processing-with-amazon-msk-and-clickhouse-cloud-5377.md>)

Original publisher: [Read original article](<https://clickhouse.com/blog/laravel-nighwatch-clickhouse>)

Author: AWS; Laravel; ClickHouse

Published: 2025-10-08T15:36:20Z

Content type: article

Language: en

Sources: [ClickHouse Blog](<https://devfeed.tech/sources/clickhouse-blog.md>)

Topics: [Laravel](<https://devfeed.tech/topics/laravel.md>), [observability](<https://devfeed.tech/topics/observability.md>), [clickhouse](<https://devfeed.tech/topics/clickhouse.md>), [Kafka](<https://devfeed.tech/topics/kafka.md>), [Streaming](<https://devfeed.tech/topics/streaming.md>), [telemetry](<https://devfeed.tech/topics/telemetry.md>), [AWS Lambda](<https://devfeed.tech/topics/aws-lambda.md>), [Amazon RDS](<https://devfeed.tech/topics/amazon-rds.md>), [PostgreSQL](<https://devfeed.tech/topics/postgresql.md>), [Amazon API Gateway](<https://devfeed.tech/topics/amazon-api-gateway.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>)

Tags: [amazon-api-gateway](<https://devfeed.tech/tags/amazon-api-gateway.md>), [amazon-rds](<https://devfeed.tech/tags/amazon-rds.md>), [apache-kafka](<https://devfeed.tech/tags/apache-kafka.md>), [api](<https://devfeed.tech/tags/api.md>), [aws-lambda](<https://devfeed.tech/tags/aws-lambda.md>), [clickhouse](<https://devfeed.tech/tags/clickhouse.md>), [dashboards](<https://devfeed.tech/tags/dashboards.md>), [json](<https://devfeed.tech/tags/json.md>), [laravel](<https://devfeed.tech/tags/laravel.md>), [low-latency](<https://devfeed.tech/tags/low-latency.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [monitoring](<https://devfeed.tech/tags/monitoring.md>), [observability](<https://devfeed.tech/tags/observability.md>), [rds-for-postgresql](<https://devfeed.tech/tags/rds-for-postgresql.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [traces](<https://devfeed.tech/tags/traces.md>)

### AI overview

This article explains how Laravel Nightwatch processes more than one billion observability events per day using AWS managed services and ClickHouse Cloud. Its streaming-first architecture combines Amazon MSK, AWS Lambda, Amazon API Gateway, Amazon RDS for PostgreSQL, and ClickHouse Cloud to provide scalable ingestion, real-time dashboards, and sub-second analytical queries.

### Source excerpt

Learn how Laravel Nightwatch platform process billions of observability events in real time while keeping query latency under a second.

## What's New in Apache Pulsar 4.1

DevFeed: [What's New in Apache Pulsar 4.1](<https://devfeed.tech/articles/what-s-new-in-apache-pulsar-4-1-12765.md>)

Original publisher: [Read original article](<https://pulsar.apache.org/blog/2025/09/09/announcing-apache-pulsar-4-1/>)

Author: David Kjerrumgaard

Published: 2025-09-09T00:00:00Z

Content type: release

Language: en

Sources: [Apache Pulsar Blog](<https://devfeed.tech/sources/apache-pulsar-blog.md>)

Topics: [Apache Pulsar](<https://devfeed.tech/topics/pulsar.md>), [SDKs](<https://devfeed.tech/topics/sdks.md>), [Security](<https://devfeed.tech/topics/security.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [Resilience](<https://devfeed.tech/topics/resilience.md>), [WebSocket](<https://devfeed.tech/topics/websocket.md>)

Tags: [announce](<https://devfeed.tech/tags/announce.md>), [apache](<https://devfeed.tech/tags/apache.md>), [api](<https://devfeed.tech/tags/api.md>), [authentication](<https://devfeed.tech/tags/authentication.md>), [bug-fixes](<https://devfeed.tech/tags/bug-fixes.md>), [cli](<https://devfeed.tech/tags/cli.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [encryption](<https://devfeed.tech/tags/encryption.md>), [java](<https://devfeed.tech/tags/java.md>), [launch](<https://devfeed.tech/tags/launch.md>), [monitoring](<https://devfeed.tech/tags/monitoring.md>), [new-features](<https://devfeed.tech/tags/new-features.md>), [observability](<https://devfeed.tech/tags/observability.md>), [performance](<https://devfeed.tech/tags/performance.md>), [release](<https://devfeed.tech/tags/release.md>), [resilience](<https://devfeed.tech/tags/resilience.md>), [schema](<https://devfeed.tech/tags/schema.md>), [sdk](<https://devfeed.tech/tags/sdk.md>), [security](<https://devfeed.tech/tags/security.md>), [websocket](<https://devfeed.tech/tags/websocket.md>)

### AI overview

Apache Pulsar 4.1 is a feature release with 19 approved Pulsar Improvement Proposals, bug fixes, security updates, and performance improvements. Highlights include stronger WebSocket token security, enhanced encryption handling, client configuration and resilience improvements, third-party schema registry support, Java 17 as the minimum for the Java client SDK, improved storage management, monitoring, and topic policies.

### Source excerpt

The Apache Pulsar community is thrilled to announce the launch of Apache Pulsar 4.1, a significant feature release!

## Prometheus metrics with Rails and Kamal

DevFeed: [Prometheus metrics with Rails and Kamal](<https://devfeed.tech/articles/prometheus-metrics-with-rails-and-kamal-33506.md>)

Original publisher: [Read original article](<https://dev.37signals.com/kamal-prometheus/>)

Author: Lewis Buckley

Published: 2024-05-23T17:00:00Z

Content type: tutorial

Language: en

Sources: [37signals Dev](<https://devfeed.tech/sources/37signals-dev.md>)

Topics: [Prometheus](<https://devfeed.tech/topics/prometheus.md>), [Rails](<https://devfeed.tech/topics/rails.md>), [telemetry](<https://devfeed.tech/topics/telemetry.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [like](<https://devfeed.tech/topics/like.md>), [.NET 9](<https://devfeed.tech/topics/net-9.md>)

Tags: [docker](<https://devfeed.tech/tags/docker.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [performance](<https://devfeed.tech/tags/performance.md>), [processes](<https://devfeed.tech/tags/processes.md>), [prometheus](<https://devfeed.tech/tags/prometheus.md>), [rails](<https://devfeed.tech/tags/rails.md>), [redis](<https://devfeed.tech/tags/redis.md>), [ruby](<https://devfeed.tech/tags/ruby.md>)

### AI overview

This article explains how 37signals exports and aggregates Prometheus metrics from Rails applications running in Docker containers managed by Kamal. It describes using Yabeda and addresses performance issues and process-ID cardinality in multiprocess metric collection.

### Source excerpt

How we use Prometheus metrics with Rails and Kamal.

## Using Cloud Monitoring to monitor App Check and Security Rules

DevFeed: [Using Cloud Monitoring to monitor App Check and Security Rules](<https://devfeed.tech/articles/using-cloud-monitoring-to-monitor-app-check-and-security-rules-16502.md>)

Original publisher: [Read original article](<https://firebase.blog/posts/2022/12/monitoring-app-check-and-rules>)

Author: Shruti Padamata

Published: 2022-12-05T00:00:00Z

Content type: tutorial

Language: en

Sources: [Firebase Blog](<https://devfeed.tech/sources/firebase-blog.md>)

Topics: [Firebase](<https://devfeed.tech/topics/firebase.md>), [Monitoring](<https://devfeed.tech/topics/monitoring.md>), [Grafana Cloud Metrics](<https://devfeed.tech/topics/grafana-cloud-metrics.md>), [Security](<https://devfeed.tech/topics/security.md>), [Authorization](<https://devfeed.tech/topics/authorization.md>), [dashboards](<https://devfeed.tech/topics/dashboards.md>)

Tags: [app-check](<https://devfeed.tech/tags/app-check.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [cloud-monitoring](<https://devfeed.tech/tags/cloud-monitoring.md>), [dashboards](<https://devfeed.tech/tags/dashboards.md>), [firebase](<https://devfeed.tech/tags/firebase.md>), [firestore](<https://devfeed.tech/tags/firestore.md>), [incident](<https://devfeed.tech/tags/incident.md>), [metrics](<https://devfeed.tech/tags/metrics.md>), [notify](<https://devfeed.tech/tags/notify.md>), [security](<https://devfeed.tech/tags/security.md>), [security-rules](<https://devfeed.tech/tags/security-rules.md>)

### AI overview

A tutorial on using Cloud Monitoring with Firebase to monitor App Check and Security Rules. It explains where to find rules evaluation metrics, how to analyze them, and how to create an alerting policy for sustained spikes in denied evaluations.

### Source excerpt

Learn how to monitor security metrics and set up alerting policies with Cloud Monitoring and Firebase.