File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
sql/core/src/main/scala/org/apache/spark/sql/execution/streaming Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class MetricsReporter(
4040 // Metric names should not have . in them, so that all the metrics of a query are identified
4141 // together in Ganglia as a single metric group
4242 registerGauge(" inputRate-total" , () => stream.lastProgress.inputRowsPerSecond)
43- registerGauge(" processingRate-total" , () => stream.lastProgress.inputRowsPerSecond )
43+ registerGauge(" processingRate-total" , () => stream.lastProgress.processedRowsPerSecond )
4444 registerGauge(" latency" , () => stream.lastProgress.durationMs.get(" triggerExecution" ).longValue())
4545
4646 private def registerGauge [T ](name : String , f : () => T )(implicit num : Numeric [T ]): Unit = {
You can’t perform that action at this time.
0 commit comments