1
1
package com .avioconsulting .mule .logger .internal .listeners ;
2
2
3
- import com .avioconsulting .mule .logger .api .processor .AdditionalProperties ;
4
- import com .avioconsulting .mule .logger .api .processor .ExceptionProperties ;
5
- import com .avioconsulting .mule .logger .api .processor .LogProperties ;
6
- import com .avioconsulting .mule .logger .api .processor .MessageAttributes ;
3
+ import com .avioconsulting .mule .logger .api .processor .*;
7
4
import com .avioconsulting .mule .logger .internal .CustomLogger ;
8
5
import com .avioconsulting .mule .logger .internal .config .CustomLoggerConfiguration ;
9
6
import org .mule .runtime .api .component .location .ComponentLocation ;
10
7
import org .mule .runtime .api .event .Event ;
8
+ import org .mule .runtime .api .metadata .TypedValue ;
9
+ import org .mule .runtime .api .notification .EnrichedServerNotification ;
10
+
11
+ import java .util .Collections ;
12
+ import java .util .List ;
13
+ import java .util .Map ;
14
+ import java .util .Optional ;
15
+ import java .util .stream .Collectors ;
11
16
12
17
public abstract class CustomLoggerAbstractNotificationListener {
13
18
protected final CustomLoggerConfiguration config ;
19
+ private Map <String , String > emptyAttributes = Collections .emptyMap ();
14
20
15
21
public CustomLoggerAbstractNotificationListener (CustomLoggerConfiguration config ) {
16
22
this .config = config ;
@@ -19,7 +25,7 @@ public CustomLoggerAbstractNotificationListener(CustomLoggerConfiguration config
19
25
protected abstract org .slf4j .Logger getClassLogger ();
20
26
21
27
protected void logMessage (ComponentLocation location , Event event , String logMessage , String categoryPrefix ,
22
- LogProperties .LogLevel level ) {
28
+ LogProperties .LogLevel level , Map < String , String > additionalAttributes ) {
23
29
CustomLogger logger = config .getLogger ();
24
30
LogProperties logProperties = new LogProperties ();
25
31
MessageAttributes messageAttributes = new MessageAttributes ();
@@ -28,6 +34,7 @@ protected void logMessage(ComponentLocation location, Event event, String logMes
28
34
.getValue ();
29
35
messageAttributes .setOTelContextObject (oTelContextObject );
30
36
}
37
+ messageAttributes .addAttributes (additionalAttributes );
31
38
ExceptionProperties exceptionProperties = new ExceptionProperties ();
32
39
AdditionalProperties additionalProperties = new AdditionalProperties ();
33
40
additionalProperties .setIncludeLocationInfo (true );
@@ -41,4 +48,56 @@ protected void logMessage(ComponentLocation location, Event event, String logMes
41
48
logger .log (logProperties , messageAttributes , exceptionProperties , additionalProperties , config ,
42
49
location , correlationId );
43
50
}
44
- }
51
+
52
+ protected Map <String , String > getFlowLogAttributes (EnrichedServerNotification notification ) {
53
+ Map <String , String > value = emptyAttributes ;
54
+ FlowLogConfig flowLogConfig ;
55
+ /**
56
+ * Flow name can contain wildcard (*)
57
+ * We only look for wildcard either starting of the string or ending of the
58
+ * string
59
+ * ex: mq-listener-* will look for all the flows that starts with mq-listener
60
+ * ex: *-mq-flow will look for all the flows that ends with -mq-flow
61
+ **/
62
+ Optional <Map .Entry <String , FlowLogConfig >> matchedEntry = config .getFlowLogConfigMap ().entrySet ().stream ()
63
+ .filter (entry -> matchWildcard (entry .getKey (), notification .getResourceIdentifier ()))
64
+ .findFirst ();
65
+ if (matchedEntry .isPresent ()) {
66
+ flowLogConfig = matchedEntry .get ().getValue ();
67
+ TypedValue <Map <String , String >> evaluate = (TypedValue <Map <String , String >>) config
68
+ .getExpressionManager ()
69
+ .evaluate ("#[" + flowLogConfig .getAttributesExpressionText () + "]" ,
70
+ notification .getEvent ().asBindingContext ());
71
+ value = evaluate .getValue ();
72
+ if (value == null )
73
+ value = emptyAttributes ;
74
+ }
75
+ return value ;
76
+ }
77
+
78
+ public boolean matchWildcard (String wildcardKey , String searchString ) {
79
+ // Trim the wildcard key
80
+ String cleanWildcardKey = wildcardKey .trim ();
81
+
82
+ // Exact match if no wildcards
83
+ if (searchString .equalsIgnoreCase (wildcardKey )) {
84
+ return true ;
85
+ }
86
+
87
+ // Handle start wildcard
88
+ if (cleanWildcardKey .startsWith ("*" )) {
89
+ String suffix = cleanWildcardKey .substring (1 );
90
+ return searchString .endsWith (suffix );
91
+ }
92
+
93
+ // Handle end wildcard
94
+ if (cleanWildcardKey .endsWith ("*" )) {
95
+ String prefix = cleanWildcardKey .substring (0 , cleanWildcardKey .length () - 1 );
96
+ return searchString .startsWith (prefix );
97
+ }
98
+
99
+ // If wildcard key is just '*', match everything
100
+ return cleanWildcardKey .equals ("*" );
101
+ }
102
+
103
+ }
0 commit comments