public override void Probe(ProbeContext context)
        {
            context.Add("type", "RabbitMQ");
            context.Set(_settings);

            var topologyScope = context.CreateScope("topology");

            BrokerTopology.Probe(topologyScope);
        }
        public override void Probe(ProbeContext context)
        {
            context.Add("type", "RabbitMQ");
            context.Add("concurrentMessageLimit", ConcurrentMessageLimit);
            context.Set(_configuration.Settings);

            var topologyScope = context.CreateScope("topology");

            BrokerTopology.Probe(topologyScope);
        }
        void IProbeSite.Probe(ProbeContext context)
        {
            var scope = context.CreateFilterScope("configureTopology");

            _brokerTopology.Probe(scope);
        }