Oracle Discovery is creating incomplete names of the oracle instanceIssue Discovery of oracle instance creating an incorrect name. Missing the last character. For example, the name ora_pmon_ams1ac1 truncates to ora_pmon_ams1ac.CauseThe pattern "Oracle DB On Unix" using the "$process.executable" instead of "$process.commandLine" at step 5 and 6 causes the name of the Oracle instance to be incorrect(not complete). It is missing the last character.ResolutionAs per our OOTB implementation for the pattern "Oracle DB On Unix" gets the name from the SID being set in steps"5. Find instance" & "6. if the process contains ora_pmon" and in the step "16. sets the display label" it sets the display value for oracle instance in the format -- "$sid + "@" + $computer_system.primaryHostname"Changing steps 5 and 6 to use the "$process.commandLine" instead of the "$process.executable", will solve this issue.