Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(fix)Python: changing outdated IPs #19003

Merged
merged 1 commit into from
Oct 18, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ dig collector.newrelic.com
[output] ;collector.newrelic.com. IN A
[output]
[output] ;; ANSWER SECTION:
[output] collector.newrelic.com. 2453 IN A 50.31.164.140
[output] collector.newrelic.com. 2453 IN A 162.247.243.32
[output]
[output] ;; AUTHORITY SECTION:
[output] newrelic.com. 1163 IN NS ns2.p21.dynect.net.
Expand Down Expand Up @@ -178,9 +178,9 @@ If you cannot contact the data collector host, configure the agent to use any fi
>
```sh
ping collector.newrelic.com
[output] PING collector.newrelic.com (50.31.164.140): 56 data bytes
[output] 64 bytes from 50.31.164.140: icmp_seq=0 ttl=239 time=234.204 ms
[output] 64 bytes from 50.31.164.140: icmp_seq=1 ttl=239 time=230.095 ms
[output] PING collector.newrelic.com (162.247.243.32): 56 data bytes
[output] 64 bytes from 162.247.243.32: icmp_seq=0 ttl=239 time=234.204 ms
[output] 64 bytes from 162.247.243.32: icmp_seq=1 ttl=239 time=230.095 ms
[output] ...
```
</Collapser>
Expand All @@ -193,20 +193,20 @@ If you cannot contact the data collector host, configure the agent to use any fi

```sh
traceroute -p 80 collector.newrelic.com
[output] traceroute to collector.newrelic.com (50.31.164.140), 64 hops max, 52 byte packets
[output] traceroute to collector.newrelic.com (162.247.243.32), 64 hops max, 52 byte packets
[output] 1 ...
[output] 2 ...
[output] 3 ...
[output] 4 * * *
[output] 5 collector.newrelic.com (50.31.164.140) 232.590 ms 231.000 ms 232.041 ms
[output] 5 collector.newrelic.com (162.247.243.32) 232.590 ms 231.000 ms 232.041 ms

traceroute -p 443 collector.newrelic.com
[output] traceroute to collector.newrelic.com (50.31.164.140), 64 hops max, 52 byte packets
[output] traceroute to collector.newrelic.com (162.247.243.32), 64 hops max, 52 byte packets
[output] 1 ...
[output] 2 ...
[output] 3 ...
[output] 4 * * *
[output] 5 collector.newrelic.com (50.31.164.140) 253.513 ms 231.134 ms 232.511 ms
[output] 5 collector.newrelic.com (162.247.243.32) 253.513 ms 231.134 ms 232.511 ms
```
</Collapser>
</CollapserGroup>
Loading