Install the Linux agent in DigitalOcean Droplet using API
-d'{
"name": "linux-test-srm",
"private_networking": false,
"region": "nyc3",
"size": "512mb",
"image": "ubuntu-14-04-x64",
"user_data":"
#cloud-config
runcmd:
}' \
-H "Authorization: Bearer <API_KEY_OF_DIGITAL_OCEAN>" \
-H "Content-Type: application/json"
Note: Replace the <DEVICE_KEY_OF_SITE24X7> and <API_KEY_OF_DIGITAL_OCEAN> to their respective values. For knowing your device key, click here.

You can also install the agent in your DigitalOcean Droplet via the DigitalOcean user interface.
Learn more.
Related Articles
Prerequisites for Node.js agent installation
For a smooth Node.js agent installation, ensure that you've fulfilled the following prerequisites. The environment should have node version 16.20.2 or above installed. The application user should have full permission to access the agent directory. ...
API exceeded error
Why do I get an API exceeded error after a few attempts? Every API has a certain limit to the number of requests a user can hit within a period of time, called the rate limit. An error message is triggered when a user does one of the following ...
Bundled .NET and .NET Core agents in a single MSI
In APM Insight .NET agent version 6.8.0, the .NET and .NET Core agents have been bundled into a single MSI, enabling unified monitoring of both application types. Upgrade requirements for .NET Core agent 6.7 and below If you're using .NET Core agent ...
Add Node.js agent in Kubernetes via InitContainers (using prebuilt agent image)
To integrate the APM Insight Node.js agent into your Kubernetes applications using InitContainers, follow the steps given below: Step 1: Create an empty volume that will be used to copy the agent files during the initContainers process. Example: ...
Steps to partially update monitor settings in bulk using API
Monitor details like notification profiles, threshold and availability can be changed/updated in bulk using API without affecting the existing configuration settings. Use Case: A user wants to change only the notification profile of a monitor without ...