I think you want to use “clapi” command line
and get the attributes of the “services” and “services template” using the getparam action :
Command Line API (v1) - CLAPI | Centreon Documentation
Command Line API (v1) - CLAPI | Centreon Documentation
but you will need to query each service and service template individually, you may want to code a bash to help you there
the most simple way is to dump the whole config with clapi
Command Line API (v1) - CLAPI | Centreon Documentation
all the output are in csv, you could then use excel to get all the params that concern note and comment and link
(be aware that if a setting is set on a service template, you won’t see it on the indivual service, you need to be aware of template inheritance)
maybe the best way to get what you want is the Rest API v2
Centreon Web RestAPI
you query all the ressource and there should be these fields in the json output
- action_url
- notes_label
- notes_url
but you need to know how to use postman or equivalent, or know how to code request for RestApi (python, powershell, other)
Thank u for your answer i’m going to try that ASAP. thank you