How do I access the server logs of a Prisma Cloud ...
# orm-help
c
How do I access the server logs of a Prisma Cloud server? I would like to find some more details on a
Whoops. Looks like an internal server error.
d
You can use
docker ps
to find the prisma container name and then use
docker logs <container-name>
to see the log trail.
c
That would work for local Prisma servers, I guess. How about remote Prisma Cloud servers?
d
Prisma logs to
stdout
, while running inside docker we can use
docker logs
depending on your setup.. you might want to relay docker logs to a logging service like cloud watch - https://cloudonaut.io/a-simple-way-to-manage-log-messages-from-containers-cloudwatch-logs/
Does that answer your question?