cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to create Analytics Metrics using API

Mario.Morelli
Architect

Creating large amounts of Analytics Metrics takes some time, and there is no official API to support this function currently.

 

If you wish to automate this in the interim , to reduce the time taken to create them you can do the following.

 

You would run the Authentication URL to get the JSESSIONID & X-CSRF-TOKEN values by running the following command

curl -i --user @sername@account:password https://<controller url>/controller/auth?action=login

 

Then using the following URL, you can create the Metric 

https://<controller url>/controller/restui/analyticsMetric/create

 

Set the Header values with the responses from the Auth Query(I used Postman for this example)

APpD_HEADERS.png

 

Provide the Metric query you wish to create, example below

{"adqlQueryString":"SELECT avg(responseTime) FROM transactions WHERE application = \"TEST\"","eventType":"BIZ_TXN","enabled":true,"queryType":"ADQL_QUERY","queryName":"TEST"}
 
You should then get a status 204 if it was successful.
 
Depending on how complex your queries are it might fail as certain strings need to be escaped. What I would suggest initially is to manually create the queries, and use developer options in your browser to view the API call being made to ensure you provide the queries in the correct format and then automate it.


Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.

Learn more about me in the Community Member Spotlight Q & A
0 REPLIES 0