Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code-of-conduct.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ harassment or threats to anyone's safety, we may take action without notice.

## Attribution

This Code of Conduct is adapted from the Contributor Covenant, version 1.4,
This Code of Conduct is adapted from the Contributor Covenant, version 2.1,

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not really a bug is it? cc Tim Hockin (@thockin)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, let's revert this part

available at
https://www.contributor-covenant.org/version/1/4/code-of-conduct/
https://www.contributor-covenant.org/version/2/1/code_of_conduct/
2 changes: 1 addition & 1 deletion docs/dev/best-practices/tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The YAML manifest for your server should include the `OTEL_EXPORTER_OTLP_ENDPOIN
- name: ateapi
image: ko://github.com/agent-substrate/substrate/cmd/ateapi
ports:
- "443:443"
- containerPort: 443
env:
# Tracing related environment variables
- name: OTEL_EXPORTER_OTLP_ENDPOINT
Expand Down
3 changes: 1 addition & 2 deletions docs/dev/valkey-direct-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ Valkey is the state store used by `ate-api-server` to track actor and worker rec

To open a `valkey-cli` session:

1. `kubectl exec -n=ate-system -it valkey-cluster-0 -- valkey-cli -h valkey-cluster-service -c --tls --cacert /etc/valkey-ca/ca.crt --cer
t /run/servicedns.podcert.ate.dev/credential-bundle.pem --key /run/servicedns.podcert.ate.dev/credential-bundle.pem`
1. `kubectl exec -n=ate-system -it valkey-cluster-0 -- valkey-cli -h valkey-cluster-service -c --tls --cacert /etc/valkey-ca/ca.crt --cert /run/servicedns.podcert.ate.dev/credential-bundle.pem --key /run/servicedns.podcert.ate.dev/credential-bundle.pem`
4 changes: 2 additions & 2 deletions docs/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ Because the logging pipeline indexes the core metadata labels, you can query you
To track the unified, continuous lifecycle of a single actor regardless of how many times it migrated across worker pods or was suspended/resumed:

```text
labels.actor_id="test"
labels."ate.dev/actor_id"="test"
```

#### 2. Template-Centric View
To monitor or debug all actor instances created from a specific template (e.g., analyzing the collective behavior or error rates of all counter actors):

```text
labels.actor_template="counter"
labels."ate.dev/actor_template_name"="counter"
```

#### 3. Pod-Centric View
Expand Down