Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/application/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ or if your agent needs to open host-level ports then use this format:
services:
datadog:
agent:
enabled: true
ports:
- 8125/udp
- 8126/tcp
Expand Down
2 changes: 1 addition & 1 deletion docs/deployment/private-registries.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Once the registry has been added, you can pull private images:
latest: Pulling from yourname/postgres

<div class="block-callout block-show-callout type-info" markdown="1">
Note that you do not need to include the `https://` protocol as part of the registry address. Convox will add this for you automatically.
Note that you should NOT include the `https://` protocol as part of the registry address. Doing so can cause errors. Convox will add this for you automatically.
</div>

## Removing a registry
Expand Down
27 changes: 14 additions & 13 deletions docs/external-services/datadog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,24 @@ You can deploy the datadog agent as a Convox app with a very simple `convox.yml`

```
services:
agent:
datadog-agent:
agent:
enabled: true
ports:
- 8125/udp
- 8126/tcp
image: datadog/agent:latest
environment:
- DD_API_KEY
- DD_APM_ENABLED=true
privileged: true
scale:
cpu: 128
memory: 128
volumes:
- /sys/fs/cgroup/:/host/sys/fs/cgroup/
- /proc/:/host/proc/
- /var/run/docker.sock:/var/run/docker.sock
image: datadog/agent:latest
environment:
- DD_API_KEY
- DD_APM_ENABLED=true
privileged: true
scale:
cpu: 128
memory: 128
volumes:
- /sys/fs/cgroup/:/host/sys/fs/cgroup/
- /proc/:/host/proc/
- /var/run/docker.sock:/var/run/docker.sock
```

### Application Metrics
Expand Down