In Solaris any command is there to find out dynamically how many instance of a process is created and killed. Like tail -f command logs are updated dynamically , can we find out about a number of instances of a process dynamically updated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as off topic by dtmilano, Brian Roach, talonmies, Jim Garrison, cweiske Feb 22 at 8:03
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
There is no command like this, you have to implement a small script that queries the process list on a periodcal base. Order and filter the result as requested by call arguments and display required process information like id and name. |
|||
|
|