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 field expire_at should show the remaining time using the units seconds, minutes, hours, days, and weeks. Larger time units such as months and years should be avoided because they do not have fixed sizes; for example, a month can be 28, 29, 30, or 31 days long. Expired flows should show the field expire_at as "EXPIRED " where "" is the same format used for a flow that is not expired.
The field program_index should include the name of the BPF.
The log entry should include rte_rdtsc() to help one read the cookie since BPFs often use ctx->now.
The text was updated successfully, but these errors were encountered:
A log entry with information on a dumped flow looks like this:
This log entry can be improved as follows:
expire_at
should show the remaining time using the units seconds, minutes, hours, days, and weeks. Larger time units such as months and years should be avoided because they do not have fixed sizes; for example, a month can be 28, 29, 30, or 31 days long. Expired flows should show the fieldexpire_at
as "EXPIRED " where "" is the same format used for a flow that is not expired.program_index
should include the name of the BPF.rte_rdtsc()
to help one read the cookie since BPFs often usectx->now
.The text was updated successfully, but these errors were encountered: