<?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: Soumit Das</title>
    <description>The latest articles on DEV Community by Soumit Das (@iamsoumit).</description>
    <link>https://dev.to/iamsoumit</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%2F2313146%2F63fbf515-ca6a-46a9-96d9-b32db5796c22.jpg</url>
      <title>DEV Community: Soumit Das</title>
      <link>https://dev.to/iamsoumit</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamsoumit"/>
    <language>en</language>
    <item>
      <title>FindBug - Self-hosted Error Tracking &amp; Performance Monitoring for Rails (v0.5.0)</title>
      <dc:creator>Soumit Das</dc:creator>
      <pubDate>Sat, 16 May 2026 18:52:43 +0000</pubDate>
      <link>https://dev.to/iamsoumit/findbug-self-hosted-error-tracking-performance-monitoring-for-rails-v050-1fm3</link>
      <guid>https://dev.to/iamsoumit/findbug-self-hosted-error-tracking-performance-monitoring-for-rails-v050-1fm3</guid>
      <description>&lt;p&gt;I got tired of paying $26/seat/month for error tracking on side projects, so I built &lt;strong&gt;FindBug&lt;/strong&gt; - a Rails engine that captures exceptions and performance data with all the data living on your own infrastructure. Zero SaaS, full ownership, MIT-licensed.&lt;/p&gt;

&lt;p&gt;🌐 &lt;strong&gt;Website:&lt;/strong&gt; &lt;a href="https://findbug.dev" rel="noopener noreferrer"&gt;findbug.dev&lt;/a&gt;&lt;br&gt;
📗 &lt;strong&gt;Documentation:&lt;/strong&gt; &lt;a href="https://findbug.dev/docs" rel="noopener noreferrer"&gt;findbug.dev/docs&lt;/a&gt;&lt;br&gt;
💎 &lt;strong&gt;RubyGems:&lt;/strong&gt; &lt;a href="https://rubygems.org/gems/findbug" rel="noopener noreferrer"&gt;rubygems.org/gems/findbug&lt;/a&gt;&lt;br&gt;
⭐ &lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/ITSSOUMIT/findbug" rel="noopener noreferrer"&gt;github.com/ITSSOUMIT/findbug&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  The pain points that pushed me to build this
&lt;/h2&gt;

&lt;p&gt;If you've run a Rails monolith with Sentry / Bugsnag / Rollbar, you've felt these:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cost scales with team size, not value delivered.&lt;/strong&gt; A 5-person team is $130+/mo before catching a single bug.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data lives on someone else's servers&lt;/strong&gt; - fine for most apps, awkward for anything with PII, GDPR, or SOC concerns.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network dependency&lt;/strong&gt; - if their edge is having a bad day, you lose telemetry exactly when you need it most.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Setup ritual&lt;/strong&gt; - API keys, env-specific DSNs, separate dashboards to log into, SDK version drift.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  What FindBug looks like
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Gemfile&lt;/span&gt;
&lt;span class="n"&gt;gem&lt;/span&gt; &lt;span class="s2"&gt;"findbug"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;"~&amp;gt; 0.5.0"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;bundle &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;rails generate findbug:install
&lt;span class="nv"&gt;$ &lt;/span&gt;rails db:migrate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;That's the entire install. After this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Unhandled exceptions in controllers and middleware are captured automatically&lt;/li&gt;
&lt;li&gt;HTTP performance + SQL queries + N+1 patterns are instrumented&lt;/li&gt;
&lt;li&gt;A dashboard is mounted at &lt;code&gt;/findbug&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;A background thread flushes data from Redis to your database every 30 seconds - no Sidekiq required&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Architecture: never block the request
&lt;/h2&gt;

