Argo Workflows · Schema

io.argoproj.workflow.v1alpha1.Metrics

Metrics are a list of metrics emitted from a Workflow/Template

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
prometheus array Prometheus is a list of prometheus metrics to be emitted MaxItems is an artificial limit to limit CEL validation costs - see note at top of file
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-argoproj-workflow-v1alpha1-metrics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-argoproj-workflow-v1alpha1-metrics-schema.json",
  "title": "io.argoproj.workflow.v1alpha1.Metrics",
  "description": "Metrics are a list of metrics emitted from a Workflow/Template",
  "type": "object",
  "properties": {
    "prometheus": {
      "description": "Prometheus is a list of prometheus metrics to be emitted MaxItems is an artificial limit to limit CEL validation costs - see note at top of file",
      "type": "array",
      "items": {
        "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Prometheus"
      }
    }
  },
  "required": [
    "prometheus"
  ]
}