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
What is the meaning of this function? What does it do?
It seems (I added logging) that the client always just sends the most recent snapshot to the server and all historical averaging is handled by the server.
And so data->payload is a one-element array containing only just the most recently collected data item. There is no historical data on the agent side.
Hello,
I'm making a Go port of Longview client here: https://github.com/kmansoft/longview-go
Have a question about constant_push
What is the meaning of this function? What does it do?
It seems (I added logging) that the client always just sends the most recent snapshot to the server and all historical averaging is handled by the server.
And so data->payload is a one-element array containing only just the most recently collected data item. There is no historical data on the agent side.
Is this correct?