Kestra Plugin Count

Kestra Plugin Count

Certified

Count executions by filters

Counts executions matching namespace, flow, state, and date filters. Optional expression can zero-out the result when the rendered condition is not true.

yaml
type: io.kestra.plugin.kestra.executions.Count

Count successful executions in a namespace

yaml
id: count_success_executions
namespace: company.team

tasks:
  - id: count_success
    type: io.kestra.plugin.kestra.executions.Count
    kestraUrl: http://localhost:8080
    auth:
      username: "{{ secret('KESTRA_USERNAME') }}"
      password: "{{ secret('KESTRA_PASSWORD') }}"
    namespaces:
    - company.team
    states:
    - SUCCESS
    startDate: "{{ now() | dateAdd(-7, 'DAYS') }}"
    endDate: "{{ now() }}"
    expression: "{{ count >= 0 }}"

  - id: log_result
    type: io.kestra.plugin.core.log.Log
    message: |
        Execution count check completed.
        Matching executions: {{ outputs.count_success.count }}
Properties

Select API authentication

Use either an API token or HTTP Basic (username/password); do not provide both.

Definitions
apiTokenstring

API token for bearer auth

autobooleanstring
Defaulttrue

Automatically retrieve credentials from Kestra's configuration if available

The default configuration can be configured globally inside the Kestra configuration file:

  • Set kestra.tasks.sdk.authentication.api-token to use an API token
  • Set kestra.tasks.sdk.authentication.username and kestra.tasks.sdk.authentication.password for HTTP basic authentication The Enterprise edition also provides setting a default configuration at the Namespace of Tenant level by an administrator.
passwordstring

Password for HTTP Basic auth

usernamestring

Username for HTTP Basic auth

End date

Counts executions up to this date.

Expression evaluated on count

Rendered with variable count; if the expression does not return true, the exposed count is set to 0. Example: {{ gte count 5 }}.

Flow id filter

Override Kestra API endpoint

URL used for calls to the Kestra API. When null, renders {{ kestra.url }} from configuration; if still empty, defaults to http://localhost: 8080. Trailing slashes are stripped before use.

SubTypestring

Namespaces filter

Limit the search to these namespaces; leave empty for all.

Reference (ref) of the pluginDefaults to apply to this task.

Start date

Counts executions starting from this date.

SubTypestring
Possible Values
CREATEDSUBMITTEDRUNNINGPAUSEDRESTARTEDKILLINGSUCCESSWARNINGFAILEDKILLEDCANCELLEDQUEUEDRETRYINGRETRIEDSKIPPEDBREAKPOINTRESUBMITTEDUNKNOWN_DEFAULT_OPEN_API

Execution states

Only count executions currently in these states.

Override target tenant

Tenant identifier applied to API calls; defaults to the current execution tenant.

Execution count

The total number of executions.