Ejemplo n.º 1
0
        void IProbeSite.Probe(ProbeContext context)
        {
            var scope = context.CreateConsumerFactoryScope <IConsumer <TMessage> >("batch");

            _consumerFactory.Probe(scope);
            _consumerPipe.Probe(scope);
        }
        void IProbeSite.Probe(ProbeContext context)
        {
            var scope = context.CreateConsumerFactoryScope <IConsumer <TMessage> >("batch");

            scope.Add("timeLimit", _timeLimit);
            scope.Add("messageLimit", _messageLimit);

            _consumerFactory.Probe(scope);
            _consumerPipe.Probe(scope);
        }
        void IProbeSite.Probe(ProbeContext context)
        {
            ProbeContext scope = context.CreateScope("consumer");

            scope.Add("type", TypeMetadataCache <TConsumer> .ShortName);

            _consumerFactory.Probe(scope);

            _consumerPipe.Probe(scope);
        }
Ejemplo n.º 4
0
 void IProbeSite.Probe(ProbeContext context)
 {
     _factory.Probe(context);
 }
Ejemplo n.º 5
0
        void IProbeSite.Probe(ProbeContext context)
        {
            ProbeContext scope = context.CreateConsumerFactoryScope <TConsumer>("dispatch");

            _consumerFactory.Probe(scope);
        }