Checking plugins in sonarqube

sonarqube-8.3.1.34397
Hi everyone,
Is it possible to check if plugins (for example Checkstyle) are installed, and if they’re not, display some warnings on sonarqube?

Hi @Li_Bibiks ,

welcome to the community :wave:

no directly in sonarqube, but there is an API endpoint that could help you to create your own tool (monitoring) to do this: api/plugins/installed
so you could crawl this api endpoint and compare the json with a list of plugins that you would like to have available in your instance

hope that helps