Skip to content

Commit 9dab0ad

Browse files
committed
Updated docs
Signed-off-by: dhoard <[email protected]>
1 parent 7610615 commit 9dab0ad

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/content/java-agent/combined-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Reference HTTP Mode [Rules](/rules/rules/) for various `exporter.yaml` metrics c
6161
2. Access HTTP Mode metrics using a browser to view your metrics.
6262

6363
```
64-
http://<APPLICATION_HOSTNAME>:<PORT>/metrics
64+
http://<APPLICATION_HOSTNAME_OR_IP>:<PORT>/metrics
6565
```
6666
6767
```

docs/content/java-agent/http-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Reference HTTP Mode [Rules](/rules/rules/) for various `exporter.yaml` metrics c
4242
2. Access HTTP Mode metrics using a browser to view your metrics.
4343

4444
```
45-
http://<APPLICATION_HOSTNAME>:<PORT>/metrics
45+
http://<APPLICATION_HOSTNAME_OR_IP>:<PORT>/metrics
4646
```
4747
4848
```

docs/content/standalone/combined-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Reference HTTP Mode [Rules](/rules/rules/) for various `exporter.yaml` metrics c
6161
2. Access HTTP Mode metrics using a browser to view your metrics.
6262

6363
```
64-
http://<APPLICATION_HOSTNAME>:<PORT>/metrics
64+
http://<APPLICATION_HOSTNAME_OR_IP>:<PORT>/metrics
6565
```
6666
6767
```

docs/content/standalone/http-mode.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ Your application **must** expose RMI.
3030
**exporter.yaml**
3131

3232
```yaml
33-
hostPort: <APPLICATION_HOSTNAME>:<APPLICATION_RMI_PORT>
33+
hostPort: <APPLICATION_HOSTNAME_OR_IP>:<APPLICATION_RMI_PORT>
3434
rules:
3535
- pattern: ".*"
3636
```
3737
3838
... or ...
3939
4040
```yaml
41-
jmxUrl: service:jmx:rmi:///jndi/rmi://<APPLICATION_HOSTNAME>:<APPLICATION_RMI_PORT>/jmxrmi
41+
jmxUrl: service:jmx:rmi:///jndi/rmi://<APPLICATION_HOSTNAME_OR_IP>:<APPLICATION_RMI_PORT>/jmxrmi
4242
rules:
4343
- pattern: ".*"
4444
```
@@ -50,7 +50,7 @@ rules:
5050
If your application's RMI server requires SSL you can add `ssl: true`
5151

5252
```yaml
53-
hostPort: <APPLICATION_HOSTNAME>:<APPLICATION_RMI_PORT>
53+
hostPort: <APPLICATION_HOSTNAME_OR_IP>:<APPLICATION_RMI_PORT>
5454
ssl: true
5555
rules:
5656
- pattern: ".*"
@@ -61,7 +61,7 @@ rules:
6161
If your application's RMI server requires authentication, you can add `username` and `password`
6262

6363
```yaml
64-
hostPort: <APPLICATION_HOSTNAME>:<APPLICATION_RMI_PORT>
64+
hostPort: <APPLICATION_HOSTNAME_OR_IP>:<APPLICATION_RMI_PORT>
6565
username: <APPLICATION_RMI_USERNAME>
6666
password: <APPLICATION_RMI_PASSWORD>
6767
rules:

0 commit comments

Comments
 (0)