Nevermind found my the answer the Nagios Plugin Development docs:
https://nagios-plugins.org/doc/guidelin ... PLUGOUTPUT
If you scroll down to Table 4 Command Line Examples you will see the table that shows the parameters for "Counting stuff"
If you have an Application or Service that executes a single process, and you want to monitor if that paticualr process is available (For linux running single instance JBOSS server this is just a running process) here is the check_ncpa command that will do just that. **Note this is setup from the XI GUI under CCM>Services. You will have to go into Core Confiuration Manager and edit/create the service check direcly.
Notice the -c1:
The ":" is important. Referring back to Table 4 in the Plugin Development doc you will see that -c1:
check_stuff -c1: Critical if "stuff" is less than 1
So if you have a situation where there is just 1 process, the NCPA configuration wizard will NOT let you set this up properly. The default logic created is based on "More Than". This allows you to look for "Less Than" 1.
This can also be any number like -c10: if you have a situation where you know there should be a minimum number of worker processes running at all times and you need to know if this drops below (Less Than) your defined number (10 in this example).
The table in the plug-in dev doc also provides other great examples for other unique situations as well.
Just sharing and hope it helps someone else as well.