Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the square symbol means in pm2?

It is confusing for me to get the meaning of the symbol when I run the below command:

pm2 status

It shows a table. The confusing part is the square symbol which I have marked in the below picture

pm2 status table

What does it actually mean? Are three instances of index server running or something like that?

like image 240
Fozle Rabbi Shafi Avatar asked Sep 13 '25 09:09

Fozle Rabbi Shafi


1 Answers

Quoting @Flimzy comment:

That looks like the Unicode replacement symbol, indicating your terminal cannot display the proper character there.This doc shows an arrow in a similar looking column.

This column/value refer to the process's number of restarts which have occurred since the first run.

To see it in actions, the following command does restart the process pm2 restart <process-name|id>, which will increase the restarts counter by 1.

like image 194
MAS Avatar answered Sep 14 '25 23:09

MAS