예제 #1
0
        void IProbeSite.Probe(ProbeContext context)
        {
            var scope = context.CreateScope("host");

            Probe(scope);

            ReceiveEndpoints.Probe(scope);
        }
예제 #2
0
        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);
        }
예제 #3
0
        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);
        }