The issue is that after adding a new graphic from this system, the poller stops collecting data for these but other graphics based on built-in templates continue to work.
We use spine to collect data.
The logs don't show any specific error but noticed this after adding a new graphic:
Code: Select all
2022-11-03 12:41:03 - SYSTEM STATS: Time:1.2859 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:604 RRDsProcessed:67
2022-11-03 12:40:03 - SYSTEM STATS: Time:1.2873 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:612 RRDsProcessed:69
2022-11-03 12:39:03 - SYSTEM STATS: Time:1.3175 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:609 RRDsProcessed:63
2022-11-03 12:38:03 - SYSTEM STATS: Time:1.3247 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:604 RRDsProcessed:65
2022-11-03 12:37:02 - SYSTEM STATS: Time:1.2959 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:604 RRDsProcessed:178
2022-11-03 12:36:02 - SYSTEM STATS: Time:1.2959 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:604 RRDsProcessed:179
2022-11-03 12:35:02 - SYSTEM STATS: Time:1.3167 Method:spine Processes:1 Threads:4 Hosts:10 HostsPerProcess:10 DataSources:612 RRDsProcessed:182
After noticing this happened, I go clean the poller cache but this does not seem to fix this until reloading the associated data query.
We had the same snmp_query for years, and it seems that it broke between 1.2.21 and 1.2.22 - And 1.2.21 has a different issue with authentication that 1.2.22 addressed.
the snmp_query XML is like this:
Code: Select all
<query>
<name>Get Session Agents</name>
<description>List of Acme Packet Session Agents</description>
<oid_index>.1.3.6.1.4.1.9148.3.2.1.2.1.1.2</oid_index>
<oid_uptime>.1.3.6.1.2.1.1.3.0</oid_uptime>
<index_order>apsaHName</index_order>
<index_order_type>alphabetic</index_order_type>
<index_title_format>|chosen_order_field|</index_title_format>
<fields>
<apsaIndex>
<name>ID</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.9148.3.2.1.2.1.1.1</oid>
</apsaIndex>
<apsaHName>
<name>Host Name</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.9148.3.2.1.2.1.1.2</oid>
</apsaHName>
<apsaStatus>
<name>Agent Status</name>
<method>walk</method>
<source>value</source>
<direction>output</direction>
<oid>.1.3.6.1.4.1.9148.3.2.1.2.1.1.22</oid>
</apsaStatus>
...
Thanks in advance