v1

latestSwagger 2.0MIT2026-07-1716717.0 KB

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

get/system/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

A map of labels for making scheduling or routing decisions

annotationsobject

A map of annotations for management, orchestration, events and build tasks

Example response

[
  {
    "name": "nodeinfo",
    "image": "functions/nodeinfo:latest",
    "invocationCount": 1337,
    "replicas": 2,
    "availableReplicas": 2,
    "envProcess": "node main.js",
    "labels": {
      "foo": "bar"
    },
    "annotations": {
      "topics": "awesome-kafka-topic",
      "foo": "bar"
    }
  }
]
All 16 operations