You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by bd...@apache.org on 2022/05/26 05:40:11 UTC

[openwhisk] branch master updated: update action container metrics subactions to action instead of namespace (#5246)

This is an automated email from the ASF dual-hosted git repository.

bdoyle pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 57be429ed update action container metrics subactions to action instead of namespace (#5246)
57be429ed is described below

commit 57be429ed28d93167472ac3b1bc0f670498cddfb
Author: Brendan Doyle <bd...@gmail.com>
AuthorDate: Wed May 25 22:40:05 2022 -0700

    update action container metrics subactions to action instead of namespace (#5246)
    
    Co-authored-by: Brendan Doyle <br...@qualtrics.com>
---
 common/scala/src/main/scala/org/apache/openwhisk/common/Logging.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/scala/src/main/scala/org/apache/openwhisk/common/Logging.scala b/common/scala/src/main/scala/org/apache/openwhisk/common/Logging.scala
index db39081fe..caba798d7 100644
--- a/common/scala/src/main/scala/org/apache/openwhisk/common/Logging.scala
+++ b/common/scala/src/main/scala/org/apache/openwhisk/common/Logging.scala
@@ -377,14 +377,14 @@ object LoggingMarkers {
       scheduler,
       "actionContainer",
       counter,
-      Some(namespace),
+      Some(action),
       Map("namespace" -> namespace, "action" -> action))(MeasurementUnit.none)
   def SCHEDULER_ACTION_INPROGRESS_CONTAINER(namespace: String, action: String) =
     LogMarkerToken(
       scheduler,
       "actionInProgressContainer",
       counter,
-      Some(namespace),
+      Some(action),
       Map("namespace" -> namespace, "action" -> action))(MeasurementUnit.none)
 
   /*