Jetpack’s Stats module supports Custom Post Types. As long as the template you use to display the Post Type includes the wp_footer() action, Stats should work.
I hope this helps.
Good afternoon Jeremy. Thanks for the feedback. I’m still learning to use the WP and would like a simpler explanation of the foot.php. Would you help me?
I’d suggest looking at how the default WordPress themes, like Twenty Sixteen, do it:
https://github.com/WordPress/twentysixteen/blob/master/footer.php#L57
That whole footer.php file is called by another function, get_footer(). You’ll find that function in just about any WordPress theme including a footer:
https://github.com/WordPress/twentysixteen/blob/master/index.php#L62
https://developer.wordpress.org/reference/functions/get_footer/