Install latest 2.4.1 build and the EWS + EAP plugin packs and run the following sql select mdef.default_interval, mdef.default_on, rtype.plugin, rtype.name, mdef.name from rhq_measurement_def as mdef, rhq_resource_type as rtype where mdef.resource_type_id=rtype.id and mdef.default_interval < 300000 order by mdef.default_interval; and attach the results to this case. The next step is to update the plugins identified in this query so that all their metrics have a collection interval of at least 5mins. Lets leave the core platform plugin metrics (i.e. one metric per platform) alone for right now, and concentrate on the servers/services of which its easily possibly to have 1000's of.
jon241=# select mdef.default_interval, mdef.default_on, rtype.plugin, rtype.name, mdef.name from rhq_measurement_def as mdef, rhq_resource_type as rtype where mdef.resource_type_id=rtype.id and mdef.default_interval < 300000 and rtype.plugin not like 'Platforms' order by mdef.default_interval; default_interval | default_on | plugin | name | name ------------------+------------+---------+--------------------------------+-------------- 60000 | f | Tomcat | Tomcat Web Application (WAR) | ResponseTime 60000 | f | JBossAS | Web Application (WAR) | ResponseTime 60000 | f | JBossAS | Embedded Web Application (WAR) | ResponseTime 60000 | f | IIS | VHost | ResponseTime 60000 | f | Apache | Apache Virtual Host | ResponseTime (5 rows)
By default collection intervals <300000 ms is set only for CALLTIME metrics. ResponseTime metrics are CALLTIME metrics which are disabled by default. In our plugins there are no metrics with defaultInterval < 300 000ms in plugin descriptors. Only in hardware plugin there are metrics with defaultInterval = 86400, hardware plugin is disabled in build now.
Bookkeeping - closing bug - fixed in recent release.