<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Prometheus on homelab</title>
    <link>https://homelab.nbkelley.com/tags/prometheus/</link>
    <description>Recent content in Prometheus on homelab</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Tue, 21 Apr 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://homelab.nbkelley.com/tags/prometheus/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>AI-Driven Monitoring Pipeline</title>
      <link>https://homelab.nbkelley.com/docs/monitoring/pipeline/</link>
      <pubDate>Tue, 21 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/monitoring/pipeline/</guid>
      <description>&lt;h1 id=&#34;ai-driven-monitoring-pipeline&#34;&gt;AI-Driven Monitoring Pipeline&lt;a class=&#34;anchor&#34; href=&#34;#ai-driven-monitoring-pipeline&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;The monitoring pipeline is fully operational and running hourly. It collects rich structured data from four sources (Prometheus — 7 metrics, Uptime Kuma, UniFi, Synology), runs 4 parallel Ollama summarization calls, synthesises a final status report, and writes everything to Postgres. Hourly snapshots of raw UniFi and Prometheus data are stored in dedicated tables for delta computation. End-to-end runtime is ~13 minutes using &lt;code&gt;gemma4:e4b&lt;/code&gt; CPU-only on the Pavilion — accepted as-is pending Mac Studio.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Node Exporter Deployment</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/node-exporter/</link>
      <pubDate>Tue, 21 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/node-exporter/</guid>
      <description>&lt;h1 id=&#34;node-exporter-deployment&#34;&gt;Node Exporter Deployment&lt;a class=&#34;anchor&#34; href=&#34;#node-exporter-deployment&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;node_exporter&lt;/code&gt; is used to expose system-level metrics (CPU, RAM, Disk, Network) from Linux hosts to the central Prometheus instance at 192.168.1.167.&lt;/p&gt;&#xA;&lt;h2 id=&#34;monitored-hosts&#34;&gt;Monitored Hosts&lt;a class=&#34;anchor&#34; href=&#34;#monitored-hosts&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Host&lt;/th&gt;&#xA;          &lt;th&gt;IP&lt;/th&gt;&#xA;          &lt;th&gt;Port&lt;/th&gt;&#xA;          &lt;th&gt;Prometheus job&lt;/th&gt;&#xA;          &lt;th&gt;VLAN&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;nk-celebrimbor (Pavilion)&lt;/td&gt;&#xA;          &lt;td&gt;192.168.2.192&lt;/td&gt;&#xA;          &lt;td&gt;9100&lt;/td&gt;&#xA;          &lt;td&gt;pavilion&lt;/td&gt;&#xA;          &lt;td&gt;mithrandir&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;wiki-llm&lt;/td&gt;&#xA;          &lt;td&gt;192.168.1.206&lt;/td&gt;&#xA;          &lt;td&gt;9100&lt;/td&gt;&#xA;          &lt;td&gt;wiki&lt;/td&gt;&#xA;          &lt;td&gt;gandalf&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h2 id=&#34;installation&#34;&gt;Installation&lt;a class=&#34;anchor&#34; href=&#34;#installation&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;method-a-apt-ubuntu--preferred-for-ubuntu-hosts&#34;&gt;Method A: apt (Ubuntu) — preferred for Ubuntu hosts&lt;a class=&#34;anchor&#34; href=&#34;#method-a-apt-ubuntu--preferred-for-ubuntu-hosts&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;sudo apt install prometheus-node-exporter&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;# Service auto-enabled; runs on port 9100&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;method-b-manual-binary-other-distros&#34;&gt;Method B: Manual binary (other distros)&lt;a class=&#34;anchor&#34; href=&#34;#method-b-manual-binary-other-distros&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;wget https://github.com/prometheus/node_exporter/releases/download/v1.11.1/node_exporter-1.11.1.linux-amd64.tar.gz&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;tar xvf node_exporter-1.11.1.linux-amd64.tar.gz&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;sudo cp node_exporter-1.11.1.linux-amd64/node_exporter /usr/local/bin/&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Create &lt;code&gt;/etc/systemd/system/node_exporter.service&lt;/code&gt;:&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
