From ea9f59914fa7977a18344593cbcd62310f7ec31e Mon Sep 17 00:00:00 2001 From: Ann Priestman Date: Thu, 14 Jun 2018 10:28:04 -0400 Subject: [PATCH] Reset periodic health monitor writes to one hour --- .../autopsy/healthmonitor/EnterpriseHealthMonitor.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/healthmonitor/EnterpriseHealthMonitor.java b/Core/src/org/sleuthkit/autopsy/healthmonitor/EnterpriseHealthMonitor.java index b15e547896..57a5ae452d 100644 --- a/Core/src/org/sleuthkit/autopsy/healthmonitor/EnterpriseHealthMonitor.java +++ b/Core/src/org/sleuthkit/autopsy/healthmonitor/EnterpriseHealthMonitor.java @@ -65,7 +65,7 @@ public final class EnterpriseHealthMonitor implements PropertyChangeListener { private final static Logger logger = Logger.getLogger(EnterpriseHealthMonitor.class.getName()); private final static String DATABASE_NAME = "EnterpriseHealthMonitor"; - private final static long DATABASE_WRITE_INTERVAL = 1; // Minutes + private final static long DATABASE_WRITE_INTERVAL = 60; // Minutes public static final CaseDbSchemaVersionNumber CURRENT_DB_SCHEMA_VERSION = new CaseDbSchemaVersionNumber(1, 1); @@ -962,7 +962,8 @@ public final class EnterpriseHealthMonitor implements PropertyChangeListener { throw new HealthMonitorException("Error getting database lock"); } - String[] metricNames = {"Disk Reads: Hash calculation", "Database: getImages query", "Solr: Index chunk", "Solr: Connectivity check"}; // NON-NLS + String[] metricNames = {"Disk Reads: Hash calculation", "Database: getImages query", "Solr: Index chunk", "Solr: Connectivity check", + "Correlation Engine: Notable artifact query", "Correlation Engine: Bulk insert"}; // NON-NLS Random rand = new Random();