Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds index_uuid as a common dimension #83

Merged
merged 3 commits into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ public static class Constants {

public enum CommonDimension implements MetricDimension {
INDEX_NAME(Constants.INDEX_NAME_VALUE),
INDEX_UUID(Constants.INDEX_UUID_VALUE),
OPERATION(Constants.OPERATION_VALUE),
SHARD_ROLE(Constants.SHARD_ROLE_VALUE),
SHARD_ID(Constants.SHARD_ID_VALUE),
Expand All @@ -252,6 +253,7 @@ public String toString() {

public static class Constants {
public static final String INDEX_NAME_VALUE = "index_name";
public static final String INDEX_UUID_VALUE = "index_uuid";
public static final String SHARD_ID_VALUE = "shard_id";
public static final String OPERATION_VALUE = "operation";
public static final String SHARD_ROLE_VALUE = "shard_role";
Expand Down
Loading