有没有办法在 firebase 控制台中查看每个 firebase 函数的调用次数?

Is there an way to see a number of invocation per firebase function in the firebase console?

我们在最近的项目中使用了 Firebase 平台。我们最近推出并一直在监控使用情况。

我可以在 firebase 控制台中看到 firebase 调用的总数,但找不到查看每个函数的调用次数的方法..

请问有什么方法可以看到这些数字吗?

我们想找到最常用的 firebase 函数。

我们可以预计哪些 firebase 函数将被最常使用,但想知道调用的确切数量。

Firebase 控制台不提供每个函数的调用细分,但 Cloud 控制台提供。而且由于每个Firebase项目也是云平台上的一个项目,您可以切换到console.cloud.google.com获取更详细的信息。

由于云控制台的导航有点棘手,以下是步骤:

  1. 转到console.cloud.google.com
  2. 如果需要请登录。
  3. Select 从顶部的下拉列表中选择您的项目。
  4. 在项目名称旁边的搜索框 () 中,键入 select Cloud Functions
  5. 您现在会看到项目中的函数列表。
  6. 单击要查看其调用的函数的名称。
  7. 您现在将看到调用图表。

来自我的一个项目: