void IProbeSite.Probe(ProbeContext context) { var scope = context.CreateScope("host"); Probe(scope); ReceiveEndpoints.Probe(scope); }
void IProbeSite.Probe(ProbeContext context) { var scope = context.CreateScope("host"); scope.Set(new { Type = "AmazonSQS", _settings.Region, _settings.AccessKey, Password = new string('*', _settings.SecretKey.Length) }); ConnectionCache.Probe(scope); ReceiveEndpoints.Probe(scope); }
void IProbeSite.Probe(ProbeContext context) { var scope = context.CreateScope("host"); scope.Set(new { Type = "RabbitMQ", _settings.Host, _settings.Port, _settings.Username, Password = new string('*', _settings.Password.Length) }); ConnectionCache.Probe(scope); ReceiveEndpoints.Probe(scope); }