Smarts IP issue with dxa-conn-perf.conf localization
Smarts 10.1.X
In the ics--event-driver.asl
Add the following "ChoiceSubscription" line where highlighted in bold below:
ChoiceSubscription->symptoms = glob("*s*|*e*", Modifiers);
ChoiceSubscription->glob = glob("*g*", Modifiers); // Add this line
ChoiceSubscription->quiet = TRUE
In the dxa-conn-perf.conf use the following line:
sub NetworkAdapter_Performance::*::~HighBroadcastRate|HighDiscardRate|HighQueueDropRate/eg
NOT
sub NetworkAdapter_Performance::.*::~HighBroadcastRate|HighDiscardRate|HighQueueDropRate/eg
Note: using *
and not .*
The reason is that using with the āgā modifier, the wildcard semantics change from regexp format to glob.