We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The wiki says for multi get https://github.com/imvu-open/istatd/wiki/Get-multiple-counters says to use a JSON like
{ "start": START, "end": END, "maxSamples": MAX, "keys": ["counter.name", "yet.another.counter.name"], "trailing": 0 }
But it should be stop instead of end
stop
end
However, sometimes end is used instead of stop.
in the response documentation we have
{ "start": int, "end": int, "counter.name": { "interval": int, "data": [ { "time": int,
what it really is:
{ "start": int, "stop": int, "counter.name": { "interval": int, "data": [ { "start": int, "end": int, "time": int,
So we are not documenting that there is time interval in the bucket counter object and it uses end unlike the other intervals which use stop.
We should pick one convention and stick with it, and also update the documentation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The wiki says for multi get https://github.com/imvu-open/istatd/wiki/Get-multiple-counters
says to use a JSON like
But it should be
stop
instead ofend
However, sometimes
end
is used instead ofstop
.in the response documentation we have
what it really is:
So we are not documenting that there is time interval in the
bucketcounter object and it usesend
unlike the other intervals which usestop
.We should pick one convention and stick with it, and also update the documentation.
The text was updated successfully, but these errors were encountered: