The regex which matches the token replacement configuration tries to match a minus sign, followed by either a value without a dot (integer) or a value with a dot (float). This match fails, because the current regex only matches a value with or without a dot (int) which could be preceded by a minus sign or a value with a dot (float).
This subtile difference makes that this functionality doesn't work.
Arbitrarily used lastMileRTT to test the functionality.
The regex which matches the token replacement configuration tries to match a minus sign, followed by either a value without a dot (integer) or a value with a dot (float). This match fails, because the current regex only matches a value with or without a dot (int) which could be preceded by a minus sign or a value with a dot (float). This subtile difference makes that this functionality doesn't work.
Arbitrarily used lastMileRTT to test the functionality.