<?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 - Forums</title>
		<link>https://www.zabbix.com/forum/</link>
		<description>Zabbix forums</description>
		<language>en</language>
		<lastBuildDate>Fri, 29 May 2026 15:04:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>https://assets.zabbix.com/img/logo.png</url>
			<title>ZABBIX Forums - Forums</title>
			<link>https://www.zabbix.com/forum/</link>
		</image>
		<item>
			<title>Zabbix and Whatsapp Integration - Personal Account</title>
			<link>https://www.zabbix.com/forum/zabbix-cookbook/513878-zabbix-and-whatsapp-integration-personal-account</link>
			<pubDate>Fri, 29 May 2026 02:49:57 GMT</pubDate>
			<description><![CDATA[Zabbix WhatsApp Notify 
 
A JavaScript webhook bridge that receives alerts from your Zabbix server media and queues them for delivery to a configured WhatsApp contact. 
 
{&quot;alt&quot;:&quot;Docker...]]></description>
			<content:encoded><![CDATA[<b>Zabbix WhatsApp Notify</b><br />
<br />
A JavaScript webhook bridge that receives alerts from your Zabbix server media and queues them for delivery to a configured WhatsApp contact.<br />
<br />
<img itemprop="image" alt="Docker Image" data-align="none" data-size="full" border="0" src="https://img.shields.io/badge/docker-gidlinet%2Fzabbix--whatsapp--notify-blue?style=flat-square&amp;logo=docker" data-fullsize-url="https://img.shields.io/badge/docker-gidlinet%2Fzabbix--whatsapp--notify-blue?style=flat-square&amp;logo=docker" data-thumb-url="https://img.shields.io/badge/docker-gidlinet%2Fzabbix--whatsapp--notify-blue?style=flat-square&amp;logo=docker" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><img itemprop="image" data-align="none" data-size="full" border="0" src="https://www.zabbix.com/forum/image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==" alt="" data-fullsize-url="https://www.zabbix.com/forum/image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==" data-thumb-url="https://www.zabbix.com/forum/image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==&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" /> <hr /> <b>Prerequisites</b><br />
<br />
<br />
The following are required before running this service: <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">WhatsApp Account</td>
<td class="text_table_cke_show_border_td">An active WhatsApp account to link via QR code</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Zabbix Server</td>
<td class="text_table_cke_show_border_td">A running Zabbix instance configured with media webhooks</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Docker</td>
<td class="text_table_cke_show_border_td">Docker or Docker Compose installed on the host machine</td>
</tr>
</table></div>
  <hr /> <b>Deployment</b><br />
<br />
<b>Option 1 — Docker Run</b><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));">docker run --name whatsapp-notify \
-u 0:0 \
--restart unless-stopped \
-p 3002:3000 \
-v ./session/:/app/data/session \
--security-opt seccomp:unconfined \
gidlinet/zabbix-whatsapp-notify:v1</pre>
</div><b>Option 2 — Docker Compose</b><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));">services:
whatsapp-bot:
image: gidlinet/zabbix-whatsapp-notify:v1
container_name: whatsapp-notify
user: &quot;0:0&quot;
restart: unless-stopped
ports:
- &quot;3002:3000&quot;
volumes:
- /session/:/app/data/session
security_opt:
- seccomp:unconfined</pre>
</div><br />
To start the service, run the following command from the directory containing your docker-compose.yml:<br />
sudo docker compose down &amp;&amp; sudo docker compose pull &amp;&amp; sudo docker compose up -d<br />
<br />
<br />
This command performs three sequential operations: <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">1</td>
<td class="text_table_cke_show_border_td">docker compose down</td>
<td class="text_table_cke_show_border_td">Stops and removes any currently running instance of the container</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">2</td>
<td class="text_table_cke_show_border_td">docker compose pull</td>
<td class="text_table_cke_show_border_td">Pulls the latest image from the registry</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">3</td>
<td class="text_table_cke_show_border_td">docker compose up -d</td>
<td class="text_table_cke_show_border_td">Starts the container in detached mode (runs in the background)</td>
</tr>
</table></div>
  <hr /> <b>Account Setup</b><br />
<br />
<br />
Once the container is running, navigate to the login page in your browser to scan the QR code:<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));">http://&lt;your-ip&gt;:&lt;port&gt;/login</pre>
</div><br />
<b>Examples:</b><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));">http://localhost:3002/login
http://192.168.0.1:3002/login</pre>
</div><br />
Scan the QR code using the WhatsApp mobile app under <b>Linked Devices</b> to complete authentication.  <hr /> <b>Commands</b><br />
<br />
<br />
Commands are only available when sent from your own linked account (i.e., messaging yourself). <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">!groups</td>
<td class="text_table_cke_show_border_td">Displays all groups and contacts associated with the linked WhatsApp account</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">!logout</td>
<td class="text_table_cke_show_border_td">Logs out and unlinks the connected WhatsApp account</td>
</tr>
</table></div>
 <b>Note:</b> Additional commands are planned for future releases. The current set is intentionally minimal to maintain stability.  <hr /> <b>How It Works</b><br />
