There are two ways to install Atatus infra Windows agent. You can follow one of the below.

Manual installation steps

  1. Download the latest Atatus MSI installer image from here.

  2. Run the installer (as Administrator) by double clicking atatus-infra-agent-3.0.0-windows-x86_64.msi.

  3. Create atatus.yml configuration file with below content. You need to change the license key to your infra license key.

    # General
    license_key: "lic_infra_testkey"
    
    # Sets log level. The default log level is info.
    # Available log levels are: error, warning, info, verbose
    log_level: warning
    
    # The tags of the shipper are included in their own field with each transaction published.
    # eg: ["aws-eu", "web-tier"]
    tags: []
    
    # Optional fields that you can specify to add additional information to the output.
    #customData:
    #  env: production
    
    logs_enabled: false
    
  4. Copy and paste the atatus.yml file to the directory C:\ProgramData\Atatus\configs\.

  5. Start the Atatus Infra agent using one of the below method

    Option 1: Run the following command from either the command line or PowerShell

    net start atatus-infra-agent
    

    Option 2: Go to Start Menu, Open Services. In the services, go to Atatus Infra Agent and right click and Start.

PowerShell installation steps

  1. Download the latest MSI installer image from here.

  2. Login as Admin user and open the PowerShell. Run the below command to install the agent

    msiexec.exe /qn /i PATH\TO\atatus-infra-agent-3.0.0-windows-x86_64.msi
    
  3. Create atatus.yml configuration file with below content. You need to change the license key to your infra license key.

    # General
    license_key: "lic_infra_testkey"
    
    # Sets log level. The default log level is info.
    # Available log levels are: error, warning, info, verbose
    log_level: warning
    
    # The tags of the shipper are included in their own field with each transaction published.
    # eg: ["aws-eu", "web-tier"]
    tags: []
    
    # Optional fields that you can specify to add additional information to the output.
    #customData:
    #  env: production
    
    logs_enabled: false
    
  4. Copy and paste the atatus.yml file to the directory C:\ProgramData\Atatus\configs\.

  5. Open the PowerShell as administrator and run the following command

    net start atatus-infra-agent