I install openwhisk via kubernetes cluster. I invoke my actions through the API and also receive their logs via API. But in the log, it is only known whether the action is cold or warm, through initTime annotation. And it is not clear whether the cold action is executed on a cold container or preWarmed container. I tried to access this information through the user-events service and metrics endpoint via kubectl port forwarding and localhost:9095/metrics. But at this endpoint, only the cold start number is specified. How do I know if the action is executed on a prewarm container?
know if the Openwhisk action is executed on a prewarm container by receiving the log from API
330 views Asked by parichehr vahidinia At
1
There are 1 answers
Related Questions in PORTFORWARDING
- where is the port-forward rule file stored in vscode?
- Error in port forwarding when using kubectl
- Is it possible to enable port forwarding on SageMaker Studio Lab instance?
- how to manually set a port forward rule?
- Setting up HTML page on port 8083 in NGINX
- How do I receive TCP messages on an android Emulator from a physcal device
- Framework error on cloudflare global network
- Accessing Flask app running inside a Docker container
- How to perform dynamic port forwarding in rust?
- In which RFC is ssh dynamic tunneling specified?
- nginx configuration for accessing ActiveMQ Artemis web console inside minikube
- 2 Cloud SQL server port forward to cloud proxy vm
- Error connecting to psql database through tunnel on docker port
- Problems with Vscode port forwarding to localhost when using a tunnel to VPS
- How to access localhost:port by domain names
Related Questions in OPENWHISK
- wskdebug fails with ECONNREFUSED
- Pods unable to connect to connect to internet when using Minikube with --driver=none option
- How to register a custom container or invoker to the OpenWhisk controller for invocation
- Maintaining FIFO order of Kafka topic partitions in OpenWhisk
- Docker stats command shows zero CPU utilization for some containers but normal for others on the same node
- How do I increase the OpenWhisk standalone action runtime memory limit beyond 512MB?
- Equivalent of Apache OpenWhisk Action Sequences in OpenFaas
- can't run the openwhisk-node-simple-http-endpoint example locally
- How can I move the docker images directory to a remote server?
- Set property namespace in openwhisk wsk cli
- Accessing openwhisk playground UI in docker-compose deployment
- OpenWhisk cannot be installed in Microk8s due to error: serviceaccount "default" not found
- How to return compressed response in IBM Cloud Functions?
- Are there common "environment" variables in IBM Cloud functions (actions)?
- what is the difference between the serverless function instance and the container instance?
Related Questions in IBM-CLOUD-FUNCTIONS
- What is "X-Require-Whisk-Auth" (IBM Cloud Functions) in IBM Cloud Code Engine functions?
- How can i upload and read my excel file on ibm cloud function?
- IBM cloud Pak for business automation workflow
- IBM Cloud Functions + Cloudant (using Python)
- IBM Cloud Functions + Cloudant
- How do I call the REST API for an Action using IBM Cloud's Function in Postman?
- Getting no results from an IBM Cloud Function that uses IBM Cloudant
- How to connect IBM Watson Assistant to a MySQL Database?
- How to return compressed response in IBM Cloud Functions?
- Are there common "environment" variables in IBM Cloud functions (actions)?
- Can I use ES modules in IBM Cloud Functions (node.js) or is only Common JS supported?
- how can I add software pre-requisites to cloud foundry nodejs
- How to get remote IP from IBM Cloud functions
- Debugging IBM Cloud Function
- How to create IBM Cloud Event Streams trigger with terraform?
Related Questions in COLD-START
- Postgresql setup with lambda
- Firebase function gen2 not caching global variables
- Calling AmazonS3Client.GetObjectAsync() on lambda function take too long (~5s) on the first invoke
- kubernetes pod cold start time
- App Service on Linux WEBSITES_ENABLE_APP_CACHE actually read only volume?
- .NET 6 Lambda Cold Start
- How to get cold start metrics in flutter app for Android build?
- deploy express.js app on vercel with mongoDB (just for backend)
- Will cold start effect my azure function if it only captures the webhook, gets a value from dictionary and passes it to a topic
- Show App Open Ads only on'cold start ' - openigng app from device home screen app icon
- Despite implementing preferRest option, my Firebase Admin cold start latency still lingers, what could be the reason?
- AWS personalize limit on number of items considered when training
- Cloud Function Cold Start delays sending push notifications
- Cloud Run Don't Wait For Scale Up
- Delay between app process start and Application onCreate
Related Questions in KUBERNETES-CONTAINER
- Why is pod's memory almost double the pod's only container's memory with no ephemeral storage?
- How to see the full command used to run a container in a Kubernetes pod?
- Kubernetes service doesn't properly configure environment variables
- Can you make a kubernetes container deployment conditional on whether a configmap variable is set?
- How to mark Pod as ready if one of the containers has completed
- Unable to exec command into kubernetes pod
- How to reset K3s cluster pods
- How to deploy a microservice ( possible multiple instances) dependent on database in the same kubernetes cluster?
- Open port in all containers
- How to gracefully shutdown sidecar container when main container is completed
- Need input with passing commands in Kubernetes containers
- Kubernetes command and args in YAML file
- Is there a way to automatically restart a pod deployment if a container is unhealthy
- Is it possible to add a new Container once Pod is created?
- Sharing non-persistent volume between containers in a pod
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I think you can only get this information by looking through the invoker logs. I don't think we clearly distinguish between the two cases in the information that is directly associated with the activation.