Skip to content

Commit 4f19b22

Browse files
authored
Updated schema and table for pipeline runs
Fixes https://github.com/MicrosoftDocs/azure-docs/issues/85765
1 parent 4a2ddef commit 4f19b22

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

articles/data-factory/monitor-schema-logs-events.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ The following lists of attributes are used for monitoring.
8888
"start":"",
8989
"end":"",
9090
"status":"",
91+
"location": "",
9192
"properties":
9293
{
9394
"Parameters": {
@@ -97,7 +98,14 @@ The following lists of attributes are used for monitoring.
9798
"ExecutionStart": "",
9899
"TriggerId": "",
99100
"SubscriptionId": ""
100-
}
101+
},
102+
"Predecessors": [
103+
{
104+
"Name": "",
105+
"Id": "",
106+
"InvokedByType": ""
107+
}
108+
]
101109
}
102110
}
103111
```
@@ -116,6 +124,8 @@ The following lists of attributes are used for monitoring.
116124
|**start**| String | The start time of the activity runs in timespan UTC format. | `2017-06-26T20:55:29.5007959Z`. |
117125
|**end**| String | The end time of the activity runs in timespan UTC format. If the diagnostic log shows an activity has started but not yet ended, the property value is `1601-01-01T00:00:00Z`. | `2017-06-26T20:55:29.5007959Z` |
118126
|**status**| String | The final status of the pipeline run. Possible property values are `Succeeded` and `Failed`. | `Succeeded`|
127+
|**location**| String | The Azure region of the pipeline run. | `eastasia`|
128+
|**predecessors**| String | The calling object of the pipeline along with ID. | `Manual`|
119129

120130
### Trigger-run log attributes
121131

0 commit comments

Comments
 (0)