Websocket User Data Streams and getting Order Information

Good afternoon.
I use websocket and userDataStream to get information about my orders, but in addition to this, the server’s response comes with a lot of extra information that is not specifically related to orders. Is it possible to receive data only about orders? After all, constantly process the entire incoming response from the server to waste CPU time on unnecessary work once again. Maybe it is planned to enter some additional parameters in the request: https://api.binance.com/api/v3/userDataStream to get the necessary information?
Now I get a lot of additional but not needed information in the server response:

{"e":"executionReport","E":1588149887257,"s":"KAVABTC","c":"web_f03b12251b654e8898a6594b8b4e1d13","S":"SELL","o":"LIMIT","f":"GTC","q":"17.00000000","p":"0.00008000","P":"0.00000000","F":"0.00000000","g":-1,"C":"web_1b6e49cd06094ed183371d9017dd919c","x":"CANCELED","X":"CANCELED","r":"NONE","i":31309708,"l":"0.00000000","z":"0.00000000","L":"0.00000000","n":"0","N":null,"T":1588149887257,"t":-1,"I":65120156,"w":false,"m":false,"M":false,"O":1588149793775,"Z":"0.00000000","Y":"0.00000000","Q":"0.00000000"}
{"e":"outboundAccountInfo","E":1588149887257,"m":10,"t":10,"b":0,"s":0,"T":true,"W":true,"D":true,"u":1588149887257,"B":[{"a":"BTC","f":"0.00021714","l":"0.00000000"},{"a":"LTC","f":"0.0000000......................

and many more lines of text.

Thanks in advance for your reply.

These data is essential for most users, where they can sync their orders and account balance.
The incoming messages can be identified by “e”, please simplify discard the message if not required in your side.