Esempio n. 1
0
        public Task InspectAsync(HealthMonitoringRecord record)
        {
            switch (record.Severity)
            {
            case HealthSeverity.Critical:
                this._logger.LogCritical(record.Exception, $"Critical error detected in the operation {record.Operation} for {record.Lease}.");
                break;

            case HealthSeverity.Error:
                if (record.Exception is LeaseLostException)
                {
                    this._logger.LogWarning(record.Exception, $"Lease was lost during operation {record.Operation} for {record.Lease}. This is expected during scaling and briefly during initialization as the leases are rebalanced across instances.");
                }
                else
                {
                    this._logger.LogError(record.Exception, $"{record.Operation} encountered an error for {record.Lease}.");
                }
                break;

            default:
                this._logger.LogTrace($"{record.Operation} on lease {record.Lease}.");
                break;
            }

            return(Task.CompletedTask);
        }
Esempio n. 2
0
        public Task InspectAsync(HealthMonitoringRecord record)
        {
            switch (record.Severity)
            {
            case HealthSeverity.Critical:
                this._logger.LogCritical(record.Exception, $"Unhealthiness detected in the operation {record.Operation} for {record.Lease}.");
                break;

            case HealthSeverity.Error:
                this._logger.LogError(record.Exception, $"Unhealthiness detected in the operation {record.Operation} for {record.Lease}.");
                break;

            default:
                this._logger.LogTrace($"{record.Operation} on lease {record.Lease?.Id}, partition {record.Lease?.PartitionId} for owner {record.Lease?.Owner}");
                break;
            }

            return(Task.CompletedTask);
        }