Skip to content

Commit c8556e4

Browse files
committed
Fix the names of CCR stats endpoints in usage API (#35438)
This commit fixes the names of the CCR stats endpoints reported in the usage API.
1 parent b6798d5 commit c8556e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/rest/RestCcrStatsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public RestCcrStatsAction(final Settings settings, final RestController controll
2525

2626
@Override
2727
public String getName() {
28-
return "ccr_auto_follow_stats";
28+
return "ccr_stats";
2929
}
3030

3131
@Override

x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/rest/RestFollowStatsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public RestFollowStatsAction(final Settings settings, final RestController contr
2626

2727
@Override
2828
public String getName() {
29-
return "ccr_stats";
29+
return "ccr_follower_stats";
3030
}
3131

3232
@Override

0 commit comments

Comments
 (0)