Skip to content

Commit

Permalink
changing tctl to cli (#2870)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsundai authored May 30, 2024
1 parent 15e374c commit 0ef50fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions docs/develop/dotnet/debugging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ This page shows how to do the following:

**How to debug in a development environment using the Temporal .NET SDK**

In addition to the normal development tools of logging and a debugger, you can also see what’s happening in your Workflow by using the [Web UI](/web-ui) or [`tctl`](/tctl-v1).
In developing Workflows, you can use the normal development tools of logging and a debugger to see what’s happening in your Workflow.
In addition to the normal development tools of logging and a debugger, you can also see what’s happening in your Workflow by using the [Web UI](/web-ui) or [Temporal CLI](/cli).
The Web UI provides insight into your Workflows, making it easier to identify issues and monitor the state of your Workflows in real time.

### Debug in a development production {#debug-in-a-development-production}
Expand All @@ -34,7 +35,7 @@ The Web UI provides insight into your Workflows, making it easier to identify is
You can debug production Workflows using:

- [Web UI](/web-ui)
- [tctl](/tctl-v1)
- [Temporal CLI](/cli)
- [Replay](/develop/dotnet/testing-suite#replay-test)
- [Tracing](/develop/dotnet/observability#tracing)
- [Logging](/develop/dotnet/observability#logging)
Expand Down
2 changes: 1 addition & 1 deletion docs/develop/dotnet/observability.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ await foreach (var wf in client.ListWorkflowsAsync("WorkflowType='GreetingWorkfl

**How to use custom Search Attributes using the Temporal .NET SDK**

After you've created custom Search Attributes in your Temporal Service (using `tctl search-attribute create`or the Cloud UI), you can set the values of the custom Search Attributes when starting a Workflow.
After you've created custom Search Attributes in your Temporal Service (using `temporal operator search-attribute create`or the Cloud UI), you can set the values of the custom Search Attributes when starting a Workflow.

To set custom Search Attributes, use the `TypedSearchAttributes` property on `WorkflowOptions` for `StartWorkflowAsync` or `ExecuteWorkflowAsync`.
Typed search attributes are a `SearchAttributeCollection` created with a builder.
Expand Down

0 comments on commit 0ef50fb

Please sign in to comment.