Skip to content

Commit

Permalink
fix memtable getEntryStats typo (#3592)
Browse files Browse the repository at this point in the history
  • Loading branch information
hangc0276 authored Oct 31, 2022
1 parent 9efd606 commit 96b2446
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
package org.apache.bookkeeper.bookie.stats;

import static org.apache.bookkeeper.bookie.BookKeeperServerStats.BOOKIE_ADD_ENTRY;
import static org.apache.bookkeeper.bookie.BookKeeperServerStats.BOOKIE_READ_ENTRY;
import static org.apache.bookkeeper.bookie.BookKeeperServerStats.BOOKIE_SCOPE;
import static org.apache.bookkeeper.bookie.BookKeeperServerStats.CATEGORY_SERVER;
import static org.apache.bookkeeper.bookie.BookKeeperServerStats.SKIP_LIST_FLUSH_BYTES;
Expand Down Expand Up @@ -60,7 +61,7 @@ public class EntryMemTableStats {
@StatsDoc(
name = SKIP_LIST_GET_ENTRY,
help = "operation stats of getting entries from memtable",
parent = BOOKIE_ADD_ENTRY
parent = BOOKIE_READ_ENTRY
)
private final OpStatsLogger getEntryStats;
@StatsDoc(
Expand Down

0 comments on commit 96b2446

Please sign in to comment.