You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openwhisk.apache.org by OpenWhisk Team Slack <ra...@apache.org> on 2010/01/01 00:01:01 UTC

[slack-digest] [2022-04-14] #general

2022-04-14 11:41:44 UTC - Jesse Stutler: Hi, I’m trying to deploy system metrics components from here: <https://github.com/apache/openwhisk/blob/master/docs/metrics.md>, but there is no data visualized on Grafana. What does I miss? I have already configured the `group_vars/all`
. The kamon_host is my bare metal machine’s ip, running controller and scheduler containers.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1649936504642139
----
2022-04-14 22:30:00 UTC - Areej: I am running  open whisk  on Ubuntu 20 and I test it with hello action it is working fine .. when I create  a simple action  to expose an external api : *import* requests
*#import cv2*


*def main*(parm):
  r=requests.get(*‘<http://admin:4321a@ipaddress:5984/videofile/004?attachments=true>’*)
  *print* (r)
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1649975400984299
----
2022-04-14 22:31:04 UTC - Areej: when I invoke this action the logs output is : stderr: The action did not initialize or run as expected. Log data might be missing.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1649975464827809
----
2022-04-14 22:31:33 UTC - Areej: and the result : {
  “error”: “The action exceeded its time limits of 60000 milliseconds.”
}
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1649975493142859
----
2022-04-14 22:54:39 UTC - Rodric Rabbah: This typically means your http request timed out; is that ip address accessible from inside the cluster? Or inside the function container? The function timedout suggesting a networking issue. 
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1649976879722649?thread_ts=1649976879.722649&cid=C3TPCAQG1
----
2022-04-14 23:37:38 UTC - Areej: the ip address is accessible from my server but how can  ckeck if it is accessible  from function container?
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1649979458285819
----