-
Notifications
You must be signed in to change notification settings - Fork 810
Proxy Configuration
If your network configuration restricted outbound traffic, you can proxy all agent traffic through one or several hosts that have more permissive outbound policies.
You have a few options to send traffic to Datadog over SSL/TLS for hosts that are not directly connected to the internet.
- Using the agent as a proxy (for up to 16 agents per proxy)
- Using a web proxy (e.g. Squid, Microsoft Web Proxy) that is already deployed in your network
- Using HAProxy (if you want to proxy more than 16-20 agents through the same proxy)
-
Designate one node that runs datadog-agent as the proxy. In this example assume that the proxy name is
proxy-node. This node must be able to reach https://app.datadoghq.com. -
Verify SSL connectivity on
proxy-nodecurl -v https://app.datadoghq.com/aacount/login 2>&1 | grep "200 OK" -
Allow non-local traffic on
proxy-nodeby changing the following line in/etc/dd-agent/datadog.conf.# non_local_traffic: noshould readnon_local_traffic: yes. -
Make sure
proxy-nodecan be reached from the other nodes over port 17123. Start the agent on theproxy-nodeand run on the other nodes:curl -v http://proxy-node:17123/status 2>&1 | grep "200 OK" -
Update non-proxy nodes to forward to
proxy-node. Simply change the following line in/etc/dd-agent/datadog.conffrom:dd_url: https://app.datadoghq.comtodd_url: http://proxy-node:17123 -
Verify on the Infrastructure page that all nodes report data to Datadog.
Traditional web proxies are supported natively by the agent. Simply
edit datadog.conf with your proxy information.
# If you need a proxy to connect to the Internet, provide the settings here
proxy_host: my-proxy.example.com
proxy_port: 3128
proxy_user: my_user
proxy_password: my_password
Do not forget to restart the agent for the new settings to take effect.
HAProxy is a free, very fast and reliable solution offering proxying for TCP and HTTP applications. While HAProxy is usually used as a load balancer to distribute incoming requests to pools servers, you can also use it to proxy agent traffic to Datadog from hosts that have no outside connectivity.
This is the best option if you do not have a web proxy readily available in your network and you wish to proxy a large number of agents.
agent ---> haproxy ---> Datadog
We assume that HAProxy is installed on a host that has connectivity to Datadog. You can use the following configuration file if you do not already have it configured.
# Basic configuration
global
log 127.0.0.1 local0
maxconn 4096
stats socket /tmp/haproxy
# Some sane defaults
defaults
log global
option dontlognull
retries 3
option redispatch
timeout client 1s
timeout server 5s
timeout connect 5s
# This declares a view into HAProxy statistics, on port 3835
# You do not need credentials to view this page and you can
# turn it off once you are done with setup.
listen stats :3835
mode http
stats enable
stats uri /
# This declares the endpoint where your agents will connect.
# In this example we use port 3834 but you can use any other
# free port.
frontend forwarder
bind *:3834 # DTDG
mode tcp
default_backend datadog
# This is the Datadog server. In effect any TCP request coming
# to the forwarder frontend defined above will be proxied to
# Datadog's public endpoints.
backend datadog
balance roundrobin
mode tcp
option tcplog
server mothership app.datadoghq.com:443 check port 80
Once the HAProxy configuration is in place, you can reload it or restart HAProxy.
We recommend having a cron job that reloads HAProxy 10 minutes (usually doing something like service haproxy reload) to force a refresh of HAProxy's DNS cache, in case app.datadoghq.com fails over to another IP.
Then edit each agent to point to HAProxy by setting its dd_url to
the address of HAProxy (e.g. haproxy.example.com). This dd_url
setting can be found in datadog.conf.
dd_url: https://haproxy.example.com:3834
Before you restart the agent you will need to edit your supervisor configuration to disable SSL certificate verification. This is needed to prevent python from complaining about the discrepancy between the hostname on the SSL certificate (app.datadoghq.com) and your HAProxy hostname.
You need to edit the supervisor configuration found at:
-
/etc/dd-agent/supervisor_ddagent.confon debian-based systems -
/etc/dd-agent/supervisor.confon redhat-based systems -
/opt/local/datadog/supervisord/supervisord.confon SmartOS -
/usr/local/etc/datadog/supervisord/supervisord.confon FreeBSD -
~/.datadog-agent/supervisord/supervisord.confon Mac OS X
Assuming that file is found at SUP_FILE
sed -i 's/ddagent.py/ddagent.py --sslcheck=0/' SUP_FILEYou need to edit your configuration file (datadog.conf) and add this option:
skip_ssl_validation: yes
Finally restart the agent.
To verify that everything is working properly, you can review the HAProxy statistics at http://haproxy.example.com:3835 as well as the Infrastructure Overview