Is there a way to view logs of http requests to my running service?

Say I have a service running at https://my-project.koyeb.app/, is there a way to view a log of requests to that service?

Hey!

You have two ways to do that:

  • Log to stdout or stderr whenever a request is handled by your http server. I believe that most frameworks will let you configure them to do that automatically for you. Those logs will show up in the Runtime Logs window in your service view.
  • Check out the Metrics tab. The throughput graph will show the number of requests that hit your service and the response code of your server

Hope that helps :slightly_smiling_face: