Skip to content

Commit

Permalink
[#9631] Replace internal terms with intuitive words
Browse files Browse the repository at this point in the history
  • Loading branch information
intr3p1d committed Feb 27, 2024
1 parent 7b23b40 commit 6861721
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
* @author intr3p1d
*/
public enum GroupByAttributes {
URI_TEMPLATE("path", PinotColumns.URI_TEMPLATE),
ERROR_MESSAGE_LOG_TYPE("errorMessage_logtype", PinotColumns.ERROR_MESSAGE_LOG_TYPE),
ERROR_CLASS_NAME("errorClassName", PinotColumns.ERROR_CLASS_NAME),
STACK_TRACE("stackTrace", PinotColumns.STACK_TRACE_HASH);
URI_TEMPLATE("Path", PinotColumns.URI_TEMPLATE),
ERROR_MESSAGE_LOG_TYPE("Error Message", PinotColumns.ERROR_MESSAGE_LOG_TYPE),
ERROR_CLASS_NAME("Error Class Name", PinotColumns.ERROR_CLASS_NAME),
STACK_TRACE("Stack Trace", PinotColumns.STACK_TRACE_HASH);

private static final EnumGetter<GroupByAttributes> GETTER = new EnumGetter<>(GroupByAttributes.class);
private final String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public enum OrderByAttributes {
ERROR_CLASS_NAME("errorClassName", PinotColumns.ERROR_CLASS_NAME),
ERROR_MESSAGE("errorMessage", PinotColumns.ERROR_MESSAGE),
TIMESTAMP("timestamp", PinotColumns.TIMESTAMP),
URI_TEMPLATE("uriTemplate", PinotColumns.URI_TEMPLATE);
URI_TEMPLATE("path", PinotColumns.URI_TEMPLATE);

private static final EnumGetter<OrderByAttributes> GETTER = new EnumGetter<>(OrderByAttributes.class);

Expand Down

0 comments on commit 6861721

Please sign in to comment.