You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -302,6 +304,37 @@ The VPCs with Private Hosted Zone (PHZ) attached need to have a couple of settin
302
304
303
305
{{% /site-region %}}
304
306
307
+
## Verify that data is being sent using PrivateLink
308
+
309
+
After setting up PrivateLink, to verify that data is getting sent using PrivateLink, run the `dig` command on a machine that is on that VPC. For example, run this command if you had set up a PrivateLink for the endpoint `http-intake.logs.datadoghq.com`:
310
+
311
+
```
312
+
dig http-intake.logs.datadoghq.com
313
+
```
314
+
315
+
If logs are being sent over PrivateLink, the `ANSWER Section` section of the output shows `http-intake.logs.datadoghq.com` like in the following example. **Note**: The IP addresses you get back should be in [private IP space][1].
316
+
317
+
```
318
+
;; ANSWER SECTION:
319
+
http-intake.logs.datadoghq.com. 60 IN A 172.31.57.3
320
+
http-intake.logs.datadoghq.com. 60 IN A 172.31.3.10
321
+
http-intake.logs.datadoghq.com. 60 IN A 172.31.20.174
322
+
http-intake.logs.datadoghq.com. 60 IN A 172.31.34.135
323
+
```
324
+
325
+
If logs are not being sent over PrivateLink, the `ANSWER SECTION` of the output shows the load balancer (`4-logs-http-s1-e721f9c2a0e65948.elb.us-east-1.amazonaws.com`) to which the logs are getting sent.
326
+
327
+
```
328
+
;; ANSWER SECTION:
329
+
http-intake.logs.datadoghq.com. 177 IN CNAME http-intake-l4.logs.datadoghq.com.
330
+
http-intake-l4.logs.datadoghq.com. 173 IN CNAME l4-logs-http-s1-e721f9c2a0e65948.elb.us-east-1.amazonaws.com.
331
+
l4-logs-http-s1-e721f9c2a0e65948.elb.us-east-1.amazonaws.com. 42 IN A 3.233.158.48
332
+
l4-logs-http-s1-e721f9c2a0e65948.elb.us-east-1.amazonaws.com. 42 IN A 3.233.158.49
333
+
l4-logs-http-s1-e721f9c2a0e65948.elb.us-east-1.amazonaws.com. 42 IN A 3.233.158.50
0 commit comments