Skip to content

Commit 93317c6

Browse files
author
ecfan
committed
Finish refactoring and retiring article
1 parent 5a8f30b commit 93317c6

File tree

5 files changed

+36
-191
lines changed

5 files changed

+36
-191
lines changed

articles/logic-apps/logic-apps-limits-and-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The following table lists the values that apply to a single workflow definition
4646
| `description` - Maximum length | 256 characters ||
4747
| `parameters` - Maximum number of parameters per workflow | - Consumption: 50 parameters <br><br>- Standard: 500 parameters ||
4848
| `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). |
5050

5151
<a name="run-duration-retention-limits"></a>
5252

articles/logic-apps/logic-apps-workflow-actions-triggers.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,10 +547,15 @@ For more information plus examples for this trigger, see [Create and schedule re
547547

548548
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.
549549

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+
550555
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).
551556

552557
```json
553-
"manual": {
558+
"Request": {
554559
"type": "Request",
555560
"kind": "Http",
556561
"inputs": {
@@ -599,7 +604,7 @@ To call this trigger, you must use the `listCallbackUrl` API, which is described
599604
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:
600605

601606
```json
602-
"manual": {
607+
"Request": {
603608
"type": "Request",
604609
"kind": "Http",
605610
"inputs": {

articles/logic-apps/monitor-workflows-collect-diagnostic-data.md

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,15 @@ If you don't specify this custom tracking ID, Azure automatically generates this
360360

361361
### Tracked properties
362362

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:
364372

365373
### [Consumption](#tab/consumption)
366374

@@ -372,11 +380,24 @@ Actions have a **Tracked Properties** section where you can specify a custom pro
372380

373381
---
374382

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+
```
380401

381402
The following examples show where custom properties appear in your Log Analytics workspace:
382403

@@ -402,7 +423,7 @@ The custom tracking ID appears in the **ClientTrackingId** column and tracked pr
402423

403424
---
404425

405-
## Next steps
426+
## Related content
406427

407428
* [Create monitoring and tracking queries](create-monitoring-tracking-queries.md)
408429
* [Monitor B2B messages with Azure Monitor Logs](monitor-b2b-messages-log-analytics.md)

articles/logic-apps/update-workflow-definition-language-schema.md

Lines changed: 0 additions & 181 deletions
This file was deleted.

0 commit comments

Comments
 (0)