Skip to content

Commit

Permalink
fix log results
Browse files Browse the repository at this point in the history
  • Loading branch information
VladSenyuta committed Apr 15, 2024
1 parent a80b6f1 commit 42d01a0
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions e2e-tests/src/main/java/io/kafbat/ui/variables/Common.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ public interface Common {

String LOG_RESULT = "-> {}";
String BROKER_SOURCE_INFO_TOOLTIP =
"Dynamic topic config = dynamic topic config that is configured for a specific topic\n"
+ "Dynamic broker logger config = dynamic broker logger config that is configured for a specific broker\n"
+ "Dynamic broker config = dynamic broker config that is configured for a specific broker\n"
+ "Dynamic default broker config = dynamic broker config that is configured as default "
+ "for all brokers in the cluster\n"
+ "Static broker config = static broker config provided as broker properties at start up "
+ "(e.g. server.properties file)\n"
+ "Default config = built-in default configuration for configs that have a default value\n"
+ "Unknown = source unknown e.g. in the ConfigEntry used for alter requests where source is not set";
"""
Dynamic topic config = dynamic topic config that is configured for a specific topic
Dynamic broker logger config = dynamic broker logger config that is configured for a specific broker
Dynamic broker config = dynamic broker config that is configured for a specific broker
Dynamic default broker config = dynamic broker config that is configured as default \
for all brokers in the cluster
Static broker config = static broker config provided as broker properties at start up \
(e.g. server.properties file)
Default config = built-in default configuration for configs that have a default value
Unknown = source unknown e.g. in the ConfigEntry used for alter requests where source is not set""";
String FILTER_CODE_STRING = "has(record.keyAsText) && record.keyAsText.matches(\".*[Gg]roovy.*\")";
String FILTER_CODE_JSON = "has(record.key.name.first) && record.key.name.first == 'user1'";
}

0 comments on commit 42d01a0

Please sign in to comment.