<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Andrea Ficarra</title>
    <description>The latest articles on DEV Community by Andrea Ficarra (@adiakys).</description>
    <link>https://dev.to/adiakys</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3948175%2F9d586cf0-acfc-4c05-a54e-12458ab55822.jpeg</url>
      <title>DEV Community: Andrea Ficarra</title>
      <link>https://dev.to/adiakys</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adiakys"/>
    <language>en</language>
    <item>
      <title>One container to replace Grafana + Loki + Tempo + Prometheus</title>
      <dc:creator>Andrea Ficarra</dc:creator>
      <pubDate>Mon, 25 May 2026 20:25:26 +0000</pubDate>
      <link>https://dev.to/adiakys/one-container-to-replace-grafana-loki-tempo-prometheus-1kki</link>
      <guid>https://dev.to/adiakys/one-container-to-replace-grafana-loki-tempo-prometheus-1kki</guid>
      <description>&lt;p&gt;&lt;strong&gt;The standard observability stack:&lt;/strong&gt;&lt;br&gt;
Grafana + Loki + Tempo + Prometheus. Four services to deploy, four configs to learn, dashboards to set up before you see a single trace.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I actually needed:&lt;/strong&gt;&lt;br&gt;
One place to see traces, logs, and metrics from my services.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I built:&lt;/strong&gt;&lt;br&gt;
One container. &lt;code&gt;docker compose up&lt;/code&gt;. Done.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fawtklcqp2tqobs8d4t1w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fawtklcqp2tqobs8d4t1w.png" alt="Dasboard Overview" width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;



&lt;p&gt;I work with .NET microservices and at some point I went through the full Grafana setup. And look, it works fine, it's a solid stack. But for what I needed it was way too much. I spent more time configuring things than actually looking at my data. The .NET Aspire dashboard is on the other end: you get a nice UI, but nothing is persisted. Close the browser and everything's gone. No customization either.&lt;/p&gt;

&lt;p&gt;So I built something in between.&lt;/p&gt;
&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;OtlpDashboard is a single container that receives OpenTelemetry data and stores it. It speaks standard OTLP on port 4317 (gRPC) and 4318 (HTTP/Protobuf). If your app already exports telemetry, you just point it here. No collector needed (works behind one too if you already have it).&lt;/p&gt;

&lt;p&gt;Storage is SQLite by default, so zero config, just a file. You can switch to PostgreSQL or SQL Server if you want.&lt;/p&gt;

&lt;p&gt;The frontend is a Vue 3 / Nuxt 4 SPA served on the same port. You get a grid of widgets you can customize: stat cards, line charts, sparklines, gauges, heatmaps, log streams, trace viewers, and a few more. Auth is on by default.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbohqrnn79xxeh1u52x65.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbohqrnn79xxeh1u52x65.png" alt="Trace details" width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  How AI helped me ship this in under a month
&lt;/h2&gt;

&lt;p&gt;I want to be upfront about this. I used Claude Code a lot, especially for the frontend. I'm a backend dev. I know .NET, EF Core, gRPC. But Vue and Nuxt? Not really my thing. Without Claude Code I would have spent days stuck on CSS and component wiring. Instead I could focus on what I actually care about: the OTLP ingestion, the storage layer, how widgets work.&lt;/p&gt;

&lt;p&gt;All the architecture and decisions are mine. The AI did the typing.&lt;/p&gt;

&lt;p&gt;And honestly, I think that's the best use of these tools right now if you're a solo dev. They don't replace you. They cover the parts where you're slow, so you can ship something that would normally need a small team.&lt;/p&gt;
&lt;h2&gt;
  
  
  Some stuff I like about how it turned out
&lt;/h2&gt;

&lt;p&gt;You can install widget packs from Git repos. There's a &lt;code&gt;pack.json&lt;/code&gt; that bundles widgets and dashboards together, so if you have a team you can share a curated setup.&lt;/p&gt;

&lt;p&gt;There's also a &lt;code&gt;spec&lt;/code&gt; engine for building custom widgets with Mustache templates. It's sandboxed with DOMPurify, no JS eval. I wanted people to be able to build their own cards without opening security holes.&lt;/p&gt;

&lt;p&gt;Retention is configurable per signal. Set 7 days for traces, 30 for metrics, whatever you want. Old data gets cleaned up on its own.&lt;/p&gt;

&lt;p&gt;And there's an MCP server at &lt;code&gt;/mcp&lt;/code&gt; if you use Claude Code or similar tools. You can query your telemetry from the LLM directly. I didn't expect to use this much but it's actually pretty handy when debugging.&lt;/p&gt;
&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;Quickest way:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker compose up &lt;span class="nt"&gt;--build&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This starts everything including a sample workload that generates real data, so you're not staring at an empty dashboard.&lt;/p&gt;

&lt;p&gt;Or just check the live demo. It's a static build with mock data, login accepts any password: &lt;a href="https://adiakys.github.io/OtlpDashboard/" rel="noopener noreferrer"&gt;Live demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The repo is here: &lt;a href="https://github.com/Adiakys/OtlpDashboard" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's GPLv3. If you try it out let me know what you think, I'm curious what's missing or broken.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>dotnet</category>
      <category>docker</category>
      <category>monitoring</category>
    </item>
  </channel>
</rss>
