Akka - 衡量消费者的时间

时间:2015-05-27 21:43:12

标签: scala akka apache-kafka consumer

我正在开发一个从JMS(消费者)中提取消息并将其推送到Kafka主题(生产者)的系统。

由于我的消费者保持活着等待到达JMS队列的新消息并将其推送到Kafka,我如何才能有效地测量我可以在第二时间消息的消息数量?

这是我的代码:

我的消费者:

class ActiveMqConsumerActor extends Consumer {

  var startTime: Long = _

  val log = Logging(context.system, this)

  val producerActor = context.actorOf(Props[KafkaProducerActor])

  override def autoAck = false
  override def endpointUri: String = "activemq:KafkaTest"

  override def receive: Receive = LoggingReceive {
    case msg: CamelMessage =>
      val camelMsg = msg.bodyAs[String]
      producerActor ! Message(camelMsg.getBytes)
      sender() ! Ack

    case ex: Exception => sender() ! Failure(ex)

    case _ =>
      log.error("Got a message that I don't understand")
      sender() ! Failure(new Exception("Got a message that I don't understand"))
  }
}

主要:

object ActiveMqConsumerTest extends App {

  val system = ActorSystem("KafkaSystem")
  val camel = CamelExtension(system)
  val camelContext = camel.context

  camelContext.addComponent("activemq", ActiveMQComponent.activeMQComponent("tcp://0.0.0.0:61616"))

  val consumer = system.actorOf(Props[ActiveMqConsumerActor].withRouter(FromConfig), "consumer")
  val producer = system.actorOf(Props[KafkaProducerActor].withRouter(FromConfig), "producer")

}

由于

1 个答案:

答案 0 :(得分:2)

您可以尝试使用" Metrics"等内容。 https://dropwizard.github.io/metrics/3.1.0/manual/您可以定义精确的指标,包括演员内部的时间和使用情况。