@@ -51,35 +51,25 @@ protected void logMessage(ComponentLocation location, Event event, String logMes
51
51
protected Map <String , String > getFlowLogAttributes (EnrichedServerNotification notification ) {
52
52
Map <String , String > value = emptyAttributes ;
53
53
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
- }
62
54
/**
63
55
* Flow name can contain wildcard (*)
64
56
* We only look for wildcard either starting of the string or ending of the
65
57
* string
66
58
* ex: mq-listener-* will look for all the flows that starts with mq-listener
67
59
* ex: *-mq-flow will look for all the flows that ends with -mq-flow
68
60
**/
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 ;
83
73
}
84
74
return value ;
85
75
}
@@ -88,8 +78,8 @@ public boolean matchWildcard(String wildcardKey, String searchString) {
88
78
// Trim the wildcard key
89
79
String cleanWildcardKey = wildcardKey .trim ();
90
80
91
- // If wildcard key is just '*', match everything
92
- if (cleanWildcardKey .equals ("*" )) {
81
+ // Exact match if no wildcards
82
+ if (searchString .equals (wildcardKey )) {
93
83
return true ;
94
84
}
95
85
@@ -105,8 +95,8 @@ public boolean matchWildcard(String wildcardKey, String searchString) {
105
95
return searchString .startsWith (prefix );
106
96
}
107
97
108
- // Exact match if no wildcards
109
- return searchString .equals (wildcardKey );
98
+ // If wildcard key is just '*', match everything
99
+ return cleanWildcardKey .equals ("*" );
110
100
}
111
101
112
102
}
0 commit comments