We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add access logs to the controller, logging the following connections to controllers:
Event Type reference:
type ConnectSource string const ( ConnectEventNS = "connect" ConnectSourceRouter ConnectSource = "router" ConnectSourcePeer ConnectSource = "peer" ConnectSourceIdentity ConnectSource = "identity" ) type ConnectEvent struct { Namespace string `json:"namespace"` SrcType ConnectSource `json:"src_type"` SrcId string `json:"src_id"` SrcAddr string `json:"src_addr"` DstId string `json:"dst_id"` DstAddr string `json:"dst_addr"` Timestamp time.Time `json:"timestamp"` }
Example events:
{ "namespace": "connect", "src_type": "identity", "src_id": "ji2Rt8KJ4", "src_addr": "127.0.0.1:59336", "dst_id": "ctrl_client", "dst_addr": "localhost:1280/edge/management/v1/edge-routers/2L7NeVuGBU", "timestamp": "2024-10-02T12:17:39.501821249-04:00" } { "namespace": "connect", "src_type": "router", "src_id": "2L7NeVuGBU", "src_addr": "127.0.0.1:42702", "dst_id": "ctrl_client", "dst_addr": "127.0.0.1:6262", "timestamp": "2024-10-02T12:17:40.529865849-04:00" } { "namespace": "connect", "src_type": "peer", "src_id": "ctrl2", "src_addr": "127.0.0.1:40056", "dst_id": "ctrl1", "dst_addr": "127.0.0.1:6262", "timestamp": "2024-10-02T12:37:04.490859197-04:00" }
The text was updated successfully, but these errors were encountered:
Any guidance on when this feature will be added?
Sorry, something went wrong.
I'll see if I can get it in the next release with HA Beta 1.
Add controller connect events. Fixes #1835
cdf631e
f86464f
Add controller connect events. Fixes #1835. Fixes #2234
2cd50de
16f0a85
plorenz
No branches or pull requests
Add access logs to the controller, logging the following connections to controllers:
Event Type reference:
Example events:
The text was updated successfully, but these errors were encountered: