|
@@ -20622,23 +20622,23 @@ export const integrations = [
|
|
|
"keywords": [
|
|
|
"windows"
|
|
|
],
|
|
|
- "install_description": "Netdata offers a convenient Windows installer for easy setup. This executable provides two distinct installation modes, outlined below.\n\nThe Windows installer is currently under beta, and thus it is only available in the nightly release channel. A stable version will be released soon.\n\n## Graphical User Interface (GUI)\n\n1. Download the Netdata [Windows installer](https://github.com/netdata/netdata-nightlies/releases) from the latest nightly release.\n2. Run the `.exe` file and proceed with the installation process.\n3. At a minimum, you will need your Netdata Cloud Space's claim token to connect your Agent to your Space.\n\n## Silent Mode (Command line)\n\nIf you prefer to install Netdata through the command line, you can do so by running the following command on Windows Powershell with administrator rights.\n",
|
|
|
+ "install_description": "Netdata offers a convenient Windows installer for easy setup. This executable provides two distinct installation modes, outlined below.\n\n## Graphical User Interface (GUI)\n\n**Download the MSI Installer**:\n - [Stable version](https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi)\n - [Nightly version](https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-x64.msi)\n\nDouble-click the installer to start the installation process. As Netdata adds a service to your system, you'll need to provide administrator privileges.\n\nOnce installed, you can access your Netdata dashboard at `localhost:19999`.\n\n## Silent Mode (Command line)\n\nIf you prefer to install Netdata through the command line, you can do so by running the following command on Windows Powershell with administrator rights.\n",
|
|
|
"methods": [
|
|
|
{
|
|
|
"method": "Silent Mode (Command line)",
|
|
|
"commands": [
|
|
|
{
|
|
|
"channel": "stable",
|
|
|
- "command": "$ProgressPreference = 'SilentlyContinue';\nInvoke-WebRequest https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-installer-x64.exe -OutFile \"netdata-installer-x64.exe\";\n.\\netdata-installer-x64.exe /S /A `\n{% if $showClaimingOptions %}/TOKEN={% claim_token %} /ROOMS={% $claim_rooms %}{% /if %}\n"
|
|
|
+ "command": "$ProgressPreference = 'SilentlyContinue';\nInvoke-WebRequest https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi -OutFile \"netdata-x64.msi\";\nmsiexec /qn /i netdata-x64.msi {% if $showClaimingOptions %}TOKEN={% claim_token %} ROOMS={% $claim_rooms %}{% /if %}\n"
|
|
|
},
|
|
|
{
|
|
|
"channel": "nightly",
|
|
|
- "command": "$ProgressPreference = 'SilentlyContinue';\nInvoke-WebRequest https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-installer-x64.exe -OutFile \"netdata-installer-x64.exe\";\n.\\netdata-installer-x64.exe /S /A `\n{% if $showClaimingOptions %}/TOKEN={% claim_token %} /ROOMS={% $claim_rooms %}{% /if %}\n"
|
|
|
+ "command": "$ProgressPreference = 'SilentlyContinue';\nInvoke-WebRequest https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-x64.msi -OutFile \"netdata-x64.msi\";\n.\\msiexec /qn /i netdata-x64.msi {% if $showClaimingOptions %}/TOKEN={% claim_token %} /ROOMS={% $claim_rooms %}{% /if %}\n"
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
],
|
|
|
- "additional_info": "### Available Options\n\n| Option | Description |\n|-----------|--------------------------------------------------------------------------------------------------|\n| `/S` | Enables silent mode installation. |\n| `/A` | Accepts all Netdata licenses. This option is mandatory for silent installations. |\n| `/D` | Specifies the desired installation directory (defaults to `C:\\Program Files\\Netdata`). |\n| `/T` | Opens the `MSYS2` terminal after installation. |\n| `/I` | Forces insecure connections, bypassing hostname verification (use only if absolutely necessary). |\n| `/TOKEN=` | Sets the Claim Token for your Netdata Cloud Space. |\n| `/ROOMS=` | Comma-separated list of Room IDs where you want your node to appear. |\n| `/PROXY=` | Sets the proxy server address if your network requires one. |\n",
|
|
|
+ "additional_info": "### Available CLI Options\n\n| Option | Description |\n|--------------|--------------------------------------------------------------------------------------------------|\n| `/qn` | Enables silent mode installation. |\n| `/i` | Specifies the path to the MSI installer file. |\n| `INSECURE=1` | Forces insecure connections, bypassing hostname verification (use only if absolutely necessary). |\n| `TOKEN=` | Sets the Claim Token for your Netdata Cloud Space. |\n| `ROOMS=` | Comma-separated list of Room IDs where you want your node to appear. |\n| `PROXY=` | Sets the proxy server address if your network requires one. |\n",
|
|
|
"related_resources": {},
|
|
|
"most_popular": true,
|
|
|
"platform_info": "",
|