@@ -22,7 +22,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
22
22
23
23
## Developing
24
24
25
- The following docs are only focused on getting developers started building code for Elastic Agent.
25
+ The following are exclusively focused on getting developers started building code for Elastic Agent.
26
26
27
27
### Development Installations
28
28
@@ -33,14 +33,14 @@ This prevents you from installing the Elastic Agent a second time for developmen
33
33
of friction, Elastic Agent has a development mode that permits installing the Elastic Agent on your machine a second time:
34
34
35
35
``` sh
36
- # All other arguments to the install command are supported when --develop is specified.
36
+ # All other arguments to the install command are still supported when --develop is specified.
37
37
sudo ./elastic-agent install --develop
38
- # The run command also supports the --develop option to all running without installing when there is another agent on the machine.
38
+ # The run command also supports the --develop option to allow running without installing when there is another agent on the machine.
39
39
./elastic-agent run -e --develop
40
40
```
41
41
42
42
Using the ` --develop ` option will install the agent in an isolated ` DevelopmentAgent ` agent directory in the chosen base path.
43
- Development agents installed in Fleet will automatically have the ` development ` tag applied . Using the default base path on MacOS you will see:
43
+ Development agents enrolled in Fleet will have the ` development ` tag added automatically . Using the default base path on MacOS you will see:
44
44
45
45
``` sh
46
46
sudo ls /Library/Elastic/
@@ -57,11 +57,11 @@ sudo elastic-development-agent status
57
57
sudo -u elastic-agent-user elastic-development-agent status
58
58
```
59
59
60
- The primary restriction of ` --develop ` installations is that you cannot run Elastic Defend a second time on the same machine. Defend installations
61
- for development installations will fail with resource conflicts. All other integrations should be usable provided conflicting configurations are
62
- changed ahead of time. For example two agents cannot bind to the same ` agent.monitoring.http.port ` value to expose their monitoring servers.
60
+ The primary restriction of ` --develop ` installations is that you cannot run Elastic Defend a second time on the same machine. Attempting to
61
+ install Defend twice will fail with resource conflicts. All other integrations should be usable provided conflicting configurations are
62
+ changed ahead of time. For example two agents cannot bind to the same ` agent.monitoring.http.port ` to expose their monitoring servers.
63
63
64
- To follow the changes made to support development mode, search for the IsDevelopmentMode() function in the source code.
64
+ To follow the changes made to support development mode, search for the ` IsDevelopmentMode() ` function in the source code.
65
65
66
66
### Test Framework
67
67
0 commit comments