Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find Stackdriver in Firebase console?

I've read in this article that Firestore has launched Stackdriver (in beta) so we can monitor Cloud Firestore read, write and delete operations in near-real time but where can I find it in Firebase console?

like image 598
Oleg Caralanski Avatar asked Feb 02 '19 10:02

Oleg Caralanski


People also ask

How do I use Firebase CLI?

The Firebase Command Line Interface (CLI) Tools can be used to test, manage, and deploy your Firebase project from the command line. To get started with the Firebase CLI, read the full list of commands below or check out the documentation. You can install the Firebase CLI using npm (the Node Package Manager).

How to get Android app config file from Firebase?

Note that you can also obtain your Android app's config file via REST API (projects.androidApps.getConfig). Get config object for your web app Go to your Project settings in the Firebase console.

How do I view logs in Firebase?

To view logs with the firebase tool, use the functions:log command: To view logs for a specific function, provide the function name as an argument: For the full range of log viewing options, view the help for functions:log: You can view logs for Cloud Functions from the Firebase console.

How do I login to Firebase without starting a local server?

Append --no-localhost to login (i.e., firebase login --no-localhost) to copy and paste code instead of starting a local server for authentication. A use case might be if you SSH into an instance somewhere and you need to authenticate to Firebase on that machine. Create a new Firebase app in a project. List the registered apps of a Firebase project.


1 Answers

You have to go to the Google Cloud Console and not to the Firebase console.

The URL is https://console.cloud.google.com/home/dashboard?project=xxxxxx

There you will find a set of vertical menu items about Stackdriver. You should use the Monitoring menu item to open the Stackdriver console.

enter image description here

Then once in the Stackdriver console, you should open the Resources menu and create a new Metric for your Firestore instance, as shown below:

enter image description here


BTW, Doug Stevenson has recently published a couple of posts which cover (among others) some of the link/differences between the two consoles: https://medium.com/google-developers/firebase-google-cloud-whats-different-with-cloud-functions-612d9e1e89cb and https://medium.com/google-developers/whats-the-relationship-between-firebase-and-google-cloud-57e268a7ff6f

like image 69
Renaud Tarnec Avatar answered Sep 21 '22 23:09

Renaud Tarnec