Google Cloud Trace 192.168.1.1

On the Trace page of the Google Cloud Console, I can see the address 192.168.1.1, which takes a long time to complete. What is this address? Where from? Is it from the internal cloud infrastructure? Or is this my local address (if possible)? enter image description here

+3


source to share


1 answer


After talking to Google Cloud Support, it appears that 192.168.1.1 is exactly the IP address of the computer running the Google Cloud Function. But the interesting thing is that this address appears only if it console.*

is in the code. So, for example, I use console.log

google logging to log something.

And in the screenshot, there are multiple calls to this address. At the top, we see long running live calls, these are calls with a saved console.log connection. And, for example, the last call lasts only 3ms and is closed immediately. This console.log is called right at the end of the request.



Hope this can help someone.

+2


source







All Articles