I've been trying to set-up some instrumentation for Akka streams. Got it working, but, even though I named all my Flows that are part of the streams, I still get this sort of names in the metrics: flow-0-0-unknown-operation
A simple example of what I'm trying to do:
val myflow = Flow[String].named("myflow").map(println)
Source.via(myflow).to(Sink.ignore).run()
I basically want to see the metrics for the Actor that gets created for "myflow", with a proper name.
Is this even possible? Am I missing something?
I was having this challenge in my project and I solved by using Kamon + Prometheus. However I had to create an Akka Stream
Flow
which I can set its namemetricName
and export the metric values from it usingval kamonThroughputGauge: Metric.Gauge
.Then I created a simple stream that uses the
MonitorProcessingTimerFlow
to export the metrics:with a proper configuration at
application.conf
:I can see the throughput metrics on prometheus console with the name
name="monitorFlow"
: