...
For the server or container hosting Telegraf
download and install the Influx Telegraf agent that corresponds to your OS athttps://portal.influxdata.com/downloads/
Copy the Telegraf_Boomi_Processes.conf file into the Influx Telegraf folder. You can download the configuration file here.
In the “outputs.http” section of the config file there is a field with the name “authenticate”. Place your Eyer agent API token here.
In the “inputs.exec” section of the config file there is a field with the name “commands”. Insert the path to your Telegraf folder and PowerShell script here. It should look something like
Code Block commands = ['powershell "C:\telegraf-1.31.2_windows_amd64\telegraf-1.31.2\BoomiProcesses.ps1"']
Save the Telegraf config file
Download the Boomi_processes.ps1 PowerShell script into your Telegraf folder. You can download the script here
Open / edit the Boomi_processes.ps1 PowerShell script
Replace all variable in the top section with your AtomSphere API token & username, Boomi account Id and Telegraf path. In your Telegraf path, make sure you have a “\” at the end of the path, like
Code Block $TelegrafPath = 'C:\telegraf-1.31.2_windows_amd64\telegraf-1.31.2\'
Save the PowerShell file
Register the Telegraf agent as a service and start it(see instructions per OS). With Windows use
Code Block \telegraf.exe service install --config "C:\Program Files\InfluxData\telegraf\Telegraf_Boomi_Processes.conf"
Start the Telegraf service.
...