How to Check if NodeJs IO loop is doing too much heavy task or not on Google App Engine?
39 views
Skip to first unread message
Sudhanshu Gaur
unread,
Apr 19, 2018, 1:50:11 PM4/19/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
I am running my NodeJs app on Google App Engine and as NodeJs IO loop runs in a single-threaded environment that's why i wanted to ask is there any way to check if my IO loop is doing heavy tasks or not ??
Jordan (Cloud Platform Support)
unread,
Apr 20, 2018, 3:02:22 PM4/20/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
You can use the Stackdriver Profiler tool to gain insights into the different processes under the main event loop that are consuming the most runtime resources. You can also simply profile the event loop yourself and log the results to Stackdriver Logging.