&lt;p&gt;The non-negotiable design rule is that capturing an error must not slow down your users:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Request  →  Middleware catches exception  →  Scrub PII
         →  Push to Redis buffer  (Thread.new, ~1–2ms)
         →  Background persister flushes Redis → DB every 30s in batches of 100
         →  Dashboard reads from DB on demand
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Capture overhead:&lt;/strong&gt; ~1–2ms - single &lt;code&gt;LPUSH&lt;/code&gt; on a dedicated Redis connection pool, fired via &lt;code&gt;Thread.new&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HTTP request blocking:&lt;/strong&gt; 0ms - capture is fire-and-forget&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Circuit breaker:&lt;/strong&gt; 5 consecutive Redis failures opens the breaker for 30s, so your app stays fast even if Redis is unreachable&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dedicated connection pool:&lt;/strong&gt; separate from your app's Redis/Sidekiq, so a spike in error volume can't starve your cache&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Manual capture
&lt;/h2&gt;

&lt;p&gt;When you want to swallow an exception but still track it:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;begin&lt;/span&gt;
  &lt;span class="n"&gt;risky_operation&lt;/span&gt;
&lt;span class="k"&gt;rescue&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="n"&gt;e&lt;/span&gt;
  &lt;span class="no"&gt;Findbug&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;capture_exception&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;e&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;user_id: &lt;/span&gt;&lt;span class="n"&gt;current_user&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;id&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Or capture a non-exception event:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="no"&gt;Findbug&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;capture_message&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"Rate limit exceeded"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:warning&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;user_id: &lt;/span&gt;&lt;span class="mi"&gt;123&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Track a custom block for performance:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="no"&gt;Findbug&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;track_performance&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"external_api_call"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;do&lt;/span&gt;
  &lt;span class="no"&gt;ExternalAPI&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;fetch_data&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Controller helpers
&lt;/h2&gt;

&lt;p&gt;Attach request-scoped context that's included with every error captured during that request:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;ApplicationController&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="no"&gt;ActionController&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="no"&gt;Base&lt;/span&gt;
  &lt;span class="n"&gt;before_action&lt;/span&gt; &lt;span class="ss"&gt;:set_findbug_context&lt;/span&gt;

  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;set_findbug_context&lt;/span&gt;
    &lt;span class="n"&gt;findbug_set_user&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;current_user&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="n"&gt;findbug_set_context&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
      &lt;span class="ss"&gt;plan: &lt;/span&gt;&lt;span class="n"&gt;current_user&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;plan&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="ss"&gt;organization_id: &lt;/span&gt;&lt;span class="n"&gt;current_org&lt;/span&gt;&lt;span class="o"&gt;&amp;amp;&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;id&lt;/span&gt;
    &lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Breadcrumbs work the way you'd expect:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;findbug_breadcrumb&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"User clicked checkout"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;category: &lt;/span&gt;&lt;span class="s2"&gt;"ui"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;findbug_breadcrumb&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"Payment API called"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;category: &lt;/span&gt;&lt;span class="s2"&gt;"http"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;data: &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="ss"&gt;amount: &lt;/span&gt;&lt;span class="mf"&gt;99.99&lt;/span&gt; &lt;span class="p"&gt;})&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Database-agnostic (v0.5.0)
&lt;/h2&gt;

&lt;p&gt;This was the biggest improvement in the latest release. The migrations and model layer detect your &lt;code&gt;ActiveRecord::Base.connection.adapter_name&lt;/code&gt; at runtime and pick the right column types and SQL functions:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Adapter&lt;/th&gt;
&lt;th&gt;JSON column&lt;/th&gt;
&lt;th&gt;Time bucketing SQL&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;PostgreSQL&lt;/td&gt;
&lt;td&gt;&lt;code&gt;jsonb&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;date_trunc(...)&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MySQL&lt;/td&gt;
&lt;td&gt;&lt;code&gt;json&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;DATE_FORMAT(...)&lt;/code&gt; / &lt;code&gt;DATE(...)&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SQLite&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;text&lt;/code&gt; (with JSON serialisation)&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;strftime(...)&lt;/code&gt; / &lt;code&gt;DATE(...)&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Application code is identical regardless of adapter - the JSON accessors always return native Ruby &lt;code&gt;Hash&lt;/code&gt; / &lt;code&gt;Array&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;If you're writing your own migrations against the same multi-DB strategy, the helper is public API:&lt;br&gt;
&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="no"&gt;Findbug&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="no"&gt;AdapterHelper&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json_column_type&lt;/span&gt;      &lt;span class="c1"&gt;# :jsonb / :json / :text&lt;/span&gt;
&lt;span class="no"&gt;Findbug&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="no"&gt;AdapterHelper&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json_default&lt;/span&gt;&lt;span class="p"&gt;({})&lt;/span&gt;
&lt;span class="no"&gt;Findbug&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="no"&gt;AdapterHelper&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;date_trunc_sql&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"hour"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;"captured_at"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Alerts configured at runtime, not in code
&lt;/h2&gt;

