TopicStatistics.msg 722 B

1234567891011121314151617181920212223242526272829303132
  1. # name of the topic
  2. string topic
  3. # node id of the publisher
  4. string node_pub
  5. # node id of the subscriber
  6. string node_sub
  7. # the statistics apply to this time window
  8. time window_start
  9. time window_stop
  10. # number of messages delivered during the window
  11. int32 delivered_msgs
  12. # numbers of messages dropped during the window
  13. int32 dropped_msgs
  14. # traffic during the window, in bytes
  15. int32 traffic
  16. # mean/stddev/max period between two messages
  17. duration period_mean
  18. duration period_stddev
  19. duration period_max
  20. # mean/stddev/max age of the message based on the
  21. # timestamp in the message header. In case the
  22. # message does not have a header, it will be 0.
  23. duration stamp_age_mean
  24. duration stamp_age_stddev
  25. duration stamp_age_max