The error that is seen on the screen is:
./event_partition_utility.sh: line 263: "###" + retention_days : syntax error: operand expected (error token is ""###" + retention_days ")
Upgrades to DX NetOps Performance Management 23.3.10
There is a defect in the event_partition_utility.sh script
In the event_partition_utility.sh script, line 263 is currently:
data_days=$(( "$3" + retention_days ))
to get past this issue, we need to change it to:
data_days=$(( $3 + $retention_days ))
Effectively, remove the double quotes around $3 and add a $ to retention_days.