Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Saviynt Instance monitoring

AnandBN
New Contributor II
New Contributor II

We are looking for a way to monitor Saviynt URL health check using any external tool

4 REPLIES 4

rushikeshvartak
All-Star
All-Star

You can use below url 

https://<<domain_name>>.saviyntcloud.com/ECM/login/healthcheck


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

AnandBN
New Contributor II
New Contributor II

Hi Rushikesh,

Thanks for the response. In addition to this, Is there any tool that can read the URL response and sends out an alert whenever the service is down or under maintenance?

Vinit556
New Contributor III
New Contributor III

You can schedule a PowerShell script to see if URL is reachable or not.

PS command: "Invoke-WebRequest -Uri $uri" (where $uri is the url of your Saviynt instance)

If StatusCode = 200 it means site is running fine and no action is required, but if it is not 200 it means site is not up hence, use "Send-MailMessage" to send email.

 

You can do URL Monitoring and status monitoring


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.