Skip to main content

I have few monitoring projects in web but I would want to add them as components in workflows and run from desktop on schedule.

Is it possible and if so what are the steps to do?  Are there any pre-requisites for this?

Thanks in advance!

Hi,

thank you for your question. So you actually cannot add the project into workflow, but you can trigger the monitoring of it via API. We have it documented here: https://docs.ataccama.com/one/15.4.0/one-apis/one-api.html#run-a-monitoring-project

mutation startMonitoring {
runMonitoringProject(projectId: "89b662a3-8ece-409f-b523-01aeba8240a2",
) {
loadMonitoringProjectId
}
}

You need to provide the ID of the project and that’s all that’s needed. You can use the JSON call step in the plan, see for example this post: 

 (but there are more if you search for “graphql” on community).

Let me know if this is what you were looking for.

Kind regards,

Anna


hi ​@anna.spakova  Thank you for your response. I am looking for option to run my monitoring projects (MP) from one desktop, just like how we can run any plans that uses web components. I’m not sure if this needs me to setup a code repository in bitbucket and if needed schedule the MP runs. Please suggest.