Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to monitor Meteor.com server-side logs

Tags:

logging

meteor

I'm looking for a way to get the server logs from a Meteor app deployed as myapp.meteor.com. Ideally, a configuration or package I can use which will send in real-time the logs of the remote server to a local terminal (Linux/OSX). Is there a straight forward way to achieve this?

like image 804
tivoni Avatar asked Sep 24 '14 23:09

tivoni


1 Answers

Use the built in meteor command to load the most recent logs:

meteor logs myapp.meteor.com

Works with meteor mongo too!

like image 58
user54580 Avatar answered Oct 20 '22 19:10

user54580