get_dataset_events
Retrieve dataset events from Apache Airflow to monitor data dependencies and track dataset-related activities in workflows.
Instructions
Get dataset events
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataset_id | No | ||
| limit | No | ||
| offset | No | ||
| order_by | No | ||
| source_dag_id | No | ||
| source_map_index | No | ||
| source_run_id | No | ||
| source_task_id | No |
Input Schema (JSON Schema)
{
"properties": {
"dataset_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Dataset Id"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
},
"order_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order By"
},
"source_dag_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Dag Id"
},
"source_map_index": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Map Index"
},
"source_run_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Run Id"
},
"source_task_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Task Id"
}
},
"type": "object"
}