Creating a Profile and Provisioning via REST
The URI for the REST interface is http://<SC host>:<port>/api/v1/kpi
and the resource path is /model
.
The SC host and port are specified in the You provision a service model by sending a single POST method request. This will create a new KPI profile configuration or update an existing one. The request must contain all the required objects in a JSON representation of the data model. You can retrieve the configuration by using the GET method. Basic authentication is used and you must pass user credentials for each REST call. Follow this procedure to provision a service model: Use the mzsh command For further information about the kpimodel command, see /wiki/spaces/MD82/pages/3785936 in the /wiki/spaces/MD82/pages/3778935. Use the HTTP POST method to provision the model. You must specify the name of the KPI profile that will contain the service model using the If the specified KPI profile does not exist, it will be created automatically. The hostname and port in the URL should match the properties in the Example - POST with curl command The model is now ready for deployment.kpi-model
service configuration. For further information, see 5.3 KPI Management Services.POST
kpimodel
to validate the file that contains the JSON representation of the service model. For a complete example of a service model, see Service Model Definition.$ mzsh kpimodel validate --file <filename>
config
parameter. kpi-model
service configuration. If the hostname and port are not specified in the service configuration localhost:8095
will be used.$ curl -X POST -T "example.json" http://username:passw@myhostname:8095/api/v1/kpi/model?config=<model name>
GET
Use HTTP GET to retrieve a provisioned service model. You must specify the name of the KPI profile that contains the service model using the config
parameter.
Example - GET with curl command
$ curl http://username:passw@myhostname:8095/api/v1/kpi/model?config=KPI.model1