Windows
StackState Self-hosted v4.6.x
This page describes StackState version 4.6.
StackState Agent V2
StackState Agent V2 can be installed on Windows systems . The Agent collects data from the host where it is running and can be configured to integrate with external systems. Retrieved data is pushed to StackState, to work with this data the StackState Agent V2 StackPack must be installed in your StackState instance. For details of the data retrieved and available integrations, see the StackPack integration documentation.
StackState Agent V2 will synchronize the following data from the host it is running on with StackState:
- Hosts, processes and containers.
- Telemetry for hosts, processes and containers
- Network connections between processes and containers, including network traffic telemetry.
StackState Agent V2 is supported to run on:
- Windows 10 or higher
- Windows Server 2012 or higher
StackState Agent connects to the StackState Receiver API at the specified StackState Receiver API address. The correct address to use is specific to your installation of StackState.
- Online install - If you have access to the internet on the machine where the Agent will be installed.
- Offline install - If you do not have access to the internet on the machine where the Agent will be installed.
The
stsApiKey
and stsUrl
(baseUrl) specified when running the install script are set during StackState installation, for details see:If you have access to the internet on the machine where the Agent will be installed, the
install.ps1
script can be run using iwr
and the Agent installer package will be downloaded automatically.. { iwr -useb https://stackstate-agent-2.s3.amazonaws.com/install.ps1 } | iex; `
install -stsApiKey "{{config.apiKey}}" `
-stsUrl "<stackstate-receiver-api-address>"
If you do not have access to the internet on the machine where the Agent will be installed, you will need to download both the install script and the Agent installer package before you install.
- 1.Download the PowerShell install script and copy this to the host where it will be installed:
- 2.Download the latest version of the Agent installer package and copy this to the host where it will be installed next to the PowerShell install script:
- 3.Assuming the installer script is saved as
C:\stackstate-custom.msi
and the PowerShell script is saved asC:\install_script.ps1
, open PowerShell with elevated privileges and invoke the following set of commands:Import-Module C:\install_script.ps1install -stsApiKey {{config.apiKey}} `-stsUrl <stackstate-receiver-api-address> `-f C:\\stackstate-custom.msi
To upgrade StackState Agent V2 running on Windows,
- 1.Download the latest version of the Agent installer package and copy this to the host where it will be installed next to the PowerShell install script:
- 2.Double-click on the downloaded
*.msi
file.
The StackState Agent V2 configuration is located in the file
C:\ProgramData\StackState\stackstate.yaml
. The stsApiKey
and stsUrl
specified during installation will be added here by the install script. No further configuration should be required.StackState Agent V2 can be configured to reduce data production, tune the process blacklist, or turn off specific features when not needed. The required settings are described in detail on the page advanced Agent configuration.
The Agent can be configured to run checks that integrate with external systems. Configuration files for integrations run through StackState Agent V2 can be found in the directory
C:\ProgramData\StackState\conf.d
. Each integration has its own configuration file that is used by the enabled Agent checks.Documentation for the available StackState integrations, including configuration details can be found on the StackPacks > Integrations pages.
The Agent can be configured to use a proxy for HTTP and HTTPS requests. For details, see use an HTTP/HTTPS proxy.
Commands require elevated privileges.
To manually start, stop or restart StackState Agent V2:
CMD
PowerShell
"C:\Program Files\StackState\StackState Agent\embedded\agent.exe" start-service
"C:\Program Files\StackState\StackState Agent\embedded\agent.exe" stopservice
"C:\Program Files\StackState\StackState Agent\embedded\agent.exe" restart-service
& "C:\Program Files\StackState\StackState Agent\embedded\agent.exe" start-service
& "C:\Program Files\StackState\StackState Agent\embedded\agent.exe" stopservice
& "C:\Program Files\StackState\StackState Agent\embedded\agent.exe" restart-service
To check if StackState Agent V2 is running and receive information about the Agent's status:
"./agent.exe status"
Use the command below to manually run an Agent check once and output the results.
C:\Program Files\StackState\StackState Agent\embedded\agent.exe check <CHECK_NAME>
Logs for the subsystems are in the following files:
C:\ProgramData\StackState\logs\agent.log
C:\ProgramData\StackState\logs\process-agent.log
To uninstall StackState Agent V2 running on Windows:
- 1.In the Windows task bar, search for control panel.
- 2.In the control panel, open Add/remove programs.
- 3.Follow the instructions to uninstall StackState Agent V2.
Last modified 1yr ago