<br />
Zabbix Server -&gt; Webhook (Media) -&gt; zabbix-whatsapp-notify -&gt; WhatsApp Contact<ol class="decimal"><li>Zabbix triggers an alert and dispatches a webhook to this service.</li>
<li>The service queues the incoming message.</li>
<li>The message is forwarded to the configured WhatsApp recipient specified in the To field.</li>
</ol><hr /> <b>Zabbix Media Type Configuration</b><br />
<br />
<br />
The following steps describe how to configure a Webhook media type in Zabbix to forward alerts to this service. <b>Step 1 — Create the Media Type</b><br />
<br />
<br />
Navigate to <b>Alerts &gt; Media types</b> in the Zabbix web interface and create a new media type with the following settings:  <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Name</td>
<td class="text_table_cke_show_border_td">Whatsapp</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Type</td>
<td class="text_table_cke_show_border_td">Webhook</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Timeout</td>
<td class="text_table_cke_show_border_td">30s</td>
</tr>
</table></div>
 <b>Step 2 — Configure Parameters</b><br />
<br />
<br />
Add the following parameters under the <b>Media type</b> tab:  <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">HTTPProxy</td>
<td class="text_table_cke_show_border_td"><i>(leave blank unless a proxy is required)</i></td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Message</td>
<td class="text_table_cke_show_border_td">{ALERT.MESSAGE}</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Subject</td>
<td class="text_table_cke_show_border_td">{ALERT.SUBJECT}</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">To</td>
<td class="text_table_cke_show_border_td">{ALERT.SENDTO}</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">URL</td>
<td class="text_table_cke_show_border_td">http://&lt;your-ip&gt;:&lt;port&gt;/queuealert</td>
</tr>
</table></div>
 Replace &lt;your-ip&gt; and &lt;port&gt; with the host address and port where the container is running (e.g., <a href="http://172.20.35.248:3002/queuealert" target="_blank">http://172.20.35.248:3002/queuealert</a>). <b>Step 3 — Add the Webhook Script</b><br />
<br />
<br />
Paste the following script into the <b>Script</b> field:<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));">var req = new HttpRequest();
try {
var params = JSON.parse(value);
var url = params.URL;
var message = params.Message;
var to = params.To;
var subject = params.Subject || &quot;&quot;;
var problem_host = params.problem_host || &quot;&quot;;
var problem_name = params.problem_name || &quot;&quot;;
var problem_severity = params.problem_severity || &quot;&quot;;
var problem_date = params.problem_date || &quot;&quot;;

var payload = JSON.stringify({
to: to,
message: message,
subject: subject,
problem_host: problem_host,
problem_name: problem_name,
problem_severity: problem_severity,
problem_date: problem_date,
});

req.addHeader(&quot;Content-Type: application/json&quot;);
var response = req.post(url, payload);
var statusCode = req.getStatus();
return &quot;OK&quot;;
} catch (error) {
Zabbix.Log(3, &quot;&#91;WhatsApp Webhook&#93; Error: &quot; + error);
}</pre>
</div><b>Step 4 — Configure Message Templates</b><br />
<br />
<br />
Switch to the <b>Message templates</b> tab and ensure the following message types are configured:  <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Problem</td>
<td class="text_table_cke_show_border_td">Sent when a problem is detected</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Problem recovery</td>
<td class="text_table_cke_show_border_td">Sent when a problem is resolved</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Problem update</td>
<td class="text_table_cke_show_border_td">Sent on problem acknowledgement or update</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Service</td>
<td class="text_table_cke_show_border_td">Sent when a service problem is detected</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Service recovery</td>
<td class="text_table_cke_show_border_td">Sent when a service problem is resolved</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Service update</td>
<td class="text_table_cke_show_border_td">Sent on service status change</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Discovery</td>
<td class="text_table_cke_show_border_td">Sent on network discovery events</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Autoregistration</td>
<td class="text_table_cke_show_border_td">Sent when a new host auto-registers</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Internal problem</td>
<td class="text_table_cke_show_border_td">Sent on internal Zabbix issues</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td">Internal problem recovery</td>
<td class="text_table_cke_show_border_td">Sent when an internal issue is resolved</td>
</tr>
</table></div>
 <b>Step 5 — Assign the Media Type to a User</b><br />
<br />
<br />
Navigate to <b>Users &gt; Users</b>, select the user that should receive alerts, and under the <b>Media</b> tab add the Whatsapp media type. Set the <b>Send to</b> field to the WhatsApp contact number or group ID obtained via the !groups command.  <hr /> <b>Dependencies</b><br />
<br />
<br />
The following Node.js packages are used by this project: <div class="b-bbcode__table--wrapper text_table_"><table class="b-bbcode__table text_table"><tr valign="top" class="text_table_cke_show_border"></tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td"><a href="https://www.npmjs.com/package/express" target="_blank">express</a></td>
<td class="text_table_cke_show_border_td">^5.2.1</td>
<td class="text_table_cke_show_border_td">Web framework used to handle incoming webhook requests</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td"><a href="https://www.npmjs.com/package/whatsapp-web.js" target="_blank">whatsapp-web.js</a></td>
<td class="text_table_cke_show_border_td">^1.34.7</td>
<td class="text_table_cke_show_border_td">WhatsApp Web API client for sending messages via a linked account</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td"><a href="https://www.npmjs.com/package/qrcode" target="_blank">qrcode</a></td>
<td class="text_table_cke_show_border_td">^1.5.4</td>
<td class="text_table_cke_show_border_td">Generates the QR code displayed at the /login endpoint for account linking</td>
</tr>
<tr valign="top" class="text_table_cke_show_border"><td class="text_table_cke_show_border_td"><a href="https://www.npmjs.com/package/cors" target="_blank">cors</a></td>
<td class="text_table_cke_show_border_td">^2.8.6</td>
<td class="text_table_cke_show_border_td">Enables Cross-Origin Resource Sharing on the Express server</td>
</tr>
</table></div>
  <hr /> <b>Known Issues</b><br />
<br />
<br />
<b>Root User Requirement</b> The container currently requires running as root (-u 0:0) due to a bug that prevents the process from writing to the session directory under a non-root user. This is a known issue and will be addressed in a future release. Until resolved, omitting or changing the user flag will result in permission errors when the service attempts to persist session data to ./session/.  <hr /> <b>Issues and Contributions</b><br />
<br />
<br />
To report a bug, request a feature, or contribute to the project, visit the GitHub repository:<br />
<br />
<b><a href="https://github.com/GidliNet/Zabbix-Whatsapp-Notify" target="_blank">https://github.com/GidliNet/Zabbix-Whatsapp-Notify</a></b>  <hr /> <b>Disclaimer</b><br />
<br />
<br />
This project is an independent, open-source integration and is not affiliated with, endorsed by, or associated with WhatsApp LLC or Meta Platforms, Inc. in any way. WhatsApp is a trademark of WhatsApp LLC. Use of this software is at your own discretion and risk. Ensure that your usage complies with <a href="https://www.whatsapp.com/legal/terms-of-service" target="_blank">WhatsApp's Terms of Service</a>.  <hr /><br />
<i>Maintained by <a href="https://github.com/GidliNet" target="_blank">GidliNet</a></i>]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-cookbook">Zabbix Cookbook</category>
			<dc:creator>ejayz</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-cookbook/513878-zabbix-and-whatsapp-integration-personal-account</guid>
		</item>
		<item>
			<title>Zabbix 7.4.11rc2 version is out now!</title>
			<link>https://www.zabbix.com/forum/zabbix-announcements-aa/513877-zabbix-7-4-11rc2-version-is-out-now</link>
			<pubDate>Thu, 28 May 2026 14:57:29 GMT</pubDate>
			<description>The latest Zabbix 7.4.11rc2 version has been released! 
 
