Hi, David, I didn't find a wiki page that contains the descriptions of all Samza metrics. You can find the basic metrics by googling the following classes: SamzaContainerMetrics, TaskInstanceMetrics, SystemConsumersMetrics and SystemProducersMetrics. For your example, you can use the "process-calls" in SamzaContainerMetrics to get the processed message count, and divide the delta by time to get the messages processed per sec. In practice, you can either use JConsole to connect to the running Samza container or consume the MetricsSnapshot topic to get the detailed metrics.
Thanks, Xinyu On Tue, Feb 23, 2016 at 4:51 PM, David Yu <david...@optimizely.com> wrote: > Hi, > > Where can I find the detailed descriptions of the out of the box metrics > provided by MetricsSnapshotReporterFactory and JmxReporterFactory? > > I'm interested in seeing the basic metrics of the my samza job (e.g. > messages_processed_per_sec). But it's hard to ping point to the specific > metric that shows me that. > > Thanks, > David >