Skip to content

Commit 1841118

Browse files
committed
Replace Beats 'has not yet been released' with install commands
1 parent ea1a63e commit 1841118

File tree

6 files changed

+308
-65
lines changed

6 files changed

+308
-65
lines changed

reference/ingestion-tools/fleet/air-gapped.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,6 @@ There are different distributions available:
110110
* production: `docker.elastic.co/package-registry/distribution:production` - Packages available in the production registry ([https://epr.elastic.co](https://epr.elastic.co)). Please note that this image is updated every time a new version of a package gets published.
111111
* lite: `docker.elastic.co/package-registry/distribution:lite` - Subset of the most commonly used packages available in the production registry ([https://epr.elastic.co](https://epr.elastic.co)). Please note that this image is updated every time a new version of a package gets published.
112112

113-
::::{warning}
114-
Version 9.0.0-beta1 of the {{package-registry}} distribution has not yet been released.
115-
116-
::::
117-
118113

119114
To update the distribution image, re-pull the image and then restart the docker container.
120115

reference/ingestion-tools/fleet/install-standalone-elastic-agent.md

Lines changed: 44 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,55 @@ To install and run {{agent}} standalone:
2828
::::{tab-set}
2929

3030
:::{tab-item} macOS
31-
Version 9.0.0-beta1 of {{agent}} has not yet been released.
31+
```shell subs=true
32+
curl -L -O https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-{{stack-version}}-darwin-x86_64.tar.gz
33+
tar xzvf elastic-agent-{{stack-version}}-darwin-x86_64.tar.gz
34+
```
3235
:::
3336

3437
:::{tab-item} Linux
35-
Version 9.0.0-beta1 of {{agent}} has not yet been released.
38+
```shell subs=true
39+
curl -L -O https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-{{stack-version}}-linux-x86_64.tar.gz
40+
tar xzvf elastic-agent-{{stack-version}}-linux-x86_64.tar.gz
41+
```
3642
:::
3743

3844
:::{tab-item} Windows
39-
Version 9.0.0-beta1 of {{agent}} has not yet been released.
45+
```shell subs=true
46+
# PowerShell 5.0+
47+
wget https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-{version}-windows-x86_64.zip -OutFile elastic-agent-{{stack-version}}-windows-x86_64.zip
48+
Expand-Archive .\elastic-agent-{{stack-version}}-windows-x86_64.zip
49+
```
50+
Or manually:
51+
52+
1. Download the {{agent}} Windows zip file from the [download page](https://www.elastic.co/downloads/beats/elastic-agent).
53+
54+
2. Extract the contents of the zip file.
4055
:::
4156

4257
:::{tab-item} DEB
43-
Version 9.0.0-beta1 of {{agent}} has not yet been released.
58+
IMPORTANT:
59+
60+
* To simplify upgrading to future versions of {{agent}}, we recommended that you use the tarball distribution instead of the DEB distribution.
61+
* You can install {{agent}} in an `unprivileged` mode that does not require `root` privileges. Refer to [Run {{agent}} without administrative privileges](./elastic-agent-unprivileged.md) for details.
62+
63+
```shell subs=true
64+
curl -L -O https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-{{stack-version}}-amd64.deb
65+
sudo dpkg -i elastic-agent-{{stack-version}}-amd64.deb
66+
```
4467
:::
4568

4669
:::{tab-item} RPM
47-
Version 9.0.0-beta1 of {{agent}} has not yet been released.
70+
IMPORTANT:
71+
72+
* To simplify upgrading to future versions of {{agent}}, we recommended that you use the tarball distribution instead of the RPM distribution.
73+
* You can install {{agent}} in an `unprivileged` mode that does not require `root` privileges. Refer to [Run {{agent}} without administrative privileges](./elastic-agent-unprivileged.md) for details.
74+
75+
76+
```shell subs=true
77+
curl -L -O https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-{{stack-version}}-x86_64.rpm
78+
sudo rpm -vi elastic-agent-{{stack-version}}-x86_64.rpm
79+
```
4880
:::
4981

5082
::::
@@ -83,20 +115,16 @@ To install and run {{agent}} standalone:
83115

84116
:::{tab-item} macOS
85117

86-
::::{tip}
87-
You must run this command as the root user because some integrations require root privileges to collect sensitive data.
88-
::::
118+
TIP: You must run this command as the root user because some integrations require root privileges to collect sensitive data.
89119

90120
```shell
91121
sudo ./elastic-agent install
92122
```
93123
:::
94124

95125
:::{tab-item} Linux
96-
97-
::::{tip}
98-
You must run this command as the root user because some integrations require root privileges to collect sensitive data.
99-
::::
126+
127+
TIP: You must run this command as the root user because some integrations require root privileges to collect sensitive data.
100128

101129
```shell
102130
sudo ./elastic-agent install
@@ -116,30 +144,26 @@ To install and run {{agent}} standalone:
116144

117145
:::{tab-item} DEB
118146

119-
::::{tip}
120-
You must run this command as the root user because some integrations require root privileges to collect sensitive data.
121-
::::
147+
TIP: You must run this command as the root user because some integrations require root privileges to collect sensitive data.
122148

123149
```shell
124150
sudo systemctl enable elastic-agent <1>
125151
sudo systemctl start elastic-agent
126152
```
127-
1. The DEB package includes a service unit for Linux systems with systemd. On these systems, you can manage {{agent}} by using the usual systemd commands. If you don’t have systemd, run `sudo service elastic-agent start`.
153+
The DEB package includes a service unit for Linux systems with systemd. On these systems, you can manage {{agent}} by using the usual systemd commands. If you don’t have systemd, run `sudo service elastic-agent start`.
128154
:::
129155

130156
:::{tab-item} RPM
131157

132-
::::{tip}
133-
You must run this command as the root user because some integrations require root privileges to collect sensitive data.
134-
::::
158+
TIP: You must run this command as the root user because some integrations require root privileges to collect sensitive data.
135159

136160

137161
```shell
138162
sudo systemctl enable elastic-agent <1>
139163
sudo systemctl start elastic-agent
140164
```
141165

142-
1. The RPM package includes a service unit for Linux systems with systemd. On these systems, you can manage {{agent}} by using the usual systemd commands. If you don’t have systemd, run `sudo service elastic-agent start`.
166+
The RPM package includes a service unit for Linux systems with systemd. On these systems, you can manage {{agent}} by using the usual systemd commands. If you don’t have systemd, run `sudo service elastic-agent start`.
143167
:::
144168

145169
::::

solutions/observability/apps/tutorial-monitor-java-application.md

Lines changed: 99 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -377,23 +377,51 @@ To read the log file and send it to {{es}}, {{filebeat}} is required. To downloa
377377
:::::::{tab-set}
378378

379379
::::::{tab-item} DEB
380-
Version 9.0.0-beta1 of Filebeat has not yet been released.
380+
```shell subs=true
381+
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-{{stack-version}}-amd64.deb
382+
sudo dpkg -i filebeat-{{stack-version}}-amd64.deb
383+
```
381384
::::::
382385

383386
::::::{tab-item} RPM
384-
Version 9.0.0-beta1 of Filebeat has not yet been released.
387+
```shell subs=true
388+
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-{{stack-version}}-x86_64.rpm
389+
sudo rpm -vi filebeat-{{stack-version}}-x86_64.rpm
390+
```
385391
::::::
386392

387393
::::::{tab-item} MacOS
388-
Version 9.0.0-beta1 of Filebeat has not yet been released.
394+
```shell subs=true
395+
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-{{stack-version}}-darwin-x86_64.tar.gz
396+
tar xzvf filebeat-{{stack-version}}-darwin-x86_64.tar.gz
397+
```
389398
::::::
390399

391400
::::::{tab-item} Linux
392-
Version 9.0.0-beta1 of Filebeat has not yet been released.
401+
```shell subs=true
402+
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-{{stack-version}}-linux-x86_64.tar.gz
403+
tar xzvf filebeat-{{stack-version}}-linux-x86_64.tar.gz
404+
```
393405
::::::
394406

395407
::::::{tab-item} Windows
396-
Version 9.0.0-beta1 of Filebeat has not yet been released.
408+
1. Download the Filebeat Windows zip file: https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-{{stack-version}}-windows-x86_64.zip
409+
410+
2. Extract the contents of the zip file into `C:\Program Files`.
411+
412+
3. Rename the +filebeat-{{stack-version}}-windows-x86_64+ directory to +Filebeat+.
413+
414+
4. Open a PowerShell prompt as an Administrator (right-click the PowerShell icon and select *Run As Administrator*).
415+
416+
5. From the PowerShell prompt, run the following commands to install Filebeat as a Windows service:
417+
418+
```shell subs=true
419+
PS > cd 'C:\Program Files\Filebeat'
420+
PS C:\Program Files\Filebeat> .\install-service-filebeat.ps1
421+
```
422+
423+
NOTE: If script execution is disabled on your system, you need to set the execution policy for the current session to allow the script to run. For
424+
example: `+PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-service-filebeat.ps1+.`
397425
::::::
398426

399427
:::::::
@@ -1097,23 +1125,51 @@ To send metrics to {{es}}, {{metricbeat}} is required. To download and install {
10971125
:::::::{tab-set}
10981126
10991127
::::::{tab-item} DEB
1100-
Version 9.0.0-beta1 of Metricbeat has not yet been released.
1128+
```shell subs=true
1129+
curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{{stack-version}}-amd64.deb
1130+
sudo dpkg -i metricbeat-{{stack-version}}-amd64.deb
1131+
```
11011132
::::::
11021133
11031134
::::::{tab-item} RPM
1104-
Version 9.0.0-beta1 of Metricbeat has not yet been released.
1135+
```shell subs=true
1136+
curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{{stack-version}}-x86_64.rpm
1137+
sudo rpm -vi metricbeat-{{stack-version}}-x86_64.rpm
1138+
```
11051139
::::::
11061140
11071141
::::::{tab-item} MacOS
1108-
Version 9.0.0-beta1 of Metricbeat has not yet been released.
1142+
```shell subs=true
1143+
curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{{stack-version}}-darwin-x86_64.tar.gz
1144+
tar xzvf metricbeat-{{stack-version}}-darwin-x86_64.tar.gz
1145+
```
11091146
::::::
11101147
11111148
::::::{tab-item} Linux
1112-
Version 9.0.0-beta1 of Metricbeat has not yet been released.
1149+
```shell subs=true
1150+
curl -L -O https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{{stack-version}}-linux-x86_64.tar.gz
1151+
tar xzvf metricbeat-{{stack-version}}-linux-x86_64.tar.gz
1152+
```
11131153
::::::
11141154
11151155
::::::{tab-item} Windows
1116-
Version 9.0.0-beta1 of Metricbeat has not yet been released.
1156+
1. Download the Metricbeat Windows zip file: https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-{{stack-version}}-windows-x86_64.zip
1157+
1158+
2. Extract the contents of the zip file into `C:\Program Files`.
1159+
1160+
3. Rename the +metricbeat-{{stack-version}}-windows-x86_64+ directory to +Metricbeat+.
1161+
1162+
4. Open a PowerShell prompt as an Administrator (right-click the PowerShell icon and select *Run As Administrator*).
1163+
1164+
5. From the PowerShell prompt, run the following commands to install Metricbeat as a Windows service:
1165+
1166+
```shell subs=true
1167+
PS > cd 'C:\Program Files\Metricbeat'
1168+
PS C:\Program Files\Metricbeat> .\install-service-metricbeat.ps1
1169+
```
1170+
1171+
NOTE: If script execution is disabled on your system, you need to set the execution policy for the current session to allow the script to run. For
1172+
example: `+PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-service-metricbeat.ps1+.`
11171173
::::::
11181174
11191175
:::::::
@@ -1713,23 +1769,51 @@ To send uptime data to {{es}}, {{heartbeat}} (the polling component) is required
17131769
:::::::{tab-set}
17141770
17151771
::::::{tab-item} DEB
1716-
Version 9.0.0-beta1 of Heartbeat has not yet been released.
1772+
```shell subs=true
1773+
curl -L -O https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-{{stack-version}}-amd64.deb
1774+
sudo dpkg -i heartbeat-{{stack-version}}-amd64.deb
1775+
```
17171776
::::::
17181777
17191778
::::::{tab-item} RPM
1720-
Version 9.0.0-beta1 of Heartbeat has not yet been released.
1779+
```shell subs=true
1780+
curl -L -O https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-{{stack-version}}-x86_64.rpm
1781+
sudo rpm -vi heartbeat-{{stack-version}}-x86_64.rpm
1782+
```
17211783
::::::
17221784
17231785
::::::{tab-item} MacOS
1724-
Version 9.0.0-beta1 of Heartbeat has not yet been released.
1786+
```shell subs=true
1787+
curl -L -O https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-{{stack-version}}-darwin-x86_64.tar.gz
1788+
tar xzvf heartbeat-{{stack-version}}-darwin-x86_64.tar.gz
1789+
```
17251790
::::::
17261791
17271792
::::::{tab-item} Linux
1728-
Version 9.0.0-beta1 of Heartbeat has not yet been released.
1793+
```shell subs=true
1794+
curl -L -O https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-{{stack-version}}-linux-x86_64.tar.gz
1795+
tar xzvf heartbeat-{{stack-version}}-linux-x86_64.tar.gz
1796+
```
17291797
::::::
17301798
17311799
::::::{tab-item} Windows
1732-
Version 9.0.0-beta1 of Heartbeat has not yet been released.
1800+
1. Download the Heartbeat Windows zip file: https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-{{stack-version}}-windows-x86_64.zip
1801+
1802+
2. Extract the contents of the zip file into `C:\Program Files`.
1803+
1804+
3. Rename the +heartbeat-{{stack-version}}-windows-x86_64+ directory to +Heartbeat+.
1805+
1806+
4. Open a PowerShell prompt as an Administrator (right-click the PowerShell icon and select *Run As Administrator*).
1807+
1808+
5. From the PowerShell prompt, run the following commands to install Heartbeat as a Windows service:
1809+
1810+
```shell subs=true
1811+
PS > cd 'C:\Program Files\Heartbeat'
1812+
PS C:\Program Files\Heartbeat> .\install-service-heartbeat.ps1
1813+
```
1814+
1815+
NOTE: If script execution is disabled on your system, you need to set the execution policy for the current session to allow the script to run. For
1816+
example: `+PowerShell.exe -ExecutionPolicy UnRestricted -File .\install-service-heartbeat.ps1+.`
17331817
::::::
17341818
17351819
:::::::

0 commit comments

Comments
 (0)