diff --git a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala index 12c66a6a1a16..57ccd3446e34 100644 --- a/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala +++ b/backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxMetricsApi.scala @@ -95,9 +95,9 @@ class VeloxMetricsApi extends MetricsApi with Logging { "numOutputRows" -> SQLMetrics.createMetric(sparkContext, "number of output rows"), "outputVectors" -> SQLMetrics.createMetric(sparkContext, "number of output vectors"), "outputBytes" -> SQLMetrics.createSizeMetric(sparkContext, "number of output bytes"), - "wallNanos" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time of batch scan"), + "wallNanos" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time of scan and filter"), "cpuCount" -> SQLMetrics.createMetric(sparkContext, "cpu wall time count"), - "scanTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "scan time"), + "scanTime" -> SQLMetrics.createNanoTimingMetric(sparkContext, "time of scan"), "peakMemoryBytes" -> SQLMetrics.createSizeMetric(sparkContext, "peak memory bytes"), "numMemoryAllocations" -> SQLMetrics.createMetric( sparkContext,