The release of this version was required to fix the following critical issue: ZBX-27832 (https://support.zabbix.com/browse/ZBX-27832) 
 
7.4.11rc2: https://www.zabbix.com/rn/rn7.4.11rc2​ 
 
All new Zabbix releases can be downloaded here:...</description>
			<content:encoded><![CDATA[The latest Zabbix 7.4.11rc2 version has been released!<br />
<br />
The release of this version was required to fix the following critical issue: <a href="https://support.zabbix.com/browse/ZBX-27832" target="_blank">ZBX-27832</a><br />
<br />
7.4.11rc2: <a href="https://www.zabbix.com/rn/rn7.4.11rc2" target="_blank">https://www.zabbix.com/rn/rn7.4.11rc2</a>​<br />
<br />
All new Zabbix releases can be downloaded here: <a href="https://www.zabbix.com/download" target="_blank">https://www.zabbix.com/download</a>​]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-announcements-aa">Zabbix Announcements</category>
			<dc:creator>Michael_Kammer</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-announcements-aa/513877-zabbix-7-4-11rc2-version-is-out-now</guid>
		</item>
		<item>
			<title>SSH - SFTP agentless check (Zabbix 7.4)</title>
			<link>https://www.zabbix.com/forum/zabbix-help/513875-ssh-sftp-agentless-check-zabbix-7-4</link>
			<pubDate>Thu, 28 May 2026 11:11:31 GMT</pubDate>
			<description>Hello, 
 
does anyone have an experience using SFTP subsystem with Zabbix ssh.run item that was announced to be available since 7.2? 
SSH check on the host works just fine and results are returned as expected, using sftp from command line from Zabbix machine works as well. 
 
However I was not able...</description>
			<content:encoded><![CDATA[Hello,<br />
<br />
does anyone have an experience using SFTP subsystem with Zabbix ssh.run item that was announced to be available since 7.2?<br />
SSH check on the host works just fine and results are returned as expected, using sftp from command line from Zabbix machine works as well.<br />
<br />
However I was not able to find any example/explanation on use of SFTP subsystem, though it is mentioned in documentation <a href="https://www.zabbix.com/documentation/current/en/manual/config/items/itemtypes/ssh_checks#overview" target="_blank">https://www.zabbix.com/documentation...hecks#overview</a> (ssh.run[SFTPBackup,,,,,sftp])<br />
<br />
My natural assumption was that it should be possible to use genuine SFTP commands here like version / ls / get / bye / etc.<br />
No matter the commands the item jut times out.<br />
<br />
Does anyone have an experience/example with this item?<br />
<br />
//br Mike<br />
 ]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>MikeP</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/513875-ssh-sftp-agentless-check-zabbix-7-4</guid>
		</item>
		<item>
			<title>Zabbix Database Information</title>
			<link>https://www.zabbix.com/forum/zabbix-help/513872-zabbix-database-information</link>
			<pubDate>Wed, 27 May 2026 15:49:14 GMT</pubDate>
			<description><![CDATA[Zabbix server 7.4, Grafana server 12.3.0 
 
I have a PostgreSQL 18 database under the hood, both for Zabbix and Grafana 
 
I have a PostgreSQL datasource setup in Grafana using a read-only user I have setup in the Zabbix PostgreSQL database. 
 
The problem I have is the 'host' table does not have...]]></description>
			<content:encoded><![CDATA[Zabbix server 7.4, Grafana server 12.3.0<br />
<br />
I have a PostgreSQL 18 database under the hood, both for Zabbix and Grafana<br />
<br />
I have a PostgreSQL datasource setup in Grafana using a read-only user I have setup in the Zabbix PostgreSQL database.<br />
<br />
The problem I have is the 'host' table does not have an field containing the host name (at least in readable format), and I can't seem to find the other table that would have this information (that I could do a SQL join query on).<br />
<br />
Is there a complete map of the Database available somewhere, or does someone have some exploration steps documented?]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>Manuel Deschambault</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/513872-zabbix-database-information</guid>
		</item>
		<item>
			<title>Zabbix 7.0.27rc1 and 7.4.11rc1 versions have been released!</title>
			<link>https://www.zabbix.com/forum/zabbix-announcements-aa/513871-zabbix-7-0-27rc1-and-7-4-11rc1-versions-have-been-released</link>
			<pubDate>Wed, 27 May 2026 13:18:07 GMT</pubDate>
			<description>The latest Zabbix 7.0.27rc1 and 7.4.11rc1 versions are out now! 
 
Take a look at the new features and improvements: 
 
7.0.27rc1: https://www.zabbix.com/rn/rn7.0.27rc1 
 
7.4.11rc1: ​​​​​​https://www.zabbix.com/rn/rn7.4.11rc1​ 
 
All new Zabbix releases can be downloaded here:...</description>
			<content:encoded><![CDATA[The latest Zabbix 7.0.27rc1 and 7.4.11rc1 versions are out now!<br />
<br />
Take a look at the new features and improvements:<br />
<br />
7.0.27rc1: <a href="https://www.zabbix.com/rn/rn7.0.27rc1" target="_blank">https://www.zabbix.com/rn/rn7.0.27rc1</a><br />
<br />
7.4.11rc1: ​​​​​​<a href="https://www.zabbix.com/rn/rn7.4.11rc1" target="_blank">https://www.zabbix.com/rn/rn7.4.11rc1</a>​<br />
<br />
All new Zabbix releases can be downloaded here: <a href="https://www.zabbix.com/download" target="_blank">https://www.zabbix.com/download</a>​]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-announcements-aa">Zabbix Announcements</category>
			<dc:creator>Michael_Kammer</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-announcements-aa/513871-zabbix-7-0-27rc1-and-7-4-11rc1-versions-have-been-released</guid>
		</item>
		<item>
			<title>Email notification issue after recently updated sendgrid password.</title>
			<link>https://www.zabbix.com/forum/zabbix-help/513853-email-notification-issue-after-recently-updated-sendgrid-password</link>
			<pubDate>Wed, 27 May 2026 05:24:53 GMT</pubDate>
			<description>We have Zabbix deploved in a Docker container and recently updated the SendGrid password. Since then, Zabbix email notifications have stopped working, even after updating the new password in the media type configuration. I tested email sending manually from inside the container, and emails are...</description>
			<content:encoded><![CDATA[We have Zabbix deploved in a Docker container and recently updated the SendGrid password. Since then, Zabbix email notifications have stopped working, even after updating the new password in the media type configuration. I tested email sending manually from inside the container, and emails are being received successfully. However, when testing through the Zabbix media type, it fails with the following error:<br />
  &quot;Timeout was reached: Connection timed out after 40002 milliseconds.&quot;<br />
  Any idea how can I resolve it.?<br />
<br />
Using below command I am able to receive email when I am trying inside container.<br />
<br />
curl -X POST &quot;https://api.sendgrid.com/v3/mail/send&quot; -H &quot;Authorization: Bearer abc&quot; -H &quot;Content-Type: application/json&quot; -d '{&quot;personalizations&quot;:[{&quot;to&quot;:[{&quot;email&quot;:&quot;abc@xyz.com&quot;}],&quot;subject&quot;:&quot;Test Email from Zabbix&quot;}],&quot;from&quot;:{&quot;email&quot;:&quot;xyz@abc.com&quot;},&quot;content&quot;:[{&quot;type&quot;:&quot;text/plain&quot;,&quot;value&quot;:&quot;Test message from Zabbix server&quot;}]}'<br />
]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>beingomkardalvi</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/513853-email-notification-issue-after-recently-updated-sendgrid-password</guid>
		</item>
		<item>
			<title>Zabbix Lentitud y problemas para cargar la web nuevas sesiones</title>
			<link>https://www.zabbix.com/forum/em-portugues-y-en-espanol/513852-zabbix-lentitud-y-problemas-para-cargar-la-web-nuevas-sesiones</link>
			<pubDate>Tue, 26 May 2026 20:47:54 GMT</pubDate>
			<description>Mi instalación de Zabbix 7.4.9 no esta operando correctamente y no he logrado identificar que causa tanta lentitud y que otros usuarios no puedan iniciar sesion web en otros equipos. Les comparto mi compose por si alguien me puede ayudar a determinar si tengo algo mal configurado. 
 
 
version:...</description>
			<content:encoded><![CDATA[Mi instalación de Zabbix 7.4.9 no esta operando correctamente y no he logrado identificar que causa tanta lentitud y que otros usuarios no puedan iniciar sesion web en otros equipos. Les comparto mi compose por si alguien me puede ayudar a determinar si tengo algo mal configurado.<br />
<br />
<br />
version: '3.9'<br />
<br />
services:<br />
postgres:<br />
image: postgres:15<br />
container_name: zabbix-postgres<br />
environment:<br />
POSTGRES_USER: xxxxx<br />
POSTGRES_PASSWORD:xxxx<br />
POSTGRES_DB: zabbix<br />
TZ: America/Santiago<br />
networks:<br />
- zabbix_net<br />
volumes:<br />
- ./data/postgres:/var/lib/postgresql/data<br />
restart: unless-stopped<br />
command: |<br />
postgres<br />
-c shared_buffers=2GB<br />
-c effective_cache_size=8GB<br />
-c work_mem=32MB<br />
-c maintenance_work_mem=512MB<br />
-c wal_buffers=64MB<br />
-c max_wal_size=4GB<br />
-c min_wal_size=512MB<br />
-c checkpoint_timeout=15min<br />
-c checkpoint_completion_target=0.9<br />
-c synchronous_commit=off<br />
-c random_page_cost=1.1<br />
-c effective_io_concurrency=200<br />
-c max_connections=200<br />
-c idle_session_timeout=300000<br />
-c tcp_keepalives_idle=60<br />
-c tcp_keepalives_interval=10<br />
-c tcp_keepalives_count=6<br />
<br />
zabbix-server:<br />
image: zabbix-server-pgsql:7.4.9-ubuntu<br />
container_name: zabbix-server<br />
environment:<br />
DB_SERVER_HOST: postgres<br />
POSTGRES_USER: xxxx<br />
POSTGRES_PASSWORD: xxxx<br />
POSTGRES_DB: zabbix<br />
TZ: America/Santiago<br />
<br />
# CORE<br />
ZBX_STARTPOLLERS: 30<br />
ZBX_STARTPOLLERSUNREACHABLE: 8<br />
ZBX_STARTTRAPPERS: 8<br />
ZBX_STARTPINGERS: 8<br />
ZBX_STARTDISCOVERERS: 5<br />
<br />
# DB WRITING<br />
ZBX_STARTDBSYNCERS: 6<br />
<br />
# CACHE<br />
ZBX_CACHESIZE: 512M<br />
ZBX_VALUECACHESIZE: 512M<br />
ZBX_HISTORYCACHESIZE: 512M<br />
ZBX_TRENDCACHESIZE: 256M<br />
<br />
# HOUSEKEEPING<br />
ZBX_MAXHOUSEKEEPERDELETE: 30000<br />
ZBX_HOUSEKEEPINGFREQUENCY: 3<br />
<br />
# VMware<br />
ZBX_STARTVMWARECOLLECTORS: 2<br />
ZBX_VMWARECACHESIZE: 256M<br />
ZBX_VMWARETIMEOUT: 40<br />
ZBX_VMWAREPERFFREQUENCY: 120<br />
<br />
# ODBC<br />
ZBX_STARTODBCPOLLERS: 3<br />
<br />
networks:<br />
- zabbix_net<br />
ports:<br />
- &quot;10051:10051&quot;<br />
depends_on:<br />
- postgres<br />
volumes:<br />
- ./data/zabbix_server:/var/lib/zabbix<br />
- ./logs/zabbix_server:/var/log/zabbix<br />
- ./etc/odbc.ini:/etc/odbc.ini:ro<br />
- ./etc/odbcinst.ini:/etc/odbcinst.ini:ro<br />
restart: unless-stopped<br />
<br />
zabbix-web-nginx:<br />
image: zabbix/zabbix-web-nginx-pgsql:7.4.9-ubuntu<br />
container_name: zabbix-web<br />
environment:<br />
DB_SERVER_HOST: postgres<br />
POSTGRES_USER: xxxx<br />
POSTGRES_PASSWORD: xxxx<br />
POSTGRES_DB: zabbix<br />
ZBX_SERVER_HOST: zabbix-server<br />
PHP_TZ: America/Santiago # Ajusta tu zona horaria<br />
TZ: America/Santiago<br />
PHP_FPM_PM_MAX_CHILDREN: 30<br />
PHP_FPM_PM_START_SERVERS: 5<br />
PHP_FPM_PM_MIN_SPARE_SERVERS: 5<br />
PHP_FPM_PM_MAX_SPARE_SERVERS: 15<br />
PHP_FPM_PM_MAX_REQUESTS: 200<br />
ZBX_MEMORYLIMIT: 512M<br />
ZBX_MAXEXECUTIONTIME: 300<br />
networks:<br />
- zabbix_net<br />
ports:<br />
- &quot;8080:8080&quot;<br />
- &quot;8443:8443&quot;<br />
depends_on:<br />
- zabbix-server<br />
- postgres<br />
volumes:<br />
- ./data/zabbix_web:/var/lib/zabbix<br />
- ./logs/zabbix_web:/var/log/zabbix<br />
restart: unless-stopped<br />
<br />
networks:<br />
zabbix_net:<br />
external: true<br />
 ]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/em-portugues-y-en-espanol">Em Português y En Español</category>
			<dc:creator>lopezrp</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/em-portugues-y-en-espanol/513852-zabbix-lentitud-y-problemas-para-cargar-la-web-nuevas-sesiones</guid>
		</item>
		<item>
			<title>Zabbix 8 stopped connecting to database following apt upgrade</title>
			<link>https://www.zabbix.com/forum/zabbix-help/513829-zabbix-8-stopped-connecting-to-database-following-apt-upgrade</link>
			<pubDate>Mon, 25 May 2026 23:42:55 GMT</pubDate>
			<description><![CDATA[Hi, 
 
My zabbix-server has stopped connecting to the postgres database since updating to the current version. 
 
The database is available only via unix sockets, and is running on a nonstandard &quot;port&quot; (5433, not 5432). 
 
It appears to be ignoring the DBPort variable in the configuration file,...]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
My zabbix-server has stopped connecting to the postgres database since updating to the current version.<br />
<br />
The database is available only via unix sockets, and is running on a nonstandard &quot;port&quot; (5433, not 5432).<br />
<br />
It appears to be ignoring the DBPort variable in the configuration file, wheras previously it would use this value to determine the correct unix socket path (which for postgres seems to incorporate the port number (even if you dont listen on tcp).<br />
<br />
This was working perfectly prior to the update, and the database is still accessible from the command line.<br />
<br />
Is there a known fix for this?<br />
<br />
The log contains messages such as:<br />
<br />
[Z3001] connection to database 'zabbix' failed: [0] connection to server on socket &quot;/var/run/postgresql/.s.PGSQL.5432&quot; failed: FATAL: password authentication failed for user &quot;zabbix&quot;<br />
<br />
(note the incorrect socket path, it should be /var/run/postgresql/.s.PGSQL.5433)]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>spyro</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/513829-zabbix-8-stopped-connecting-to-database-following-apt-upgrade</guid>
		</item>
		<item>
			<title>Trigger for net.dns.get with macros</title>
			<link>https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/513828-trigger-for-net-dns-get-with-macros</link>
			<pubDate>Mon, 25 May 2026 15:22:42 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Zabbix team since years. Thanks for building reliable monitoring software open source! 
 
I started to setup a DNS Integrity Check with an item like net.dns.get[1.1.1.1,{HOST.DNS},A,3,1] combined with preprocessing JSONPath &quot;$.answer_section[0].rdata.a&quot; 
and a trigger...]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
Zabbix team since years. Thanks for building reliable monitoring software open source!<br />
<br />
I started to setup a DNS Integrity Check with an item like net.dns.get[1.1.1.1,{HOST.DNS},A,3,1] combined with preprocessing JSONPath &quot;$.answer_section[0].rdata.a&quot;<br />
and a trigger last(/mails2/net.dns.get[1.1.1.1,{HOST.DNS},A,3,1],#1)&lt;&gt;&quot;{HOST.IP}&quot; - in the assumption that it would work like example 16 here <a href="https://www.zabbix.com/documentation/current/en/manual/config/triggers/expression" target="_blank">https://www.zabbix.com/documentation...ers/expression</a><br />
But this is not the case.<br />
<br />
Latest data shows the right value, but the trigger does not alert correctly. I've tried text and character and even last and find function without success.<br />
Another thing that surprises me, was that when importing a pre-generated template - i can use<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));">triggers:
- uuid: e345742d3a1b4bbe8c2a83a4ac4db28a
expression: 'find(/Template DNS Integrity Check/net.dns.get&#91;,{HOST.DNS},A,3,1&#93;,#1,&quot;like&quot;,&quot;{HOST.IP}&quot;)=0'
name: 'DNS Mismatch &#91;System DNS&#93;: Forward lookup of {HOST.DNS} returned wrong IP'
opdata: 'Expected: {HOST.IP} | Got: {ITEM.LASTVALUE}'
priority: HIGH
description: 'System DNS resolved {HOST.DNS} to an IP that does not match {HOST.IP}.'</pre>
</div>But i didn't find a way to configure this with the dialog.<br />
<br />
zabbix server 7.4.6 and agent version 2 (7.4.2)<br />
<br />
I'm was not sure it net.dns.get is already officially supported as it is not in the &quot;Standard items&quot; list from item key drop down. Of course i could use the net.dns.record but I think it's worth to ask.<br />
<br />
BrP]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems">Zabbix Troubleshooting and Problems</category>
			<dc:creator>pvsa</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/513828-trigger-for-net-dns-get-with-macros</guid>
		</item>
		<item>
			<title>Problema al generar reportes</title>
			<link>https://www.zabbix.com/forum/em-portugues-y-en-espanol/513808-problema-al-generar-reportes</link>
			<pubDate>Sun, 24 May 2026 21:21:06 GMT</pubDate>
			<description>Instale el módulo de reportes en mi servidor Zabbix 7.4 pero me está apareciendo el mensaje de error “Cannot accept incoming connection for peer: 192.168.158.14” 
 
Para instalar el modulo de reportes en mi servidor Oracle Linux segui este procedimiento: 
…. 
dnf install zabbix-web-service -y 
cd...</description>
			<content:encoded><![CDATA[<span style="font-family:Calibri">Instale el módulo de reportes en mi servidor Zabbix 7.4 pero me está apareciendo el mensaje de error “<span style="color:#1f2c33">Cannot accept incoming connection for peer: 192.168.158.14”</span></span><br />
<br />
<span style="font-family:Calibri">Para instalar el modulo de reportes en mi servidor Oracle Linux segui este procedimiento:</span><br />
<span style="font-family:Calibri">….</span><br />
<span style="font-family:Calibri">dnf install zabbix-web-service -y</span><br />
<span style="font-family:Calibri">cd /tmp</span><br />
<span style="font-family:Calibri">wget <a href="https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm" target="_blank">https://dl.google.com/linux/direct/g...ent_x86_64.rpm</a></span><br />
<span style="font-family:Calibri">dnf localinstall google-chrome-stable_current_x86_64.rpm -y</span><br />
<br />
<span style="font-family:Calibri">nano /etc/zabbix/zabbix_server.conf</span><br />
<span style="font-family:Calibri">WebServiceURL=http://localhost:10053/report</span><br />
<span style="font-family:Calibri">StartReportWriters=3</span><br />
<br />
<span style="font-family:Calibri">systemctl restart zabbix-server.service</span><br />
<span style="font-family:Calibri">systemctl enable zabbix-web-service.service --now</span><br />
<br />
<span style="font-family:Calibri">In the Frontend URL field, enter the full URL used to access Zabbix (e.g., <a href="http://your-server-ip/zabbix" target="_blank">http://your-server-ip/zabbix</a>).</span><br />
<span style="font-family:Calibri">…</span><br />
<br />
<span style="font-family:Calibri">Adjunto mi archivo de configuración, les agradezco su ayuda</span><br />
]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/em-portugues-y-en-espanol">Em Português y En Español</category>
			<dc:creator>Alex28</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/em-portugues-y-en-espanol/513808-problema-al-generar-reportes</guid>
		</item>
		<item>
			<title>Zabbix and Whatsapp Alerting</title>
			<link>https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/513790-zabbix-and-whatsapp-alerting</link>
			<pubDate>Sat, 23 May 2026 01:41:37 GMT</pubDate>
			<description>Hi , We created simple script for whatsapp and zabbix alerting for people on the homelab or people that cannot use meta api since it requires business and payment ( As far as i know) . We made a docker image for easier integration or just node js . 
 
On readme it already includes on how to add it...</description>
			<content:encoded><![CDATA[<span style="font-family:Courier New">Hi , We created simple script for whatsapp and zabbix alerting for people on the homelab or people that cannot use meta api since it requires business and payment ( As far as i know) . We made a docker image for easier integration or just node js .<br />
<br />
On readme it already includes on how to add it on zabbix media type and what are needed.<br />
<br />
It uses personal whatsapp account by linking device using qr code by visiting and also queued the alert (Tried doing burst send and i got banned so queueing is added) .<br />
<b>http://&lt;your-ip&gt;:&lt;port&gt;/login</b><br />
<br />
<br />
<span style="font-size:16px"><b>Attached Example of Message:</b></span><br />
<img itemprop="image" title="Screenshot 2026-05-23 092046.png" data-attachmentid="513791" data-align="none" data-size="full" border="0" src="filedata/fetch?id=513791&amp;d=1779500372" alt="Click image for larger version

Name:	Screenshot 2026-05-23 092046.png
Views:	66
Size:	170.4 KB
ID:	513791" data-fullsize-url="filedata/fetch?id=513791&amp;d=1779500372" data-thumb-url="filedata/fetch?id=513791&amp;d=1779500372&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="Screenshot 2026-05-23 092046.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
Hoping for feedback.<br />
<br />
Github Repo: <a href="https://github.com/GidliNet/Zabbix-Whatsapp-Notify" target="_blank">https://github.com/GidliNet/Zabbix-Whatsapp-Notify</a><br />
Docke Repo: <a href="https://hub.docker.com/r/gidlinet/zabbix-whatsapp-notify" target="_blank">https://hub.docker.com/r/gidlinet/za...hatsapp-notify</a><br />
</span>]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-suggestions-and-feedback">Zabbix Suggestions and Feedback</category>
			<dc:creator>ejayz</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/513790-zabbix-and-whatsapp-alerting</guid>
		</item>
		<item>
			<title>Monitoring WebRTC live streaming servers with Zabbix</title>
			<link>https://www.zabbix.com/forum/zabbix-help/513783-monitoring-webrtc-live-streaming-servers-with-zabbix</link>
			<pubDate>Fri, 22 May 2026 13:27:58 GMT</pubDate>
			<description>hi there, i am looking for recommendations for WebRTC live streaming monitoring using zabbix ? i have been searching just curious what templates or approaches others are using and i have seen some red5 (https://red5.net/) live streaming platform which support WebRTC does anyone heard about it or...</description>
			<content:encoded><![CDATA[hi there, i am looking for recommendations for WebRTC live streaming monitoring using zabbix ? i have been searching just curious what templates or approaches others are using and i have seen some <a href="https://red5.net/" target="_blank">red5</a> live streaming platform which support WebRTC does anyone heard about it or tried ? or is there any suggestions on this request.]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-help">Zabbix Help</category>
			<dc:creator>abhaydevresource</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-help/513783-monitoring-webrtc-live-streaming-servers-with-zabbix</guid>
		</item>
		<item>
			<title>Zabbix 8.0.0beta1 version is out now!</title>
			<link>https://www.zabbix.com/forum/zabbix-announcements-aa/513763-zabbix-8-0-0beta1-version-is-out-now</link>
			<pubDate>Fri, 22 May 2026 07:02:56 GMT</pubDate>
			<description>The latest Zabbix 8.0.0beta1 version has been released! 
 
Have a look at the new features and improvements: 
 
8.0.0beta1: Https://www.zabbix.com/rn/rn8.0.0beta1 
 
All new Zabbix releases can be downloaded here: https://www.zabbix.com/download​</description>
			<content:encoded><![CDATA[The latest Zabbix 8.0.0beta1 version has been released!<br />
<br />
Have a look at the new features and improvements:<br />
<br />
8.0.0beta1: <a href="Https://www.zabbix.com/rn/rn8.0.0beta1" target="_blank">Https://www.zabbix.com/rn/rn8.0.0beta1</a><br />
<br />
All new Zabbix releases can be downloaded here: <a href="https://www.zabbix.com/download" target="_blank">https://www.zabbix.com/download</a>​]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-announcements-aa">Zabbix Announcements</category>
			<dc:creator>Michael_Kammer</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-announcements-aa/513763-zabbix-8-0-0beta1-version-is-out-now</guid>
		</item>
		<item>
			<title>AIX - cannot read response: timed out</title>
			<link>https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/513749-aix-cannot-read-response-timed-out</link>
			<pubDate>Thu, 21 May 2026 15:39:52 GMT</pubDate>
			<description>I am starting to do a Proof of Concept with Zabbix, and have the server installed on RHEL 9.4 with a PostgreSQL DB.  
20+ windows servers being monitored, no issues. 
 
We have two AIX 7.2 LPAR monitored, with the 7.4.3-1 agent installed, with PSK no issues. 
 
Attempting to add a third AIX LPAR,...</description>
			<content:encoded><![CDATA[I am starting to do a Proof of Concept with Zabbix, and have the server installed on RHEL 9.4 with a PostgreSQL DB. <br />
20+ windows servers being monitored, no issues.<br />
<br />
We have two AIX 7.2 LPAR monitored, with the 7.4.3-1 agent installed, with PSK no issues.<br />
<br />
Attempting to add a third AIX LPAR, that is an Oracle DB server, using same setup as the previous two AIX LPAR, but keep getting the Availability in RED for ZBX.<br />
Mousing over the icon we see, &quot;Get value from agent failed:  Cannot read response: timed out&quot;<br />
<br />
I have increased the Timeout value from 3 to 10 , but issue still remains.<br />
<br />
Basic telnet to a port from the Zab Server to the LPAR to monitor is successful.<br />
<br />
Any ideas what to try next to debug this issue?<br />
<br />
Zabbix Agent:  7.4.3-1 on AIX 7.2<br />
Zabbix Server  7.4.5 on RHEL 9.4]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems">Zabbix Troubleshooting and Problems</category>
			<dc:creator>FreddyBeach</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/zabbix-troubleshooting-and-problems/513749-aix-cannot-read-response-timed-out</guid>
		</item>
		<item>
			<title>Веб мониторинг  NTLM?</title>
			<link>https://www.zabbix.com/forum/in-russian/513717-веб-мониторинг-ntlm</link>
			<pubDate>Thu, 21 May 2026 04:45:04 GMT</pubDate>
			<description>Перестал работать веб мониторинг после обновления на zabbix 7.0.26 
Cannot set HTTP server authentication method: A requested feature, protocol or option was not found built-in in this libcurl due to a build-time decision. 
аутентификация NTLM в прошлой версии все работало  
 
 
на шаге 
 
но...</description>
			<content:encoded><![CDATA[Перестал работать веб мониторинг после обновления на zabbix 7.0.26<br />
Cannot set HTTP server authentication method: A requested feature, protocol or option was not found built-in in this libcurl due to a build-time decision.<br />
аутентификация NTLM в прошлой версии все работало <br />
<img itemprop="image" alt="Click image for larger version  Name:	image.png Views:	0 Size:	20.2 KB ID:	513718" title="image.png" data-attachmentid="513718" data-align="none" data-size="full" border="0" src="filedata/fetch?id=513718&amp;d=1779338652" data-fullsize-url="filedata/fetch?id=513718&amp;d=1779338652" data-thumb-url="filedata/fetch?id=513718&amp;d=1779338652&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" /><br />
<br />
на шаге<br />
<img itemprop="image" alt="Click image for larger version  Name:	image.png Views:	0 Size:	37.1 KB ID:	513719" title="image.png" data-attachmentid="513719" data-align="none" data-size="full" border="0" src="filedata/fetch?id=513719&amp;d=1779338700" data-fullsize-url="filedata/fetch?id=513719&amp;d=1779338700" data-thumb-url="filedata/fetch?id=513719&amp;d=1779338700&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" /><br />
но получаю 401<br />
<img itemprop="image" alt="Click image for larger version  Name:	image.png Views:	0 Size:	33.5 KB ID:	513720" title="image.png" data-attachmentid="513720" data-align="none" data-size="full" border="0" src="filedata/fetch?id=513720&amp;d=1779338805" data-fullsize-url="filedata/fetch?id=513720&amp;d=1779338805" data-thumb-url="filedata/fetch?id=513720&amp;d=1779338805&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/in-russian"><![CDATA[&#1053;&#1072; &#1088;&#1091;&#1089;&#1089;&#1082;&#1086;&#1084; &#1103;&#1079;&#1099;&#1082;&#1077;]]></category>
			<dc:creator>djin59</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/in-russian/513717-веб-мониторинг-ntlm</guid>
		</item>
	</channel>
</rss>
