Class ProducerMetrics


  • public class ProducerMetrics
    extends Object
    Metrics presented for each SolrCore using `crossdc.producer.` path.
    • Method Detail

      • getLocal

        public com.codahale.metrics.Counter getLocal()
        Counter representing the number of local documents processed successfully.
      • getLocalError

        public com.codahale.metrics.Counter getLocalError()
        Counter representing the number of local documents processed with error.
      • getSubmitted

        public com.codahale.metrics.Counter getSubmitted()
        Counter representing the number of documents submitted to the Kafka topic.
      • getSubmitError

        public com.codahale.metrics.Counter getSubmitError()
        Counter representing the number of documents that were not submitted to the Kafka topic because of exception during execution.
      • getDocumentSize

        public com.codahale.metrics.Histogram getDocumentSize()
        Histogram of the processed document size.
      • getDocumentTooLarge

        public com.codahale.metrics.Counter getDocumentTooLarge()
        Counter representing the number of documents that were too large to send to the Kafka topic.