Skip to content

Commit

Permalink
[hotfix] Add prefix lookup metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
luoyuxia committed Jan 8, 2025
1 parent d30ea3f commit c2a4fff
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ private RequestsMetrics(MetricGroup serverMetricsGroup, Collection<ApiKeys> apiK
public static RequestsMetrics createTabletServerRequestMetrics(MetricGroup serverMetricsGroup) {
List<ApiKeys> apiKeys =
Arrays.asList(
ApiKeys.PRODUCE_LOG, ApiKeys.PUT_KV, ApiKeys.LOOKUP, ApiKeys.FETCH_LOG);
ApiKeys.PRODUCE_LOG,
ApiKeys.PUT_KV,
ApiKeys.LOOKUP,
ApiKeys.FETCH_LOG,
ApiKeys.PREFIX_LOOKUP);
return new RequestsMetrics(serverMetricsGroup, apiKeys);
}

Expand Down

0 comments on commit c2a4fff

Please sign in to comment.