Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find installed version of graphite

Tags:

graphite

I have deployed graphite with nginx some time ago, with chef, but didn't froze versions to be installed. Thus now, trying to install with the same recipe i get errors because of missing something related to versions.

I need to find what version of Graphite I have installed on my other CentOS machines, to be able to figure out how to repair recipe.

Thank you.

Gabriel

like image 960
gbaii Avatar asked Oct 12 '17 09:10

gbaii


2 Answers

If you have web access to the Graphite installation, you can also see the currently running version under the /version/ path.

like image 177
Lucas Werkmeister Avatar answered Nov 08 '22 22:11

Lucas Werkmeister


I had the same issue. I solved it running a pip list, which displays every package you installed with pip. You can also run pip show graphite-web or pip show whisper to get more specific information.

like image 24
Y-B Cause Avatar answered Nov 08 '22 21:11

Y-B Cause