Instrument Applications with the IoT REST APIs
The IoT REST APIs enable you to report instrumentation data directly to the EUM Server. You can use any platform or language that has support for HTTPS requests and JSON.
This page describes how to create a JSON request body, form the resource URI, and make an HTTPS request to the IoT REST APIs to report instrumentation data for the three supported events.
Follow these steps to get your EUM App Key and use the IoT REST API:
Review the Requirements
Before you begin, make sure you meet these requirements:
- Get an EUM App Key
- Platform/language that supports HTTPS requests
- JSON support
Form the IoT REST URLs
To form the IoT Monitoring REST resource URL, you will need to know the IoT REST API base URL and port as well as your App Key.
IoT REST API Base URL
The IoT REST API base URL depends on your Controller location.
For example, the IoT base URL for the Americas region would be:
https://iot-col.eum-appdynamics.com/eumcollector/iot/v1
After creating your IoT Application, use your App Key to test your IoT endpoint and look for a HTTP 200 response. For example, for the Americas region, run the following command:
curl -I https://iot-col.eum-appdynamics.com/eumcollector/iot/v1/application/<APPKEY>/enabled
IoT Endpoints
With your App Key, you can form the IoT resource endpoints. See the Summary of the IoT endpoints for the list of supported resource endpoints and their descriptions.
Create the JSON Request Body
You report device information and events in a JSON request body. The JSON includes an array of beacon objects, with each beacon object containing device data and events. The array enables you to transmit data from multiple devices in one request to the EUM Server. You can transmit up to 200 beacons per request.
Save the JSON below to a file (e.g., testBeacon.json) and replace the values for the timestamp properties with integers representing the UNIX Epoch time in milliseconds. The JSON contains the three supported events customEvents, networkRequestEvents, and errorEvents for a smart thermostat. In the next two steps, you will validate and send the JSON as a beacon to the IoT REST API.
[
{
"deviceInfo": {
"deviceType": "Thermostat",
"deviceId": "4e75d70d-a3f9-474b-bacf-0f4a57fa944c"
},
"versionInfo": {
"hardwareVersion": "Board Rev. 13A",
"firmwareVersion": "123.5.31",
"softwareVersion": "9.1.3",
"operatingSystemVersion": "Linux 13.4"
},
"customEvents": [
{
"timestamp": <UNIX_Epoch_time_in_milliseconds>,
"eventType": "Temperature Reading",
"eventSummary": "Temperature: 25° c",
"doubleProperties": {
"celsius": 25.0
}
}
],
"networkRequestEvents": [
{
"timestamp": <UNIX_Epoch_time_in_milliseconds>,
"duration": 245,
"url": "https://api.company.com/v1/temperature",
"statusCode": 200,
"requestContentLength": 32,
"responseContentLength": 0,
"doubleProperties": {
"reportedTemperature": 25.0
}
}
],
"errorEvents": [
{
"timestamp": <UNIX_Epoch_time_in_milliseconds>,
"name": "SQLException",
"message": "open() failed because db is locked"
}
]
}
]Transmit the Beacon Data
To send the beacon, you post the JSON request body to the /beacons endpoint. Again, in this cURL example, use the JSON you saved to the file testBeacon.json and replace <appKey> with your EUM App Key:
curl -v -X POST -d '@testBeacon.json' https://iot-col.eum-appdynamics.com/eumcollector/iot/v1/application/<appKey>/beaconsIf the beacons were transmitted successfully, the IoT REST API will return the HTTP Status Code 202:
< HTTP/1.1 202 Acceptedコントローラ UI でのインストルメンテーションの確認
Correlate Business Transactions with Network Requests (Optional)
To correlate business transactions (BTs) with network requests, you need to have instrumented a business application and enabled business transactions in the Controller UI. See Correlate Business Transactions for IoT Monitoring to learn more.
The steps below show you how to get the BT response headers and use them to correlate the BT with an IoT Network Request event.
Customize the IoT REST API Instrumentation (Optional)
You can further customize the IoT instrumentation using the IoT REST API. See the latest IoT REST API documentation or the previous versions listed below:
Run the Sample Python Application
The sample Python application uses the IoT REST API to send sample data for Custom, Network Request, and Error events. The Network Request events include correlated business transactions. The data mocks a smart car application, capturing usage information, network performance, and errors.
To run the sample app, follow the instructions given in the GitHub repository iot-rest-api-sample-apps.
Troubleshoot the IoT REST API Instrumentation
The sections below provide instructions for troubleshooting your IoT REST API Instrumentation.
Verify Your IoT App Has Been Enabled
Using your App Key, verify that your IoT app has been enabled:
curl -v -X GET https://iot-col.eum-appdynamics.com/eumcollector/iot/v1/application/<appKey>/enabled
If your App Key has been enabled, you should get the following response:
< HTTP/1.1 200 OK < Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0, proxy-revalidate, s-maxage=0 < Date: Sat, 19 Aug 2017 01:20:39 GMT < Expires: 0 < Pragma: no-cache < Vary: * < Content-Length: 0 < Connection: keep-alive
If the App Key does not exist:
< HTTP/1.1 403 Forbidden
Validate Beacons
You can use the validate beacon endpoint ( /validate-beacons) REST API schema.
In this cURL example, you are verifying that the JSON given in the file testBeacon.json is valid. Replace <appKey> with your EUM App Key.
curl -v -X POST -d '@testBeacon.json' https://iot-col.eum-appdynamics.com/eumcollector/iot/v1/application/<appKey>/validate-beacons
If the JSON request body containing the beacon data is valid, the IoT Monitoring REST API will return the HTTP Status 200:
HTTP/1.1 200 OK
If the JSON request body is invalid, the IoT REST API will return the HTTP Status 422 and a response body with the description of the error message.
< HTTP/1.1 422 Unprocessable Entity
Verify Timestamps
When you create the JSON body and replace the values for the timestamp properties, make sure the timestamps are in milliseconds, not seconds.