Digital Experience Monitoring

Ajay Raj Merchia, Product Manager

Tutorial

This quick automation walks you through sending out suggestions for improving laptop health based on device crash logs with the Moveworks API and Nexthink.

User Experience

Architecture

Implementation Steps

If you use Workato...

  1. Follow our quickstart guide for Workato here to connect your Workato instance to Moveworks.
  2. You can import this recipe to get started quickly. Note: You'll need to install our connector first.

If you use Nexthink...

Here's the sample query that was used in the demo.

NXQLcURL
Copy
Copied
(
    select (
        (device (name device_model)) 
        (device_error (error_code error_label start_time))
    ) 
    (
        from 
        (device device_error) 
        (where 
            device_error (
                eq 
                error_label 
                (pattern "DISPLAY_DRIVER_POWER_FAIL")
            )
        ) 
        (between now-5m now)
    )
    (limit 10)
)
Copy
Copied
curl --location --request GET 'https://{{nexthink_cloud_url}}/2/query?platform=mac_os&format=json&query=(select ((device (name device_model )) (device_error (error_code error_label start_time))) (from (device device_error) (where device_error (eq error_label (pattern "DISPLAY_DRIVER_POWER_FAIL"))) (between now-5m now))(limit 10))'