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
Copy file name to clipboardexpand all lines: docs/faq.md
+6
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,12 @@ copying to the Socket buffer and being read by the process.
73
73
Make sure the protocol you want to monitor is not HTTP2, as kyanos does not
74
74
currently support it.
75
75
76
+
## Why is the number of captured requests significantly less than the actual number of requests?
77
+
78
+
In high-traffic situations, kyanos may not be able to capture complete request data. Check the kyanos logs in the `/tmp` directory. If you see logs like `[dataReader] lost xx syscall data events`, it indicates this situation.
79
+
80
+
If you want to capture as many requests as possible, you can add the `--trace-dev-event=false --trace-socket-data` option. With this option, events of data passing through the network card and `socket buffer` will not be captured, and all processing power will be used to parse syscall data (currently, requests and responses are parsed through syscall data).
81
+
76
82
## Incorrect terminal table colors after running (e.g., unable to select records in the table)
0 commit comments