Exemplo n.º 1
0
 // Token: 0x0600118D RID: 4493 RVA: 0x00035B60 File Offset: 0x00033D60
 static MonitoringHelper()
 {
     try
     {
         MonitoringHelper.appSettingsCollection = ConfigurationManager.AppSettings;
     }
     catch (ConfigurationErrorsException arg)
     {
         ExTraceGlobals.MonitoringHelperTracer.TraceError <ConfigurationErrorsException>(0L, "Error trying to get the appSettings secion of the configuration file. Error: {0}.", arg);
         MonitoringHelper.appSettingsCollection = new NameValueCollection();
     }
     MonitoringHelper.reportFilteredExceptions = MonitoringHelper.ReadBoolAppSettingKey("ReportFilteredExceptions", false);
 }
Exemplo n.º 2
0
 protected override bool IsKnownException(Exception e)
 {
     return(base.IsKnownException(e) || DataAccessHelper.IsDataAccessKnownException(e) || MonitoringHelper.IsKnownExceptionForMonitoring(e));
 }
 protected override bool IsKnownException(Exception exception)
 {
     return(base.IsKnownException(exception) || DataAccessHelper.IsDataAccessKnownException(exception) || MonitoringHelper.IsKnownExceptionForMonitoring(exception) || AmExceptionHelper.IsKnownClusterException(this, exception) || exception is ReplicationCheckException);
 }
 protected override bool IsKnownException(Exception e)
 {
     return(base.IsKnownException(e) || MonitoringHelper.IsKnownExceptionForMonitoring(e) || e is CasHealthInstructResetCredentialsException);
 }
 protected override bool IsKnownException(Exception exception)
 {
     return(base.IsKnownException(exception) || MonitoringHelper.IsKnownExceptionForMonitoring(exception));
 }