View Single Post
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 10-16-2020 , 07:42   Re: [CS:GO] Collecting statistics
Reply With Quote #2

...are we talking client side net_graph ?

Because server doesn't have it, next option is stats command, which print in console.
And it calculate all players together.
Server also doesn't know players fps.

You either take screenshot every second or take a video record last 60 seconds (nVidia have Instant Replay feature).

You can try play in your game, load map: map de_dust2
Then log console output to log file: con_timestamp 1; con_logfile myfile.log
Bind command in key: bind p stats
Hit p key every second.
stop logging: con_logfile ""


You have file in your game csgo folder, myfile.log.
Code:
10/16/2020 - 14:39:07:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 296.4   6840.1   9153.1      25     0  220.51       3    4.44    0.38    0.38
10/16/2020 - 14:39:08:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 296.4   6849.9   9145.5      25     0  191.05       3    5.15    0.53    0.54
10/16/2020 - 14:39:08:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 304.5   6851.9   9134.0      25     0  178.27       3    5.51    0.52    0.53
10/16/2020 - 14:39:08:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 304.5   6855.1   9127.1      25     0  213.66       3    4.58    0.53    0.55
10/16/2020 - 14:39:56:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 255.8   5197.9   9534.9      26     0  165.95       3    5.86    0.55    0.56
10/16/2020 - 14:39:56:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 255.8   5197.9   9687.3      26     0  196.48       3    4.99    0.55    0.56
10/16/2020 - 14:39:56:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
 255.8   5188.3   9740.8      26     0  205.83       3    4.75    0.45    0.48
10/16/2020 - 14:39:56:   CPU   NetIn   NetOut    Uptime  Maps   FPS   Players  Svms    +-ms   ~tick
  255.8   5182.5   9723.7      26     0  165.95       3    5.94    0.52    0.55



*edit
From server, you can create SM plugin which collect some data stream of specific player.
I had one bad example for now.
SM Data Rates
__________________
Do not Private Message @me

Last edited by Bacardi; 10-16-2020 at 07:45.
Bacardi is offline