Agent - custom development

READ ME! POST / PUT vs GET articles
POST / PUT: articles containing information on input of data to the AIMS backend. Typically creating agents or instrumenting applications to send data to A...
Tue, 24 Mar, 2020 at 9:32 AM
POST - .NET SDK - start guide
All information about the APIs / SDK is found on our GitHub page at https://github.com/aimsinnovation If you have any questions or need additional infor...
Mon, 23 Mar, 2020 at 9:02 AM
POST - Agent definition
The agent structure is defined in a JSON definition. This definition is then registered towards the AIMS API. Once registered it can be viewed under "s...
Mon, 30 Mar, 2020 at 11:02 AM
POST - Register a custom agent in AIMS with the API
Before you can start using your custom agent you need to register it in AIMS. For the sake of simplicity, the example below is done in a REST client and the...
Mon, 23 Mar, 2020 at 9:03 AM
PUT - Register a new version of an agent with the API
To register a new version of an agent, you need to use PUT instead of POST, and add agentID and the version number you want to publish to the path. PUT ht...
Mon, 23 Mar, 2020 at 9:05 AM
POST -Register a new system with the API
Again we will use a REST client to show how this is done. We will register a new system based on the agent that was registered in this section. The API ...
Wed, 25 Mar, 2020 at 10:43 AM
POST - Delete a system with the API
You can delete a system by using the following request and basic auth: DELETE https://api.aimsinnovation.com/api/environments/{environment_id}/systems/...
Mon, 23 Mar, 2020 at 9:03 AM
POST - Create an agent node for the system with the API
Once the system based on the agent definition is registered in AIMS, its time to create the node that contains the properties, stattypes and events we want ...
Mon, 23 Mar, 2020 at 9:04 AM
POST - Register data / statpoints with the API
To send data to the registered agent and node(s), we need to reference the node(s) that the data is sent to. Since we send data to a node, you will need to ...
Mon, 23 Mar, 2020 at 9:04 AM
POST - Register data / statpoints with Powershell
In this section we show a PowerShell example to do the exact same thing as with a REST client shown in this section. In the example we will use the actual C...
Mon, 23 Mar, 2020 at 9:04 AM