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
* don't display sarama.OffsetNewest / sarama.OffsetOldest values. instead,
display `null`. displaying -1/-2 led to incorrect lag calculation #62 and
confusion when reading the results. i hope `null` is more explicit in that no
offset has been marked for this topic/group/partition combination.
* don't display a result when no offset has been marked. instead display
`null`. cf #62
* change result output structure from:
{"name": "grp", "topic": "news", "offsets": {"1": {"offset": 2, "lag": 23}}}
to
{"name": "grp", "topic": "news", "offsets": [{"partition": 1, "offset": 2, "lag": 23}]}
when offset is sarama.OffsetNewest (-1), the lag is computed incorrectly:
The text was updated successfully, but these errors were encountered: