You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by cs...@apache.org on 2018/01/26 19:49:05 UTC

[incubator-openwhisk] branch master updated: Fix names of annotations. (#3222)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b3f0b64  Fix names of annotations. (#3222)
b3f0b64 is described below

commit b3f0b64ffafc171b2ed95b5a01bd46a3cfef39ed
Author: rodric rabbah <ro...@gmail.com>
AuthorDate: Fri Jan 26 14:49:02 2018 -0500

    Fix names of annotations. (#3222)
---
 docs/annotations.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/annotations.md b/docs/annotations.md
index 6b0ab8d..d92bf33 100644
--- a/docs/annotations.md
+++ b/docs/annotations.md
@@ -65,8 +65,8 @@ Additionally for sequence related activations, the system will generate the foll
 
 Lastly, and in order to provide you with some performance transparency, activations also record:
 
-* `wait`: the time spent waiting in the internal OpenWhisk system. This is roughly the time spent between the controller receiving the activation request and when the invoker provisioned a container for the action. This value is currently only present for non-sequence related activations. For sequences, this information can be derived from the `topmost` sequence activation record.
-* `init`: the time spent initializing the function. If this value is present, the action required initialization and represents a cold start. A warm activation will skip initialization, and in this case, the annotation is not generated.
+* `waitTime`: the time spent waiting in the internal OpenWhisk system. This is roughly the time spent between the controller receiving the activation request and when the invoker provisioned a container for the action. This value is currently only present for non-sequence related activations. For sequences, this information can be derived from the `topmost` sequence activation record.
+* `initTime`: the time spent initializing the function. If this value is present, the action required initialization and represents a cold start. A warm activation will skip initialization, and in this case, the annotation is not generated.
 
 An example of these annotations as they would appear in an activation record is shown below.
 
@@ -77,7 +77,7 @@ An example of these annotations as they would appear in an activation record is
     "value": "guest/echo"
   },
   {
-    "key": "wait",
+    "key": "waitTime",
     "value": 66
   },
   {
@@ -85,7 +85,7 @@ An example of these annotations as they would appear in an activation record is
     "value": "nodejs:6"
   },
   {
-    "key": "init",
+    "key": "initTime",
     "value": 50
   },
   {

-- 
To stop receiving notification emails like this one, please contact
csantanapr@apache.org.