v1

latestSwagger 2.0Apache22026-07-178513.9 KB

Get a list of deployed functions with: stats and image digest

get/functions

Response

List of deployed functions.

namestring required

The name of the function

imagestring required

The fully qualified docker image name of the function

invocationCountnumber required

The amount of invocations for the specified function

replicasnumber required

The current minimal ammount of replicas

availableReplicasnumber required

The current available amount of replicas

envProcessstring required

Process for watchdog to fork

labelsobject required
annotationsobject

Example response

[
  {
    "image": "functions/nodeinfo:latest",
    "envProcess": "node main.js",
    "replicas": 2,
    "name": "nodeinfo",
    "invocationCount": 1337,
    "annotations": {
      "key": "annotations"
    },
    "availableReplicas": 2,
    "labels": {
      "key": "labels"
    }
  }
]