docs: add standalone Arize AX tracing guide - #981
Open
danehans wants to merge 3 commits into
Open
Conversation
Signed-off-by: Daneyon Hansen <daneyon.hansen@solo.io>
Signed-off-by: Daneyon Hansen <daneyon.hansen@solo.io>
28 tasks
Signed-off-by: Daneyon Hansen <daneyon.hansen@solo.io>
Nadine2016
reviewed
Sep 3, 2026
| export ARIZE_SPACE_ID="<your-space-id>" | ||
| ``` | ||
|
|
||
| Agentgateway sends the API key and Space ID as request headers. |
Collaborator
There was a problem hiding this comment.
what are the headers that we send them in?
Nadine2016
reviewed
Sep 3, 2026
| | US | `otlp.arize.com:443` | | ||
| | US regional | `otlp.us-central-1a.arize.com:443` | | ||
| | EU | `otlp.eu-west-1a.arize.com:443` | | ||
| | Canada | `otlp.ca-central-1a.arize.com:443` | |
Collaborator
There was a problem hiding this comment.
save it in an environment variable so that you can reference it in the sample config below
Nadine2016
reviewed
Sep 3, 2026
|
|
||
| ## Configure trace export | ||
|
|
||
| Choose either OTLP/HTTP or OTLP/gRPC. The authentication header names differ by protocol. |
Collaborator
There was a problem hiding this comment.
Suggested change
| Choose either OTLP/HTTP or OTLP/gRPC. The authentication header names differ by protocol. | |
| Update the agentgateway configuration file that you created as part of [before you begin](#before-you-begin) to add Arize AX as your tracing backend. Choose either OTLP/HTTP or OTLP/gRPC for your protocol, and add the custom tracing attributes that you require. The authentication header names differ by protocol. |
Nadine2016
reviewed
Sep 3, 2026
| ```text | ||
| info request gateway=default/default route=internal/llm:request http.status=200 trace.id=4d50f6d1cb4099a1a22e50b6d339d5f2 span.id=a3f2ae9119406264 protocol=llm gen_ai.provider.name=openai | ||
| ``` | ||
| 4. In Arize AX, open **Tracing Projects**, select the project from `openinference.project.name`, and search for the trace ID. Trace export is batched, so allow several seconds for the trace to appear. |
Collaborator
There was a problem hiding this comment.
Suggested change
| 4. In Arize AX, open **Tracing Projects**, select the project from `openinference.project.name`, and search for the trace ID. Trace export is batched, so allow several seconds for the trace to appear. | |
| 4. In Arize AX, open **Tracing Projects**, select the project that you defined in the `openinference.project.name` field, and search for the trace ID. Trace export is batched, so allow several seconds for the trace to appear. |
Nadine2016
reviewed
Sep 3, 2026
| @@ -0,0 +1,186 @@ | |||
| --- | |||
| title: Arize AX | |||
Collaborator
There was a problem hiding this comment.
can you make this a reusable page under assets/agw-docs and then just refer to it from here and main?
Nadine2016
reviewed
Sep 3, 2026
| # yaml-language-server: $schema=https://agentgateway.dev/schema/config | ||
| frontendPolicies: | ||
| tracing: | ||
| host: otlp.arize.com:443 |
Collaborator
There was a problem hiding this comment.
Suggested change
| host: otlp.arize.com:443 | |
| host: ${ARIZE_HOST}:443 |
Nadine2016
reviewed
Sep 3, 2026
| # yaml-language-server: $schema=https://agentgateway.dev/schema/config | ||
| frontendPolicies: | ||
| tracing: | ||
| host: otlp.arize.com:443 |
Collaborator
There was a problem hiding this comment.
Suggested change
| host: otlp.arize.com:443 | |
| host: ${ARIZE_HOST}:443 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Company
Not applicable; this pull request updates documentation.
Contribution summary
Checklist
Logo file
Listing
Preview
Both transport configurations were validated with agentgateway 1.4.1, and the
full Hugo build completed successfully.