Skip to content

Commit a6b6e81

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/fast-uri-3.1.2
2 parents 14e67d0 + 8f686c8 commit a6b6e81

9 files changed

Lines changed: 15 additions & 16 deletions

File tree

docs/develop/go/workers/serverless-workers/aws-lambda.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Use the `RunWorker` function to start a Lambda-based Worker.
4141
Pass a `WorkerDeploymentVersion` and a callback that registers your Workflows and Activities.
4242

4343
<!--SNIPSTART go-lambda-worker {"selectedLines": ["1-6", "8-18", "22-30"]}-->
44-
[samples-go/lambda-worker/worker/main.go](https://github.com/temporalio/samples-go/blob/lambda-worker/samples-go/lambda-worker/worker/main.go)
44+
[lambda-worker/worker/main.go](https://github.com/temporalio/samples-go/blob/main/lambda-worker/worker/main.go)
4545
```go
4646
package main
4747

@@ -135,7 +135,7 @@ The underlying metrics and traces are the same ones the Go SDK emits in any envi
135135
For general observability concepts and the full list of available metrics, see [Observability - Go SDK](/develop/go/platform/observability) and the [SDK metrics reference](/references/sdk-metrics).
136136

137137
<!--SNIPSTART go-lambda-worker-->
138-
[samples-go/lambda-worker/worker/main.go](https://github.com/temporalio/samples-go/blob/lambda-worker/samples-go/lambda-worker/worker/main.go)
138+
[lambda-worker/worker/main.go](https://github.com/temporalio/samples-go/blob/main/lambda-worker/worker/main.go)
139139
```go
140140
package main
141141

@@ -182,7 +182,7 @@ You must provide a custom Collector configuration that wires the OTLP receiver t
182182
Bundle the following `otel-collector-config.yaml` in your Lambda deployment package:
183183

184184
<!--SNIPSTART go-lambda-worker-otel-collector-config-->
185-
[samples-go/lambda-worker/otel-collector-config.yaml](https://github.com/temporalio/samples-go/blob/lambda-worker/samples-go/lambda-worker/otel-collector-config.yaml)
185+
[lambda-worker/otel-collector-config.yaml](https://github.com/temporalio/samples-go/blob/main/lambda-worker/otel-collector-config.yaml)
186186
```yaml
187187
receivers:
188188
otlp:

docs/develop/python/nexus/feature-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Workflow IDs should typically be business-meaningful IDs and are used to dedupe
230230
A Nexus Operation can only take one input parameter. If you want a Nexus Operation to start a Workflow that takes multiple arguments use the `ctx.start_workflow` method.
231231

232232
<!--SNIPSTART samples-python-nexus-handler-multiargs-->
233-
[nexus_multiple_args/handler/service_handler.py](https://github.com/temporalio/samples-python/blob/lambda-worker/nexus_multiple_args/handler/service_handler.py)
233+
[nexus_multiple_args/handler/service_handler.py](https://github.com/temporalio/samples-python/blob/main/nexus_multiple_args/handler/service_handler.py)
234234
```py
235235
@nexusrpc.handler.service_handler(service=MyNexusService)
236236
class MyNexusServiceHandler:

docs/develop/rust/client/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ import * as Components from '@site/src/components';
1818

1919
## Temporal Client
2020

21-
- [Temporal Client](/develop/rust/client/temporal-client)
21+
- [Temporal Client](/develop/rust/client/temporal-client)

docs/develop/rust/nexus/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ import * as Components from '@site/src/components';
1818

1919
## Temporal Nexus
2020

21-
- [Feature guide](/develop/rust/nexus/feature-guide)
21+
- [Feature guide](/develop/rust/nexus/feature-guide)

docs/develop/rust/workers/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ import * as Components from '@site/src/components';
1818

1919
## Workers
2020

21-
- [Worker processes](/develop/rust/workers/worker-process)
21+
- [Worker processes](/develop/rust/workers/worker-process)

docs/develop/rust/workers/worker-process.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ let worker_options = WorkerOptions::new("my-task-queue")
6666
.register_activities(MyActivities)
6767
.register_workflow::<GreetingsWorkflow>()
6868
.build();
69-
```
69+
```

docs/develop/rust/workflows/cancellation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,4 +233,4 @@ Monitor the new Workflow Execution after resetting to ensure it completes succes
233233

234234
</TabItem>
235235

236-
</Tabs>
236+
</Tabs>

docs/develop/rust/workflows/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ import * as Components from '@site/src/components';
2424
- [Message passing](/develop/rust/workflows/message-passing)
2525
- [Cancellation](/develop/rust/workflows/cancellation)
2626
- [Timers](/develop/rust/workflows/timers)
27-
- [Timeouts](/develop/rust/workflows/timeouts)
27+
- [Timeouts](/develop/rust/workflows/timeouts)

docs/develop/typescript/workers/serverless-workers/aws-lambda.mdx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Use the `runWorker` function to create a Lambda handler that runs a Temporal Wor
4141
Pass a deployment version and a configure callback that sets up your Workflows and Activities.
4242

4343
<!--SNIPSTART typescript-lambda-worker {"selectedLines": ["1", "3-11", "13"]}-->
44-
[samples-typescript/lambda-worker/src/index.ts](https://github.com/temporalio/samples-typescript/blob/main/lambda-worker/src/index.ts)
44+
[lambda-worker/src/index.ts](https://github.com/temporalio/samples-typescript/blob/main/lambda-worker/src/index.ts)
4545
```ts
4646
import { runWorker } from '@temporalio/lambda-worker';
4747
// ...
@@ -133,7 +133,7 @@ The underlying metrics and traces are the same ones the TypeScript SDK emits in
133133
For general observability concepts and the full list of available metrics, see [Observability - TypeScript SDK](/develop/typescript/platform/observability) and the [SDK metrics reference](/references/sdk-metrics).
134134

135135
<!--SNIPSTART typescript-lambda-worker-->
136-
[samples-typescript/lambda-worker/src/index.ts](https://github.com/temporalio/samples-typescript/blob/main/lambda-worker/src/index.ts)
136+
[lambda-worker/src/index.ts](https://github.com/temporalio/samples-typescript/blob/main/lambda-worker/src/index.ts)
137137
```ts
138138
import { runWorker } from '@temporalio/lambda-worker';
139139
import { applyDefaults } from '@temporalio/lambda-worker/otel';
@@ -164,7 +164,7 @@ You must provide a custom Collector configuration that wires the OTLP receiver t
164164
Bundle the following `otel-collector-config.yaml` in your Lambda deployment package:
165165

166166
<!--SNIPSTART typescript-lambda-worker-otel-collector-config-->
167-
[samples-typescript/lambda-worker/otel-collector-config.yaml](https://github.com/temporalio/samples-typescript/blob/main/lambda-worker/otel-collector-config.yaml)
167+
[lambda-worker/otel-collector-config.yaml](https://github.com/temporalio/samples-typescript/blob/main/lambda-worker/otel-collector-config.yaml)
168168
```yaml
169169
receivers:
170170
otlp:
@@ -182,8 +182,7 @@ exporters:
182182
# AWS EMF exporter for metrics
183183
# These are example configurations
184184
namespace: TemporalWorkerMetrics
185-
# log_group_name: /aws/lambda/<your-function-name>
186-
log_group_name: /aws/lambda/sdk-worker-typescript
185+
log_group_name: /aws/lambda/<your-function-name>
187186
region: us-west-2
188187
dimension_rollup_option: NoDimensionRollup
189188
resource_to_telemetry_conversion:
@@ -199,7 +198,7 @@ service:
199198
exporters: [awsemf]
200199
telemetry:
201200
logs:
202-
level: debug
201+
level: info
203202
metrics:
204203
address: localhost:8888
205204
```

0 commit comments

Comments
 (0)