You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-limits-and-config.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The following table lists the values that apply to a single workflow definition
46
46
|`description` - Maximum length | 256 characters ||
47
47
|`parameters` - Maximum number of parameters per workflow | - Consumption: 50 parameters <br><br>- Standard: 500 parameters ||
48
48
|`outputs` - Maximum number of outputs | 10 outputs ||
49
-
|`trackedProperties` - Maximum number of characters | 8,000 characters ||
49
+
|`trackedProperties` - Maximum number of characters | 8,000 characters | Each action supports a JSON object named `trackedProperties` that you can use to specify certain action inputs or outputs to emit from your workflow and include in diagnostic telemetry. For more information, see [Monitor and collect diagnostic data for workflows](monitor-workflows-collect-diagnostic-data.md#tracked-properties). |
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-workflow-actions-triggers.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -547,10 +547,15 @@ For more information plus examples for this trigger, see [Create and schedule re
547
547
548
548
This trigger makes your logic app callable by creating an endpoint that can accept incoming requests. For this trigger, provide a JSON schema that describes and validates the payload or inputs that the trigger receives from the incoming request. The schema also makes trigger properties easier to reference from later actions in the workflow.
549
549
550
+
> [!NOTE]
551
+
>
552
+
> The orignal name for the **Request** trigger was **manual**, which might still appear in some places. This
553
+
> name changed to create more consistency around the kind of workflow pattern that you use the trigger to build.
554
+
550
555
To call this trigger, you must use the `listCallbackUrl` API, which is described in the [Workflow Service REST API](/rest/api/logic/workflows). To learn how to use this trigger as an HTTP endpoint, see [Call, trigger, or nest workflows with HTTP endpoints](../logic-apps/logic-apps-http-endpoint.md).
551
556
552
557
```json
553
-
"manual": {
558
+
"Request": {
554
559
"type": "Request",
555
560
"kind": "Http",
556
561
"inputs": {
@@ -599,7 +604,7 @@ To call this trigger, you must use the `listCallbackUrl` API, which is described
599
604
This trigger specifies that an incoming request must use the HTTP POST method to call the trigger and includes a schema that validates input from the incoming request:
Copy file name to clipboardExpand all lines: articles/logic-apps/monitor-workflows-collect-diagnostic-data.md
+28-7Lines changed: 28 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -360,7 +360,15 @@ If you don't specify this custom tracking ID, Azure automatically generates this
360
360
361
361
### Tracked properties
362
362
363
-
Actions have a **Tracked Properties** section where you can specify a custom property name and value by entering an expression or hardcoded value to track specific inputs or outputs, for example:
363
+
Each action has a **Tracked Properties** section where you can specify the name and value for a custom property by entering an expression or hardcoded value to track specific inputs or outputs that you want to emit from your workflow and include in diagnostic telemetry.
364
+
365
+
- Tracked properties aren't allowed on a trigger or action that has secure inputs, secure outputs, or both. They're also not allowed to reference another trigger or action that has secure inputs, secure outputs, or both.
366
+
367
+
- Tracked properties can track only a single action's inputs and outputs, but you can use the `correlation` properties of events to correlate across actions in a workflow run.
368
+
369
+
- Tracked properties can only reference the parameters, inputs, and outputs for its own trigger or action.
370
+
371
+
Based on whether you have a Consumption or Standard logic app workflow, the following screnshots where you can find the **Tracked Properties** section on an action:
364
372
365
373
### [Consumption](#tab/consumption)
366
374
@@ -372,11 +380,24 @@ Actions have a **Tracked Properties** section where you can specify a custom pro
372
380
373
381
---
374
382
375
-
Tracked properties can track only a single action's inputs and outputs, but you can use the `correlation` properties of events to correlate across actions in a workflow run.
376
-
377
-
Tracked properties can only reference the parameters, inputs, and outputs for its own trigger or action.
378
-
379
-
Tracked properties aren't allowed on a trigger or action that has secure inputs, secure outputs, or both. They're also not allowed to reference another trigger or action that has secure inputs, secure outputs, or both.
383
+
In your workflow's underlying JSON defintion, the JSON object is named `trackedProperties` and appears as a sibling to the action's `type` and `runAfter` properties, for example:
384
+
385
+
```json
386
+
{
387
+
"Http": {
388
+
"inputs": {
389
+
"method": "GET",
390
+
"uri": "https://www.bing.com"
391
+
},
392
+
"runAfter": {},
393
+
"type": "Http",
394
+
"trackedProperties": {
395
+
"responseCode": "@action().outputs.statusCode",
396
+
"uri": "@action().inputs.uri"
397
+
}
398
+
}
399
+
}
400
+
```
380
401
381
402
The following examples show where custom properties appear in your Log Analytics workspace:
382
403
@@ -402,7 +423,7 @@ The custom tracking ID appears in the **ClientTrackingId** column and tracked pr
402
423
403
424
---
404
425
405
-
## Next steps
426
+
## Related content
406
427
407
428
*[Create monitoring and tracking queries](create-monitoring-tracking-queries.md)
408
429
*[Monitor B2B messages with Azure Monitor Logs](monitor-b2b-messages-log-analytics.md)
0 commit comments