TS-4931: Add process limits to crash logs.#1077
Merged
jpeach merged 1 commit intoapache:masterfrom Oct 4, 2016
Merged
Conversation
Add /proc/$PID/limits to the crash log. This helps give context to malloc failures because we can get a reliable snapshot of any process limits in effect at the time.
|
FreeBSD build successful! See https://ci.trafficserver.apache.org/job/Github-FreeBSD/930/ for details. |
|
Linux build successful! See https://ci.trafficserver.apache.org/job/Github-Linux/824/ for details. |
SolidWallOfCode
pushed a commit
to SolidWallOfCode/trafficserver
that referenced
this pull request
Sep 7, 2019
Multiple outbound IP addresses can be specified per server port or globally per IP family. They will be used in round robin order. E.g. # Outbound connections for requests on port 8090 will use 127.0.0.15, 127.0.0.16, 127.0.0.17 as the local address while those on port 443 will use 127.0.0.20,127.0.0.21,127.0.0.22. # For requests on port 8080, outbound connections will use the global outbound addresses 127.0.0.10, 127.0.0.11 and 127.0.0.12. # Same logic applies for incoming IPv6 and when the upstream destination address is IPv6. CONFIG proxy.config.http.server_ports STRING 8080 8080:ipv6 8090:ip-out=127.0.0.15;127.0.0.16;127.0.0.17 8090:ipv6:ip-out=[fe80::42:acff:fe11:2000:0000:0004];[fe80::42:acff:fe11:2000:0000:0005] 443:ssl:proto=http2:ip-out=127.0.0.20;127.0.0.21;127.0.0.22 LOCAL proxy.local.outgoing_ip_to_bind STRING 127.0.0.10 [fe80::42:acff:fe11:2000:0000:0000] 127.0.0.11 [fe80::42:acff:fe11:2000:0000:0001] 127.0.0.12 [fe80::42:acff:fe11:2000:0000:0002]
bneradt
pushed a commit
to bneradt/trafficserver
that referenced
this pull request
Jan 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add /proc/$PID/limits to the crash log. This helps give context to
malloc failures because we can get a reliable snapshot of any process
limits in effect at the time.