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
The current DHCPv4 protocol implementation does not associate requests with responses. The protocol is not strictly request -> response or simply one request, one response (there can be one response from each DHCP server for a high-availability deployment).
I think response times could be measured for both discover/offer and request/ack exchanges.
DHCPDISCOVER -> DHCPOFFER (multiple offers are possible)
Send one event for each offer so that we report the response time for each server.
The DHCPv4 protocol dataset works on uni-flows (it's not transacted, see elastic#7956) so
the `source` and `destination` will indicate the original packet header data. Meanwhile
the `client` / `server` fields are copies of the `source`/`destination`, but they are
copied based on which side is the client and server.
Here's a summary of what fields changed.
Part of elastic#7968
Changed
- bytes_in -> source.bytes
- transport -> network.transport = udp
Added
- source
- destination
- event.dataset = dhcpv4
- event.start
- network.bytes
- network.community_id
- network.protocol = dhcpv4
- network.type
Unchanged Packetbeat Fields
- status
- type = dhcpv4 (we might remove this since we have event.dataset)
The DHCPv4 protocol dataset works on uni-flows (it's not transacted, see #7956) so
the `source` and `destination` will indicate the original packet header data. Meanwhile
the `client` / `server` fields are copies of the `source`/`destination`, but they are
copied based on which side is the client and server.
Here's a summary of what fields changed.
Part of #7968
Changed
- bytes_in -> source.bytes
- transport -> network.transport = udp
Added
- source
- destination
- event.dataset = dhcpv4
- event.start
- network.bytes
- network.community_id
- network.protocol = dhcpv4
- network.type
Unchanged Packetbeat Fields
- status
- type = dhcpv4 (we might remove this since we have event.dataset)
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
The current DHCPv4 protocol implementation does not associate requests with responses. The protocol is not strictly request -> response or simply one request, one response (there can be one response from each DHCP server for a high-availability deployment).
I think response times could be measured for both discover/offer and request/ack exchanges.
original comment: #7647 (comment)
The text was updated successfully, but these errors were encountered: