<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>ZABBIX Forums - Zabbix Help</title>
		<link>https://www.zabbix.com/forum/</link>
		<description>Use this forum to ask questions about how to do things in Zabbix</description>
		<language>en</language>
		<lastBuildDate>Thu, 27 Aug 2026 22:36:44 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>https://assets.zabbix.com/img/logo.png</url>
			<title>ZABBIX Forums - Zabbix Help</title>
			<link>https://www.zabbix.com/forum/</link>
		</image>
		<item>
			<title>Differences in interfaces found</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516276-differences-in-interfaces-found</link>
			<pubDate>Thu, 27 Aug 2026 09:45:24 GMT</pubDate>
			<description>Crucial information: 
Production environment: 
Host OS: ubuntu-26.04-live-server-amd64 
Zabbix version: 7.4.13 
Database: MySQL 
Webserver: Nginx 
Template used: Windows by SNMP 
Template Vendor and version: Zabbix, 7.4-4 
 
Test environment:</description>
			<content:encoded><![CDATA[Crucial information:<br />
Production environment:<br />
Host OS: ubuntu-26.04-live-server-amd64<br />
Zabbix version: 7.4.13<br />
Database: MySQL<br />
Webserver: Nginx<br />
Template used: Windows by SNMP<br />
Template Vendor and version: Zabbix, 7.4-4<br />
<br />
Test environment:<br />
Host OS: Zabbix appliance (Alma Linux 8)<br />
Zabbix version: 7.4.13<br />
Database: MySQL<br />
Webserver: Nginx<br />
Template used: Windows by SNMP<br />
​Template Vendor and version: Zabbix, 7.2-2<br />
​<br />
Small introduction: In the past I had an small Zabbix setup. Overwhelmed by all the options, I choose to switch to NagiosCSP. It worked for us, easier to setup and free for 50 devices. Unfortunately, because of changes in their policy, the CSP license is revoked. With my small experience with Zabbix I choose to come back. I've made myself an test environment based on the Zabbix appliance. Added an host, with help of AI created a specific service readout with a trigger. It was quite doable for me, and it no longer felt like a raging river. By testing things at my leisure I was getting somewhere. But, for the appliance I read that it is not the best option for production purposes. So, pulling the Ubuntu ISO to our cluster, attached it to the Nagios VM and formatted the whole server. LET'S START! I felt confident as my test-enviroment did what i wanted.<br />
<br />
Server installed etcetc. Added a host, just like my test environment. Same host, same template, same SNMP settings etc. Wait, WHAT? Where I had 135 items and 15 triggers for the host in the test environment, I now have 203 items and 90 triggers for the same host in my 'production'-environment! In my search for the difference, I found out there where more network interfaces added. In test: 1 interface, production around 7 I guess? As I'm using the same template etc, I tried to investigate where the difference is made.<br />
<br />
With help of AI (and running around a lot in the same circles, TNX AI!) it seems that the appliance (test environment) receives the same data for the network interfaces discovery. But, in production it seems that the interfaces that would normally be filtered out by the macro's (which apparently works in test) are now still added. While comparing data it looks like the test environment for example receives the netwerk interface names as QoS, teredo etc. In production, it looks like the interface names are moved to the interface description, where a different macro is applied and therefore the interfaces aren't filtered out. But, this is a guess... <br />
<br />
Some information from the database to show the found interfaces:<br />
Production:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">mysql&gt; SELECT DISTINCT
    -&gt;        SUBSTRING_INDEX(
    -&gt;          SUBSTRING_INDEX(i.name,'(',-1),
    -&gt;          ')',1
    -&gt;        ) AS interface_name
    -&gt; FROM items i
    -&gt; JOIN hosts h ON h.hostid = i.hostid
    -&gt; WHERE h.host = 'SVR-MAC-APP03'
    -&gt;   AND i.flags = 4
    -&gt;   AND i.key_ LIKE 'net.if.in&#91;%'
    -&gt; ORDER BY interface_name;
+------------------------------------------------------------------+
| interface_name                                                   |
+------------------------------------------------------------------+
| Ethernet0                                                        |
| Ethernet0-QoS Packet Scheduler-0000                              |
| Ethernet0-WFP 802.3 MAC Layer LightWeight Filter-0000            |
| Ethernet0-WFP Native MAC Layer LightWeight Filter-0000           |
| Local Area Connection* 1                                         |
| Local Area Connection* 2                                         |
| Local Area Connection* 3                                         |
| Local Area Connection* 4                                         |
| Local Area Connection* 5                                         |
| Local Area Connection* 6                                         |
| Local Area Connection* 7                                         |
| Local Area Connection* 7-QoS Packet Scheduler-0000               |
| Local Area Connection* 7-WFP Native MAC Layer LightWeight Filter |
| Local Area Connection* 8                                         |
| Local Area Connection* 8-QoS Packet Scheduler-0000               |
| Local Area Connection* 8-WFP Native MAC Layer LightWeight Filter |
| Local Area Connection* 9                                         |
| Local Area Connection* 9-QoS Packet Scheduler-0000               |
| Local Area Connection* 9-WFP Native MAC Layer LightWeight Filter |
| Loopback Pseudo-Interface 1                                      |
+------------------------------------------------------------------+
20 rows in set (0.00 sec)</pre>
</div>Test:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">mysql&gt; SELECT DISTINCT
    -&gt;        SUBSTRING_INDEX(
    -&gt;          SUBSTRING_INDEX(i.name,'(',-1),
    -&gt;          ')',1
    -&gt;        ) AS interface_name
    -&gt; FROM items i
    -&gt; JOIN hosts h ON h.hostid = i.hostid
    -&gt; WHERE h.host = 'SVR-MAC-APP03'
    -&gt;   AND i.flags = 4
    -&gt;   AND i.key_ LIKE 'net.if.in&#91;%'
    -&gt; ORDER BY interface_name;
+----------------+
| interface_name |
+----------------+
| Ethernet0      |
+----------------+
1 row in set (0.00 sec)</pre>
</div>When running an SNMP walk to the same host, there are also differences to see: On the production server the response is in HEX, on the testserver i receive a response in text. A small part of the output:<br />
Production:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">snmpwalk -v2c -c thisissecret:) hostip 1.3.6.1.2.1.2.2.1.2
iso.3.6.1.2.1.2.2.1.2.1 = Hex-STRING: 53 6F 66 74 77 61 72 65 20 4C 6F 6F 70 62 61 63
6B 20 49 6E 74 65 72 66 61 63 65 20 31 00
iso.3.6.1.2.1.2.2.1.2.2 = Hex-STRING: 57 41 4E 20 4D 69 6E 69 70 6F 72 74 20 28 4E 65
74 77 6F 72 6B 20 4D 6F 6E 69 74 6F 72 29 00</pre>
</div>Test:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">snmpwalk -v2c -c thisissecret:) hostip 1.3.6.1.2.1.2.2.1.2
IF-MIB::ifDescr.1 = STRING: Software Loopback Interface 1.
IF-MIB::ifDescr.2 = STRING: WAN Miniport (Network Monitor).</pre>
</div>Can someone give me a helping hand in achieving the same results in both enviroments?<br />
​]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>RichardNL</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516276-differences-in-interfaces-found</guid>
		</item>
		<item>
			<title>Question on deletion of hosts and retention of historical data</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516236-question-on-deletion-of-hosts-and-retention-of-historical-data</link>
			<pubDate>Tue, 25 Aug 2026 21:02:37 GMT</pubDate>
			<description>We are currently being audited by a software vendor, and they have asked us to demonstrate that our monitoring system does not contain any data related to a specific software application. That requirement seems unusual, but I need to verify what data may still exist in Zabbix. 
 
If I deleted hosts...</description>
			<content:encoded><![CDATA[We are currently being audited by a software vendor, and they have asked us to demonstrate that our monitoring system does not contain any data related to a specific software application. That requirement seems unusual, but I need to verify what data may still exist in Zabbix.<br />
<br />
If I deleted hosts from Zabbix in May, does Zabbix immediately remove all historical data associated with those hosts, or is that data retained and cleaned up later by the Housekeeper process?<br />
I understand that Housekeeper manages historical data retention, but I'm unclear whether it only applies to currently configured hosts or if it also retains data from hosts that have already been deleted. For example, if my history retention period is 760 days, could historical data from deleted hosts still exist in the database?<br />
<br />
If historical data is retained after host deletion, is there a supported way to purge that data for specific deleted hosts without affecting the historical data of other hosts that I still want to keep?<br />
]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>MrMasterPatcher</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516236-question-on-deletion-of-hosts-and-retention-of-historical-data</guid>
		</item>
		<item>
			<title><![CDATA[Web Scenarios &amp;amp; Notifications]]></title>
			<link>https://www.zabbix.com/forum/zabbix-help/516186-web-scenarios-notifications</link>
			<pubDate>Mon, 24 Aug 2026 11:46:53 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I'd like to monitor a lot of our private websites on the local network. I've read that this can be achieved via Web Scenarios. For context, I'm used to traditional web monitoring solutions (status pages etc.). 
 
We have about 10 servers on the network, each hosting a couple of sites on...]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I'd like to monitor a lot of our private websites on the local network. I've read that this can be achieved via Web Scenarios. For context, I'm used to traditional web monitoring solutions (status pages etc.).<br />
<br />
We have about 10 servers on the network, each hosting a couple of sites on different FQDNs. So for each site I want to monitor, I've created a web scenario.<br />
<br />
But that alone does not give me alerts/notifications. As far as I've dug and looked... it isn't native? By my understanding I'd need a trigger to generate a problem, and based on that I can get a notification/alert.<br />
<br />
I figured I'd create a generic template that would give me a generic trigger like &quot;Web: example.com is unhealthy / not OK&quot; but for that I need the scenario name. As far as I've read, I can't achieve some type of Discovery to create these triggers automatically either.<br />
<br />
I'm new to Zabbix and a bit lost in the UI. The fact that this is a long-term production setup with a lot of old/legacy templates and dashboards doesn't help either.<br />
<br />
Zabbix version. 7.0.28<br />
<br />
<br />
Am I missing something?<br />
Any help or point in the right directions would be very welcomed.<br />
Thanks.]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>DepstR</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516186-web-scenarios-notifications</guid>
		</item>
		<item>
			<title><![CDATA[API calls can't connect to DB but frontend is working]]></title>
			<link>https://www.zabbix.com/forum/zabbix-help/516145-api-calls-can-t-connect-to-db-but-frontend-is-working</link>
			<pubDate>Sat, 22 Aug 2026 12:44:11 GMT</pubDate>
			<description>This post has been deleted as the issue was simply being on the wrong Zabbix server.  :rolleyes:</description>
			<content:encoded><![CDATA[This post has been deleted as the issue was simply being on the wrong Zabbix server.  <img src="https://www.zabbix.com/forum/core/images/smilies/rolleyes.png" border="0" alt="" title="Roll Eyes (Sarcastic)" smilieid="7" class="inlineimg" />]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>argibbs</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516145-api-calls-can-t-connect-to-db-but-frontend-is-working</guid>
		</item>
		<item>
			<title>Super Admin role required for API requests</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516122-super-admin-role-required-for-api-requests</link>
			<pubDate>Sat, 22 Aug 2026 01:57:45 GMT</pubDate>
			<description>Is it expected behavior that the Super Admin role is required for a user to use an API Token? 
 
I have a separate user than myself. API responses come back empty(ish) 
 
 
If I use my own account, which is a Super admin, without an API Token:...</description>
			<content:encoded><![CDATA[Is it expected behavior that the Super Admin role is required for a user to use an API Token?<br />
<br />
I have a separate user than myself. API responses come back empty(ish)<br />
<div class="bbcode_container">
	<div class="bbcode_quote">
		<div class="quote_container">
			
			<div class="bbcode_quote_container b-icon-fa b-icon-fa--24 fa-solid fa-quote-left"></div>
			
				{&quot;jsonrpc&quot;:&quot;2.0&quot;,&quot;result&quot;:[],&quot;id&quot;:1}
			
		</div>
	</div>
</div>If I use my own account, which is a Super admin, without an API Token: <a href="https://www.zabbix.com/documentation/current/en/manual/api#authentication" target="_blank">https://www.zabbix.com/documentation...authentication</a> the same payload returns a result.<br />
<br />
If I convert the user in question, to a Super Admin role, then they can make api requests, both using their username/password and the api token. In fact, after I change their role, they can use the token returned from the user.login method prior to the change even, which seems like a bit of a security issue as well . As soon as I change their role back to Admin role, requests return nothing. They do not fail authentication either, so that's good. I don't see any relevant errors for the requests in the logs. Although, I may not have the necessary log level to see any. <br />
<br />
With the user set to the Admin role, the &quot;Access to API&quot; permission IS enabled.<br />
<br />
This is for Zabbix 7.4.13 and jsonrpc 2.0.running on Ubuntu 24.04<br />
<br />
Any suggestions? Is this known/expected behavior?]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>frogstarr78</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516122-super-admin-role-required-for-api-requests</guid>
		</item>
		<item>
			<title>Can zabbix-proxy use the system dns cache?</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516101-can-zabbix-proxy-use-the-system-dns-cache</link>
			<pubDate>Fri, 21 Aug 2026 10:06:01 GMT</pubDate>
			<description><![CDATA[I've researched a bit about this, but i only find people complaining about zabbix agent ~ zabbix server repeated dns requests. 
 
Im curious about Zabbix Proxy ~ hosts added by fqdn, if it can use the local systemctl-resolve or any dns caching on the system the proxy itself is using. 
 
I know...]]></description>
			<content:encoded><![CDATA[I've researched a bit about this, but i only find people complaining about zabbix agent ~ zabbix server repeated dns requests.<br />
<br />
Im curious about Zabbix Proxy ~ hosts added by fqdn, if it can use the local systemctl-resolve or any dns caching on the system the proxy itself is using.<br />
<br />
I know about <a href="https://support.zabbix.com/browse/ZBXNEXT-1002" target="_blank">https://support.zabbix.com/browse/ZBXNEXT-1002</a> but it seems to apply to only the zabbix agent?<br />
<br />
Any info would be valuable.<br />
<br />
Thanks! ]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>Atroskelis</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516101-can-zabbix-proxy-use-the-system-dns-cache</guid>
		</item>
		<item>
			<title>No auth token found, please login before making Zabbix requests</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516080-no-auth-token-found-please-login-before-making-zabbix-requests</link>
			<pubDate>Thu, 20 Aug 2026 19:58:30 GMT</pubDate>
			<description>Hello; 
 
I am currently having an issue with hosts that are using Zabbix sender embedded inside a Kubernetes pod to send data to the server, which is running on Zabbix version 7.4. Despite apparently succeeding in logging into the server, there is an authorization error after the login succeeds...</description>
			<content:encoded><![CDATA[Hello;<br />
<br />
I am currently having an issue with hosts that are using Zabbix sender embedded inside a Kubernetes pod to send data to the server, which is running on Zabbix version 7.4. Despite apparently succeeding in logging into the server, there is an authorization error after the login succeeds mentioning a missing auth token - note that as of currently, I have not set any requirement for an auth token in the system, and the hosts running on Zabbix Agent are connecting properly and functioning as intended despite having no auth token set up. It may be worth mentioning that these hosts were originally directed towards a separate Zabbix server running on version 4.4, and that I am in the process of redirecting them to the new server rather than making them as part of a fresh installation.<br />
<br />
The following is a condensed version of the error that occurs every 5 minutes, with all potentially sensitive information for names of pods and templates removed:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">2026-08-20T18:55:34.620+00:00 INF &#91;pod&#93;:  Logging into Zabbix
2026-08-20T18:55:34.701+00:00 INF &#91;pod&#93;:  Zabbix login successful
2026-08-20T18:55:34.701+00:00 INF &#91;pod&#93;:  Getting Zabbix template ID for &quot;x&quot;
2026-08-20T18:55:34.701+00:00 ERR &#91;pod&#93;:  Failed Zabbix upload/host creation with error: No auth token found, please login before making Zabbix requests</pre>
</div>Note that despite claiming that logging in was successful, there are no records on the side of the Zabbix server showing that there was a connection from this IP address.<br />
<br />
Any help would be appreciated, and I thank you for your time.]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>armbl</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516080-no-auth-token-found-please-login-before-making-zabbix-requests</guid>
		</item>
		<item>
			<title>Trigger Description - Can I use item values?</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516073-trigger-description-can-i-use-item-values</link>
			<pubDate>Thu, 20 Aug 2026 13:13:19 GMT</pubDate>
			<description><![CDATA[I have a template I created that I link to the base Linux/windows templates. I've added some items and dependent items, etc. 
I'd like to be able to use item values in a trigger description. The documentation says that macros are valid in trigger descriptions. 
 
I'm trying this: (I cloned the...]]></description>
			<content:encoded><![CDATA[I have a template I created that I link to the base Linux/windows templates. I've added some items and dependent items, etc.<br />
I'd like to be able to use item values in a trigger description. The documentation says that macros are valid in trigger descriptions.<br />
<br />
I'm trying this: (I cloned the default trigger for high PCU, and modified the description.<br />
<br />
Windows: High CPU utilization (over 90% for 5m) {?last(//top.cpu.pname)} : {?last(//top.cpu.pct)}%<br />
<br />
I end up with *UNKNOWN* after the macros expand:<br />
<br />
Windows: High CPU utilization (over 90% for 5m) *UNKNOWN* : *UNKNOWN*%<br />
<br />
<br />
Here are all of the relevent items from the host perspective, so they are all available and populated:<br />
<img itemprop="image" data-attachmentid="516075" width="868" height="348" data-align="none" border="0" src="filedata/fetch?id=516075&amp;d=1787230789" alt="Click image for larger version

Name:	image.png
Views:	29
Size:	187.0 KB
ID:	516075" data-fullsize-url="filedata/fetch?id=516075&amp;d=1787230789" data-thumb-url="filedata/fetch?id=516075&amp;d=1787230789&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
I've tried several variations, but I'm starting to wonder if the fact that these templates are linked is the issue? In order for this to work, do I need all of the item values to be in the SAME template?<br />
<br />
Thanks,<br />
<br />
-Tom<br />
​]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>tcweb</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516073-trigger-description-can-i-use-item-values</guid>
		</item>
		<item>
			<title>Forcing Zabbix Agent 2 Active Items to Send Values Immediately</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516040-forcing-zabbix-agent-2-active-items-to-send-values-immediately</link>
			<pubDate>Wed, 19 Aug 2026 18:40:37 GMT</pubDate>
			<description>With Zabbix Agent (version 1) using active checks, restarting the zabbix-agent service forced all items to collect and send their values to the Zabbix server immediately. 
 
I am now configuring Zabbix Agent 2 in Docker, but restarting the container does not appear to force active items to collect...</description>
			<content:encoded><![CDATA[With Zabbix Agent (version 1) using active checks, restarting the zabbix-agent service forced all items to collect and send their values to the Zabbix server immediately.<br />
<br />
I am now configuring Zabbix Agent 2 in Docker, but restarting the container does not appear to force active items to collect or send values. If an item's update interval is set to one hour, I seem to have to wait an hour for its initial value to be collected and sent to the server after the item is created.<br />
<br />
Is there a way to force Zabbix Agent 2 to immediately collect and send values for active items. This is particularly inconvenient when testing new items.]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>Marcin_k</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516040-forcing-zabbix-agent-2-active-items-to-send-values-immediately</guid>
		</item>
		<item>
			<title>ZABBIX AGENT2 - Erro Unknown metric pgsql.oldest.xid</title>
			<link>https://www.zabbix.com/forum/zabbix-help/516039-zabbix-agent2-erro-unknown-metric-pgsql-oldest-xid</link>
			<pubDate>Wed, 19 Aug 2026 18:06:41 GMT</pubDate>
			<description><![CDATA[I am setting up PostgreSQL monitoring in Zabbix using Zabbix Agent 2 and the PostgreSQL plugin, but there is an error in the monitoring data. &quot;Unknown metric pgsql.oldest.xid.&quot; Zabbix server version 7.0.29 and plugin PostGreSQL version 7.0.29. I have already checked the agent and module...]]></description>
			<content:encoded><![CDATA[I am setting up PostgreSQL monitoring in Zabbix using Zabbix Agent 2 and the PostgreSQL plugin, but there is an error in the monitoring data. <span style="color:#E33734"><span style="font-family:Arial"><span style="font-size:12px">&quot;Unknown metric pgsql.oldest.xid</span></span></span>.&quot; Zabbix server version 7.0.29 and plugin PostGreSQL version 7.0.29. I have already checked the agent and module configuration files, but I cannot find where the configuration error lies.]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>voltere.silva</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/516039-zabbix-agent2-erro-unknown-metric-pgsql-oldest-xid</guid>
		</item>
		<item>
			<title>Zabbix 7.0: Direct Inbound Integration from Dynatrace via Webhook (JSON-RPC 2.0)</title>
			<link>https://www.zabbix.com/forum/zabbix-help/515999-zabbix-7-0-direct-inbound-integration-from-dynatrace-via-webhook-json-rpc-2-0</link>
			<pubDate>Tue, 18 Aug 2026 14:53:54 GMT</pubDate>
			<description><![CDATA[Hi everyone, 
 
I'm implementing an inbound integration from Dynatrace Managed to Zabbix 7.0. The goal is to have Dynatrace push its Problems directly into Zabbix without an intermediate middleware script. 
 
Current Setup: 
 
 Dynatrace is using a &quot;Custom Integration&quot; Webhook pointing to...]]></description>
			<content:encoded><![CDATA[Hi everyone,<br />
<br />
I'm implementing an inbound integration from Dynatrace Managed to Zabbix 7.0. The goal is to have Dynatrace push its Problems directly into Zabbix without an intermediate middleware script.<br />
<br />
Current Setup:<ul><li>Dynatrace is using a &quot;Custom Integration&quot; Webhook pointing to /zabbix/api_jsonrpc.php.</li>
<li>Zabbix responds with HTTP 200, but since the Dynatrace payload is a flat JSON, Zabbix returns an internal error : {&quot;jsonrpc&quot;:&quot;2.0&quot;,&quot;error&quot;:{&quot;code&quot;:-32602,&quot;message&quot;:&quot;Invalid params.&quot;},&quot;id&quot;:1}.</li>
<li>Zabbix API expects a strict JSON-RPC 2.0 structure (method, params, auth).</li>
</ul>What I've verified:<ol class="decimal"><li>Connectivity: ActiveGates reach the Zabbix server successfully.</li>
<li>Zabbix Trapped: Works manually via zabbix_sender on the server, but Dynatrace speaks HTTP, not the binary protocol.</li>
<li>API: I can get a token and query items via curl.</li>
</ol>My Questions:<ol class="decimal"><li>Is there a native way in Zabbix 7.0 to create an HTTP Listener or a Media Type that can catch a plain JSON POST and translate it into a Zabbix Problem?</li>
<li>Can I use the HTTP Agent or a Script item to act as an endpoint for external webhooks?</li>
<li>Has anyone successfully implemented a Zabbix-side &quot;JavaScript bridge&quot; within a Media Type to handle these incoming JSON-RPC calls?</li>
</ol>Thanks for any help or templates!<br />
Fernando Moreira]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>fernando.moreira</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/515999-zabbix-7-0-direct-inbound-integration-from-dynatrace-via-webhook-json-rpc-2-0</guid>
		</item>
		<item>
			<title>Synology Template Overhaul: SNMP issue tracking disks as LLD hosts</title>
			<link>https://www.zabbix.com/forum/zabbix-help/515989-synology-template-overhaul-snmp-issue-tracking-disks-as-lld-hosts</link>
			<pubDate>Tue, 18 Aug 2026 10:43:47 GMT</pubDate>
			<description>Hello, 
 
I am currently trying to track all the disks of several Synology NAS systems in Zabbix. 
 
The goal is to keep the NAS as the main host, while creating the individual disks as separate hosts through low-level discovery. This would allow us to track SMART values and attach disk-specific...</description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I am currently trying to track all the disks of several Synology NAS systems in Zabbix.<br />
<br />
The goal is to keep the NAS as the main host, while creating the individual disks as separate hosts through low-level discovery. This would allow us to track SMART values and attach disk-specific triggers and inventory information to each drive, and keep each information<br />
<br />
The disk information is spread across several SNMP tables. Depending on the Synology model, I can receive:<br />
<br />
Serial numbers<br />
Model names<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">/dev/sdX</pre>
</div> or <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">sataX</pre>
</div> device names<br />
SMART attribute names and raw values<br />
<br />
<br />
The table positions cannot be used for matching, so the entries have to be correlated by their identity. For example:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">/dev/sda = sda = Drive 1</pre>
</div>This part is working reasonably well.<br />
<br />
The problem is that the parent NAS host and the discovered disk hosts all use the same SNMPv3 interface and target IP. This unpleasantly leads to errors:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code notranslate" style="max-height:calc(30 *  + 2 * var(--bbcode-padding) + var(--h-scrollbar-allowance));">SNMP engineId is not unique</pre>
</div>It appears that simply adjusting the check intervals is not a reliable solution. The conflict is related to the same SNMP source being monitored through multiple Zabbix hosts.<br />
<br />
I mean, it is working ... somehow. The engineID will always collide somewhere else, so all metrics will finally arrive at some point. But I wouldn't call it &quot;reliable&quot;<br />
<br />
<img itemprop="image" title="grafik.png" data-attachmentid="515993" data-align="none" data-size="full" border="0" src="filedata/fetch?id=515993&amp;d=1787055041" alt="Click image for larger version

Name:	grafik.png
Views:	35
Size:	537.7 KB
ID:	515993" data-fullsize-url="filedata/fetch?id=515993&amp;d=1787055041" data-thumb-url="filedata/fetch?id=515993&amp;d=1787055041&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="grafik.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
Has anyone implemented a similar parent/child design, or can recommend the cleanest approach for this in Zabbix? I dont want to loose the individual tracking for the discs, because this way it is easier to view and monitor such assets.]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>killom</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/515989-synology-template-overhaul-snmp-issue-tracking-disks-as-lld-hosts</guid>
		</item>
		<item>
			<title>How do you go about alerting via MS Teams?</title>
			<link>https://www.zabbix.com/forum/zabbix-help/515972-how-do-you-go-about-alerting-via-ms-teams</link>
			<pubDate>Tue, 18 Aug 2026 06:36:17 GMT</pubDate>
			<description><![CDATA[Hi there, 
I'm configuring Zabbix notifications using an MS Teams Workflow media type and I'm trying to understand how others handle the user/media relationship. 
 
Scenario: 
- Media type &quot;MS Teams - Alerts&quot; is configured to sends notifications to Teams chat. 
- Above media type is used in Trigger...]]></description>
			<content:encoded><![CDATA[Hi there,<br />
I'm configuring Zabbix notifications using an MS Teams Workflow media type and I'm trying to understand how others handle the user/media relationship.<br />
<br />
Scenario:<br />
- Media type &quot;MS Teams - Alerts&quot; is configured to sends notifications to Teams chat.<br />
- Above media type is used in Trigger Action which is set to send anything that is a Warning (or above) to &quot;Cloud Team&quot; (user group) via &quot;MS Teams - Alerts&quot; (media type)<br />
- At least one user in &quot;Cloud Team&quot; needs to have a media type &quot;MS Teams - Alerts&quot; configured in their User Settings<br />
* However, if more than one user has it configured, the notification is sent more than once<br />
* Also, the fact that notifications are sent is dependent on one user (what if this account is deleted etc.?)<br />
<br />
How do you handle this?<br />
Do you create a dedicated account for alerts and attach all media types to it? If so, does the account need any specific permissions?<br />
Also, I've noticed that there's a way to set media type during user provisioning based on SAML attribute, but that seems to cover email only (or not?)<br />
<br />
<br />
Am I missing something here?]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>mickeyMoose</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/515972-how-do-you-go-about-alerting-via-ms-teams</guid>
		</item>
		<item>
			<title>Zabbix Trigger Logic</title>
			<link>https://www.zabbix.com/forum/zabbix-help/515960-zabbix-trigger-logic</link>
			<pubDate>Mon, 17 Aug 2026 16:20:32 GMT</pubDate>
			<description><![CDATA[I would like to implement this structure to the way my triggers occur. I have tried many options but it never seems to work. 
 
Trigger name: 
FMS Master is Down 
 
Expression: 
last(/LINUX FMS/system.run[pgrep -x fmshelper | wc -l])=0 
and 
last(/LINUX FMS/system.uptime)&gt;60m]]></description>
			<content:encoded><![CDATA[I would like to implement this structure to the way my triggers occur. I have tried many options but it never seems to work.<br />
<br />
Trigger name:<br />
FMS Master is Down<br />
<br />
Expression:<br />
last(/LINUX FMS/system.run[pgrep -x fmshelper | wc -l])=0<br />
and<br />
last(/LINUX FMS/system.uptime)&gt;60m<br />
<br />
Trigger name:<br />
Scripting Engine is Down<br />
<br />
Expression:​<br />
last(/LINUX FMS/system.run[pgrep -x fmsased | wc -l])=0<br />
and<br />
last(/LINUX FMS/system.uptime)&gt;60m​<br />
and<br />
last(/LINUX FMS/system.run[pgrep -x fmshelper | wc -l])=1<br />
<br />
<br />
I tried to make it that it gives it an hour before it says something but it still sends all the messages to the users when the server is restarted. We don't want it to send us these triggers unless the system hasn't been restarted, because its already implied these processes are down. If FMS Helper Service goes down, all FMS sub-processes go down with it. Nginx does not, but we do not want Nginx to only alert us if it down, not if the system restarted, causing it to be down with it.  If anyone could please help, that would be very lovely!<br />
<br />
<br />
Here is my current infrastructure.<br />
<br />
<img itemprop="image" title="image.png" data-attachmentid="515964" data-align="none" data-size="full" border="0" src="filedata/fetch?id=515964&amp;d=1786983436" alt="Click image for larger version

Name:	image.png
Views:	36
Size:	62.1 KB
ID:	515964" data-fullsize-url="filedata/fetch?id=515964&amp;d=1786983436" data-thumb-url="filedata/fetch?id=515964&amp;d=1786983436&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="image.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" />​]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>SamuelD</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/515960-zabbix-trigger-logic</guid>
		</item>
		<item>
			<title>SAML JIT and Admin account</title>
			<link>https://www.zabbix.com/forum/zabbix-help/515957-saml-jit-and-admin-account</link>
			<pubDate>Mon, 17 Aug 2026 13:00:01 GMT</pubDate>
			<description><![CDATA[Am I reading this right? From Zabbix DOC: 
&quot;If SAML authentication is enabled, users will be able to choose between logging in locally or via SAML single sign-on. If JIT provisioning is used, then only single sign-on is possible.&quot;. 
 
So, if I enable JIT which kind of is reasonable, then the local...]]></description>
			<content:encoded><![CDATA[Am I reading this right? From Zabbix DOC:<br />
&quot;If SAML authentication is enabled, users will be able to choose between logging in locally or via SAML single sign-on. If JIT provisioning is used, then only single sign-on is possible.&quot;.<br />
<br />
So, if I enable JIT which kind of is reasonable, then the local Admin account cannot be used (unless it's in the AD). So if AD or the internet connection goes down, you lock out the Admin account?<br />
<br />
Question: what is the point of locking out the Admin acount?]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>ZabbixSeeker</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/515957-saml-jit-and-admin-account</guid>
		</item>
	</channel>
</rss>
