<?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: Xavier Maugendre</title>
    <description>The latest articles on DEV Community by Xavier Maugendre (@xavier_maugendre).</description>
    <link>https://dev.to/xavier_maugendre</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%2F3847971%2F953291df-de87-46a5-92d2-ec8534b829ce.jpg</url>
      <title>DEV Community: Xavier Maugendre</title>
      <link>https://dev.to/xavier_maugendre</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xavier_maugendre"/>
    <language>en</language>
    <item>
      <title>ZabbixTune — A pgtune-style configurator for zabbix_server.conf</title>
      <dc:creator>Xavier Maugendre</dc:creator>
      <pubDate>Sat, 28 Mar 2026 16:42:17 +0000</pubDate>
      <link>https://dev.to/xavier_maugendre/zabbixtune-a-pgtune-style-configurator-for-zabbixserverconf-3k82</link>
      <guid>https://dev.to/xavier_maugendre/zabbixtune-a-pgtune-style-configurator-for-zabbixserverconf-3k82</guid>
      <description>&lt;h1&gt;
  
  
  ZabbixTune — A pgtune-style configurator for zabbix_server.conf
&lt;/h1&gt;

&lt;p&gt;If you've ever set up a Zabbix server in production, you know the problem: &lt;br&gt;
the default zabbix_server.conf is not production-ready.&lt;/p&gt;

&lt;p&gt;StartPollers=5, CacheSize=32M, ValueCacheSize=8M — these defaults work &lt;br&gt;
for a lab, but they will hurt your performance in production with hundreds &lt;br&gt;
or thousands of hosts.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with default Zabbix server configuration
&lt;/h2&gt;

&lt;p&gt;Most Zabbix administrators tune their server configuration by trial and &lt;br&gt;
error, or by copying values from blog posts that don't match their &lt;br&gt;
infrastructure. There was no tool to calculate the right parameters based &lt;br&gt;
on your actual setup — until now.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing ZabbixTune
&lt;/h2&gt;

&lt;p&gt;ZabbixTune is an open source, browser-based configurator that generates &lt;br&gt;
an optimized zabbix_server.conf based on your infrastructure.&lt;/p&gt;

&lt;p&gt;Inspired by pgtune (the popular PostgreSQL configurator), ZabbixTune &lt;br&gt;
asks you a few questions about your setup and generates the full &lt;br&gt;
configuration file with only the modified parameters uncommented.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;MySQL, PostgreSQL and PostgreSQL + TimescaleDB&lt;/strong&gt; support&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Active/passive proxy mode&lt;/strong&gt; with correct NVPS calculation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full zabbix_server.conf&lt;/strong&gt; generated from the official Zabbix template&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Only modified variables are uncommented&lt;/strong&gt; — easy to review and apply&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Proxy-aware NVPS calculation&lt;/strong&gt; — distinguishes collection vs ingestion&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;100% client-side&lt;/strong&gt; — single HTML file, no dependencies, no data sent&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Select your database type&lt;/li&gt;
&lt;li&gt;Enter your infrastructure — number of hosts, items per host, 
collection interval, CPU cores, RAM&lt;/li&gt;
&lt;li&gt;Toggle the collection types you use — SNMP, ICMP, HTTP, IPMI, VMware&lt;/li&gt;
&lt;li&gt;Configure your proxies — active or passive mode, number of proxies&lt;/li&gt;
&lt;li&gt;Get your optimized zabbix_server.conf instantly&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The tool calculates StartPollers, StartPreprocessors, StartDBSyncers, &lt;br&gt;
CacheSize, HistoryCacheSize, ValueCacheSize, TrendCacheSize and all &lt;br&gt;
other key parameters based on your actual NVPS (New Values Per Second).&lt;/p&gt;

&lt;h2&gt;
  
  
  Why NVPS matters
&lt;/h2&gt;

&lt;p&gt;NVPS is the key metric for Zabbix server performance. The tool correctly &lt;br&gt;
separates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Collection NVPS&lt;/strong&gt; — what your pollers actually collect&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ingestion NVPS&lt;/strong&gt; — what your backend must write to the database&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When using proxies, the backend doesn't collect — it only ingests data &lt;br&gt;
sent by proxies. This changes the sizing of pollers, trappers, &lt;br&gt;
preprocessors and caches significantly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;strong&gt;Live tool:&lt;/strong&gt; &lt;a href="https://xavier-maugendre.github.io/zabbix-server-tuner/" rel="noopener noreferrer"&gt;https://xavier-maugendre.github.io/zabbix-server-tuner/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📦 &lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/xavier-maugendre/zabbix-server-tuner" rel="noopener noreferrer"&gt;https://github.com/xavier-maugendre/zabbix-server-tuner&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The tool is open source, single HTML file, no backend, no tracking. &lt;br&gt;
Feedback and contributions welcome!&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%2Fvza2cn8b48zj9c5qxonr.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%2Fvza2cn8b48zj9c5qxonr.png" alt=" " width="800" height="707"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>zabbix</category>
      <category>monitoring</category>
      <category>sysadmin</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
