User gets repeated occurrences of the following error in the FMS log:
YYYY-MM-DD HH:MM:SS.SSS WARN [QuartzScheduler.Monitor_Worker-2] com.quest.nitro.service.persistence.PersistenceService - The value submitted for the calculated or dynamic metric DBSS_Plan_Cache.object_count wont be persisted.
I want to resolve it as there are so many of these errors that it makes it difficult to navigate the FMS log.
Remove this decleration by removing the topology and recreate it again, please follow the below steps for doing it:
1. Remove the old DBSS_Plan_Cache topology type from the fms by running the below script (via the Script Console )
================================
gTopologyService = server["TopologyService"];
type = gTopologyService.getType("DBSS_Plan_Cache")
type = gTopologyService.beginUpdate(type);
type.removeProperty("object_count");
gTopologyService.endUpdate(type);
return 'OK';
========================================
2. Recreate the DBSS_Plan_Cache topology type (via the "Add Topology Type" dashboard )
===================================
<type name="DBSS_Plan_Cache" extends="DBSS_Instance_Alarm_Object">
<property name="object_count" type="Metric" is-containment="true" unit-name="count">
<annotation name="UnitEntityName" value="objects"/>
</property>
</type>
================================
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center