&lt;p&gt;Email / Slack / Discord / Webhook channels live in a DB table managed from the dashboard at &lt;code&gt;/findbug/alerts&lt;/code&gt;. No redeploy to add a webhook. Same-error notifications are throttled by fingerprint (default 5-minute window).&lt;/p&gt;
&lt;h2&gt;
  
  
  Compared to existing solutions
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Sentry / Bugsnag&lt;/th&gt;
&lt;th&gt;FindBug&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;$26+ per seat / month&lt;/td&gt;
&lt;td&gt;Free, MIT&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Data location&lt;/td&gt;
&lt;td&gt;Third-party servers&lt;/td&gt;
&lt;td&gt;Your infra&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Network dependency&lt;/td&gt;
&lt;td&gt;Required&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Setup&lt;/td&gt;
&lt;td&gt;API keys + SDK + per-env config&lt;/td&gt;
&lt;td&gt;One gem, one command&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Alert config&lt;/td&gt;
&lt;td&gt;Their dashboard&lt;/td&gt;
&lt;td&gt;Your dashboard&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Customisation&lt;/td&gt;
&lt;td&gt;Bounded by their UI&lt;/td&gt;
&lt;td&gt;Fork the gem&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Job scheduler needed&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No (built-in thread)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Ruby 3.1+ · Rails 7.0+ (7.x and 8.x both tested) · Redis 4.0+&lt;/li&gt;
&lt;li&gt;PostgreSQL / MySQL / SQLite - all supported, adapter auto-detected&lt;/li&gt;
&lt;li&gt;79 RSpec examples covering adapter detection, JSON-column normalisation, model behaviour, and aggregation&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  What it doesn't do (yet)
&lt;/h2&gt;

&lt;p&gt;Being honest about the gap:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No source-map handling&lt;/strong&gt; - server-side errors only for now&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No frontend JS error tracking&lt;/strong&gt; - on the v0.6 roadmap for Rails apps that render views&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No multi-project support&lt;/strong&gt; - one gem = one app&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No SaaS option&lt;/strong&gt; - you self-host or you don't use it&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;strong&gt;Website &amp;amp; docs:&lt;/strong&gt; &lt;a href="https://findbug.dev" rel="noopener noreferrer"&gt;findbug.dev&lt;/a&gt; · &lt;a href="https://findbug.dev/docs" rel="noopener noreferrer"&gt;findbug.dev/docs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💎 &lt;strong&gt;RubyGems:&lt;/strong&gt; &lt;a href="https://rubygems.org/gems/findbug" rel="noopener noreferrer"&gt;rubygems.org/gems/findbug&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💻 &lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/ITSSOUMIT/findbug" rel="noopener noreferrer"&gt;github.com/ITSSOUMIT/findbug&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you find this useful, a ⭐ on GitHub means a lot - it helps other Rails developers find the gem:&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/ITSSOUMIT" rel="noopener noreferrer"&gt;
        ITSSOUMIT
      &lt;/a&gt; / &lt;a href="https://github.com/ITSSOUMIT/findbug" rel="noopener noreferrer"&gt;
        findbug
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      Self-hosted error tracking and performance monitoring for Rails. Sentry-like functionality with all data on your infrastructure.
    &lt;/h3&gt;
  &lt;/div&gt;
&lt;/div&gt;






&lt;p&gt;Built by &lt;a href="https://github.com/ITSSOUMIT" rel="noopener noreferrer"&gt;Soumit Das&lt;/a&gt;. Would love feedback - especially from anyone running it on MySQL (the new adapter-agnostic path is fresh) or anyone with thoughts on the frontend-error-tracking direction.&lt;/p&gt;

</description>
      <category>rails</category>
      <category>ruby</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
