Sifflet RunRule

Sifflet RunRule

Certified

Trigger a Sifflet data quality rule

Call Sifflet's /api/v1/rules/{ruleId}/_run endpoint to launch a rule run. Inputs are rendered with the Run Context; defaults include https://api.siffletdata.com and a 30s timeout.

yaml
type: io.kestra.plugin.sifflet.RunRule

Run a Sifflet rule

yaml
id: sifflet_flow
namespace: company.team
tasks:
  - id: run_rule
    type: io.kestra.plugin.sifflet.RunRule
    apiKey: "{{ secret('SIFFLET_API_KEY') }}"
    ruleId: "rule-123"
    baseUrl: "https://api.siffletdata.com"

Run with default base URL and custom timeout

yaml
id: sifflet_flow
namespace: company.team
tasks:
  - id: run_rule_timeout
    type: io.kestra.plugin.sifflet.RunRule
    apiKey: "{{ secret('SIFFLET_API_KEY') }}"
    ruleId: "rule-456"
    requestTimeout: 60
Properties

Sifflet API key

Bearer token for the Sifflet API; renderable and should be stored as a secret

Sifflet API base URL

Base URL for the Sifflet API; defaults to https://api.siffletdata.com when omitted

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

Default30

Request timeout

Timeout in seconds for both connection and request; defaults to 30

Rule ID

Identifier of the Sifflet rule to execute; required for a valid call and rendered before the request

Raw response from the Sifflet API

The ID of the executed rule

Status of the rule execution (SUCCESS or FAILED)

HTTP status code from the API response