Custom Grafana Dashboards for Infrastructure Monitoring

Imagine your online store goes down, but the default Grafana dashboard shows only green graphs, hiding that Redis is full or N+1 queries in the database are killing P95. We've encountered this dozens of times. A custom dashboard solves this by designing panels for real incident scenarios. We develop

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1281
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1237
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    977
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    1026
  • image_website-sbh_0.webp
    Website development for SBH Partners
    1103
  • image_website-_0.webp
    Website development for Red Pear
    550

Imagine your online store goes down, but the default Grafana dashboard shows only green graphs, hiding that Redis is full or N+1 queries in the database are killing P95. We've encountered this dozens of times. A custom dashboard solves this by designing panels for real incident scenarios. We develop dashboards that answer three key questions in seconds: is the service alive, where is the bottleneck, what to do? Experience shows a custom dashboard is 5x faster than default in incident search—MTTR drops from 40 to 15 minutes. Our track record: over 50 dashboards for projects of varying complexity, from startups to enterprise.

Why Default Dashboards Don't Solve Your Problems?

Community dashboards suffer from two problems: information noise and lack of context. CPU and memory panels per host are not service monitoring but hardware metrics. Your SRE doesn't look at CPU unless there's an incident. They need: 5xx errors, response latency, and status of external dependencies. Default dashboards don't provide this. For example, one of our clients—a food delivery service—after implementing a custom dashboard reduced average recovery time (MTTR) from 40 to 15 minutes.

How to Build a Dashboard That Answers Real Questions?

We use a metric pyramid: at the top—availability and errors, below—performance, then resources. Each panel is actionable. For instance, a metric "CPU 67%" is useless. We add a trend, target threshold, and scaling alert. This way the engineer doesn't guess but makes a decision. As a result, the team saves up to 8 hours per week on problem finding.

Component Default Dashboard Custom Dashboard
Number of panels 20+ (noise) 5-7 (only what's needed)
Answer to "What to do?" No Yes: alert, trend, threshold
Problem search time >10 minutes <2 minutes

We embed dashboard variables: $__timeRange, $__interval, plus environment and instance variables. This allows viewing staging and production without cloning.

Which Metrics to Include in a Dashboard for Rapid Problem Finding?

It's important to select metrics that reflect user experience and service health. We recommend an SLI/SLO approach: define service level indicators (error rate, latency, throughput) and target values. The dashboard must include:

  • Error Rate (5xx)—error percentage. Threshold: <1% for critical services.
  • P95 Latency—delay for 95% of requests. Threshold depends on SLA.
  • RPS—requests per second, needed for understanding peaks.
  • Uptime—availability, checked via synthetic monitoring.
  • Database metrics: active connections, query latency, slow queries.
  • Cache metrics: hit rate, memory usage, evictions.

Example Dashboard Structure for a Web Application

Row 1: Service Health (big stat panels) [Error Rate %] [P95 Latency ms] [Uptime %] [Active Users] Row 2: Traffic & Performance [RPS - time] [Response time P50/P95/P99 - time] [HTTP status breakdown] Row 3: Infrastructure [CPU % per host] [Memory % per host] [Disk I/O] [Network I/O] Row 4: Database [DB Connections active/max] [Query latency P95] [Slow queries count] Row 5: Cache [Redis hit rate %] [Redis memory usage] [Evictions per sec] 
Show example PromQL queries for key metrics
Metric Query
Error Rate sum(rate(http_requests_total{status=~"5..", job="app"}[5m])) / sum(rate(http_requests_total{job="app"}[5m])) * 100
P95 Latency histogram_quantile(0.95, sum(rate(http_request_duration_seconds_bucket{job="app"}[5m])) by (le))
Active DB Connections pg_stat_activity_count{datname="mydb", state="active"}
Redis Hit Rate rate(redis_keyspace_hits_total[5m]) / (rate(redis_keyspace_hits_total[5m]) + rate(redis_keyspace_misses_total[5m])) * 100

Dashboard as Code: Dashboards in Git

Storing dashboards in UI chaos leads to losses. We use Dashboard as Code via Grafonnet or Terraform Grafana provider. Example in Jsonnet:

local grafana = import 'grafonnet/grafana.libsonnet'; local dashboard = grafana.dashboard; local graphPanel = grafana.graphPanel; dashboard.new( 'Application Overview', time_from='now-1h', refresh='30s', ) .addPanel( graphPanel.new( 'Error Rate', datasource='Prometheus', ) .addTarget( grafana.prometheus.target( 'sum(rate(http_requests_total{status=~"5.."}[5m])) / sum(rate(http_requests_total[5m])) * 100', legendFormat='Error Rate %' ) ), gridPos={ x: 0, y: 0, w: 12, h: 8 } ) 

This approach enables versioning, auditing, and reproducibility. Deployment annotations are added via CI/CD—each release is marked on graphs. A custom dashboard reduces downtime root cause search time by 5x, saving the team up to 8 hours per week.

Process

  1. Audit current infrastructure and metrics
  2. Design panels using a top-down approach
  3. Build dashboards in Grafana with variables and annotations
  4. Implement Dashboard as Code (Jsonnet/Terraform)
  5. Documentation and team training
  6. Guarantee: free adjustments within 30 days

Estimated Timelines

Dashboard Type Timeline
Basic (error rate, latency, traffic) 1-2 days
Full (all application layers) 3-5 days
Dashboard as Code + git workflow 1-2 days
Deployment annotations 1 day

Experience and Guarantees

We have developed over 50 dashboards for projects of varying complexity—from startups to enterprise. Our engineers are certified in Grafana and experienced with Prometheus, VictoriaMetrics, InfluxDB. We guarantee that every dashboard answers three questions: "Is the service alive? Where is the problem? What to do?"

Order custom dashboard development—from design to team training. Get a consultation for your project. Contact us for a preliminary assessment.

Wikipedia: Grafana