Skip to content

Commit 77ace2b

Browse files
Anil KonakallaAnil Konakalla
Anil Konakalla
authored and
Anil Konakalla
committed
Updated validation loginc for flow log attributes
1 parent cc3abc0 commit 77ace2b

File tree

4 files changed

+64
-27
lines changed

4 files changed

+64
-27
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package com.avioconsulting.mule.logger.api.processor;
2+
3+
import org.mule.runtime.extension.api.annotation.param.ExclusiveOptionals;
4+
import org.mule.runtime.extension.api.annotation.param.Optional;
5+
import org.mule.runtime.extension.api.annotation.param.Parameter;
6+
import org.mule.runtime.extension.api.annotation.param.display.Summary;
7+
8+
public class ExpressionText {
9+
10+
@Parameter
11+
@Optional
12+
@Summary("A valid dataweave expression that resolves to a Map object with key-value pairs")
13+
private String attributesExpressionText;
14+
15+
@Parameter
16+
@Optional
17+
@Summary("A valid dataweave expression that results in a String to append to default flow start message")
18+
private String messageExpressionText;
19+
20+
public String getAttributesExpressionText() {
21+
return attributesExpressionText;
22+
}
23+
24+
public void setAttributesExpressionText(String attributesExpressionText) {
25+
this.attributesExpressionText = attributesExpressionText;
26+
}
27+
28+
public String getMessageExpressionText() {
29+
return messageExpressionText;
30+
}
31+
32+
public void setMessageExpressionText(String messageExpressionText) {
33+
this.messageExpressionText = messageExpressionText;
34+
}
35+
}

src/main/java/com/avioconsulting/mule/logger/internal/config/CustomLoggerConfiguration.java

+7
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,13 @@ public void start() throws MuleException {
345345
customLoggerRegistrationService.setConfig(this);
346346
if (isEnableFlowLogs()) {
347347
classLogger.info("Flow logs enabled");
348+
flowLogConfigs.forEach(flowLogConfig -> {
349+
if (flowLogConfig.getExpressionText().getMessageExpressionText() == null
350+
&& flowLogConfig.getExpressionText().getAttributesExpressionText() == null) {
351+
throw new IllegalStateException(
352+
"One of attributesExpressionText or messageExpressionText must be defined in flow-logs-config");
353+
}
354+
});
348355
flowLogConfigMap = flowLogConfigs.stream().collect(
349356
Collectors.toMap(FlowLogConfig::getFlowName, Function.identity()));
350357
synchronized (CustomLoggerConfiguration.class) {

src/main/java/com/avioconsulting/mule/logger/internal/listeners/CustomLoggerAbstractNotificationListener.java

+16-26
Original file line numberDiff line numberDiff line change
@@ -51,35 +51,25 @@ protected void logMessage(ComponentLocation location, Event event, String logMes
5151
protected Map<String, String> getFlowLogAttributes(EnrichedServerNotification notification) {
5252
Map<String, String> value = emptyAttributes;
5353
FlowLogConfig flowLogConfig = config.getFlowLogConfigMap().get(notification.getResourceIdentifier());
54-
if (flowLogConfig != null) {
55-
TypedValue<Map<String, String>> evaluate = (TypedValue<Map<String, String>>) config.getExpressionManager()
56-
.evaluate("#[" + flowLogConfig.getExpressionText().getAttributesExpressionText() + "]",
57-
notification.getEvent().asBindingContext());
58-
value = evaluate.getValue();
59-
if (value == null)
60-
value = emptyAttributes;
61-
}
6254
/**
6355
* Flow name can contain wildcard (*)
6456
* We only look for wildcard either starting of the string or ending of the
6557
* string
6658
* ex: mq-listener-* will look for all the flows that starts with mq-listener
6759
* ex: *-mq-flow will look for all the flows that ends with -mq-flow
6860
**/
69-
else {
70-
List<Map.Entry<String, FlowLogConfig>> matchedEntries = config.getFlowLogConfigMap().entrySet().stream()
71-
.filter(entry -> matchWildcard(entry.getKey(), notification.getResourceIdentifier()))
72-
.collect(Collectors.toList());
73-
if (!matchedEntries.isEmpty()) {
74-
flowLogConfig = matchedEntries.get(0).getValue();
75-
TypedValue<Map<String, String>> evaluate = (TypedValue<Map<String, String>>) config
76-
.getExpressionManager()
77-
.evaluate("#[" + flowLogConfig.getExpressionText().getAttributesExpressionText() + "]",
78-
notification.getEvent().asBindingContext());
79-
value = evaluate.getValue();
80-
if (value == null)
81-
value = emptyAttributes;
82-
}
61+
List<Map.Entry<String, FlowLogConfig>> matchedEntries = config.getFlowLogConfigMap().entrySet().stream()
62+
.filter(entry -> matchWildcard(entry.getKey(), notification.getResourceIdentifier()))
63+
.collect(Collectors.toList());
64+
if (!matchedEntries.isEmpty()) {
65+
flowLogConfig = matchedEntries.get(0).getValue();
66+
TypedValue<Map<String, String>> evaluate = (TypedValue<Map<String, String>>) config
67+
.getExpressionManager()
68+
.evaluate("#[" + flowLogConfig.getExpressionText().getAttributesExpressionText() + "]",
69+
notification.getEvent().asBindingContext());
70+
value = evaluate.getValue();
71+
if (value == null)
72+
value = emptyAttributes;
8373
}
8474
return value;
8575
}
@@ -88,8 +78,8 @@ public boolean matchWildcard(String wildcardKey, String searchString) {
8878
// Trim the wildcard key
8979
String cleanWildcardKey = wildcardKey.trim();
9080

91-
// If wildcard key is just '*', match everything
92-
if (cleanWildcardKey.equals("*")) {
81+
// Exact match if no wildcards
82+
if (searchString.equals(wildcardKey)) {
9383
return true;
9484
}
9585

@@ -105,8 +95,8 @@ public boolean matchWildcard(String wildcardKey, String searchString) {
10595
return searchString.startsWith(prefix);
10696
}
10797

108-
// Exact match if no wildcards
109-
return searchString.equals(wildcardKey);
98+
// If wildcard key is just '*', match everything
99+
return cleanWildcardKey.equals("*");
110100
}
111101

112102
}

src/main/java/com/avioconsulting/mule/logger/internal/listeners/CustomLoggerPipelineNotificationListener.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,12 @@ public void onNotification(PipelineMessageNotification notification) {
7272
config.getFlowCategorySuffix(),
7373
config.getFlowLogLevel(), flowLogAttributes);
7474
} catch (Exception e) {
75-
classLogger.error("Error processing flow notification", e);
75+
if (e.getClass().getName().equals("java.lang.ClassCastException")
76+
|| e.getClass().getName().equals("ClassCastException")) {
77+
classLogger.error("Message expression text in flow-log-config needs to be a String", e);
78+
} else {
79+
classLogger.error("Error processing flow notification", e);
80+
}
7681
}
7782
} else {
7883
classLogger.warn(

0 commit comments

Comments
 (0)