Added FreeBSD integration and fixed Windows installation Steps (#15570)
* Added FreeBSD integration and fixed Windows installation Steps * Removed Curl section for FreeBSD, Added FreeBSD Ports info and Fixed Docker link
Satyadeep Ashwathnarayana committed
Jul 27, 2023 at 16:04 UTC
eff81ae04121c572c0c661b7d18a5cf3887e05f6
1 file changed
+39
-3
integrations/deploy.yaml
+39
-3
@@ -214,7 +214,7 @@
214
- id: deploy-docker
215
meta:
216
name: Docker
217
- link: ''
217
+ link: 'https://www.docker.com/'
218
categories:
219
- deploy.docker-kubernetes
220
icon_filename: 'docker.png'
@@ -503,7 +503,7 @@
503
- id: deploy-windows
504
meta:
505
name: Windows
506
- link: ''
506
+ link: 'https://www.microsoft.com/en-us/windows'
507
categories:
508
- deploy.operating-systems
509
icon_filename: 'windows.png'
@@ -513,7 +513,7 @@
513
1. Install [Windows Exporter](https://github.com/prometheus-community/windows_exporter) on every Windows host you want to monitor.
514
2. Install Netdata agent on Linux, FreeBSD or Mac.
515
3. Configure Netdata to collect data remotely from your Windows hosts by adding one job per host to windows.conf file. See the [configuration section](https://learn.netdata.cloud/docs/data-collection/monitor-anything/System%20Metrics/Windows-machines#configuration) for details.
516
- 4. Enable virtual nodes configuration so the windows nodes are displayed as separate nodes.
516
+ 4. Enable [virtual nodes](https://learn.netdata.cloud/docs/data-collection/windows-systems#virtual-nodes) configuration so the windows nodes are displayed as separate nodes.
517
methods:
518
- method: wget
519
commands:
@@ -542,3 +542,39 @@
542
group: ''
543
distro: ''
544
quick_start: 2
545
+- id: deploy-freebsd
546
+ meta:
547
+ name: FreeBSD
548
+ link: 'https://www.freebsd.org/'
549
+ categories:
550
+ - deploy.operating-systems
551
+ icon_filename: 'freebsd.jpg'
552
+ most_popular: true
553
+ keywords:
554
+ - freebsd
555
+ install_description: |
556
+ ## Install dependencies
557
+ Please install the following packages using the command below:
558
+
559
+ ```pkg install bash e2fsprogs-libuuid git curl autoconf automake pkgconf pidof liblz4 libuv json-c cmake gmake```
560
+ This step needs root privileges. Please respond in the affirmative for any relevant prompts during the installation process.
561
+
562
+ Run the following command on your node to install and claim Netdata:
563
+ methods:
564
+ - method: wget
565
+ commands:
566
+ - channel: nightly
567
+ command: >
568
+ wget -O /tmp/netdata-kickstart.sh https://my-netdata.io/kickstart.sh && sh /tmp/netdata-kickstart.sh
569
+ --nightly-channel --claim-token {% claim_token %} --claim-url {% claim_url %}
570
+ - channel: stable
571
+ command: >
572
+ wget -O /tmp/netdata-kickstart.sh https://my-netdata.io/kickstart.sh && sh /tmp/netdata-kickstart.sh
573
+ --stable-channel --claim-token {% claim_token %} --claim-url {% claim_url %}
574
+ additional_info: |
575
+ Netdata can also be installed via [FreeBSD ports](https://www.freshports.org/net-mgmt/netdata).
576
+ related_resources: {}
577
+ platform_info:
578
+ group: 'include'
579
+ distro: 'freebsd'
580
+ quick_start: 6