Skip to content

Commit 42d01a0

Browse files
committed
fix log results
1 parent a80b6f1 commit 42d01a0

File tree

1 file changed

+10
-9
lines changed
  • e2e-tests/src/main/java/io/kafbat/ui/variables

1 file changed

+10
-9
lines changed

e2e-tests/src/main/java/io/kafbat/ui/variables/Common.java

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ public interface Common {
44

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

0 commit comments

Comments
 (0)