Single Endpoint
With single endpoints, all services are available through a common host address and port:| Host | Function |
|---|---|
| arize-app.<domain> |
|
Example with Arize AX SDK
Example with Arize AX SDK with Evaluations
Example with OTEL traces and GRPC
Example with OTEL traces and HTTP
Example with FlightServer Export Client
Example with FlightServer Datasets Client
Two Endpoints(Less common)
On top of single endpoint, there is a corner case that you have to use a separate endpoint for gRPC traffic:| Host | Function |
|---|---|
| arize-app.<domain> |
|
| arize-grpc.<domain> |
|
Example with Arize AX SDK
Example with Arize AX SDK with Evaluations
Example with OTEL traces and GRPC
Example with OTEL traces and HTTP
Example with FlightServer Export Client
Example with FlightServer Datasets Client
Four Endpoints
If your deployment is configured with four endpoints, it requires different ingress configurations and host addresses:| Host | Function |
|---|---|
| arize-app.<domain> |
|
| arize-api.<domain> |
|
| arize-otlp.<domain> |
|
| arize-flight.<domain> |
|
Example with Arize AX SDK
Example with Arize AX SDK with Evaluations
Example with OTEL traces and GRPC
Example with OTEL traces and HTTP
Example with FlightServer Export Client
Example with FlightServer Datasets Client
Using an Enterprise-Issued Certificate
If your deployment uses a certificate signed by your own enterprise private CA or a self-signed certificate, follow the relevant instructions below for your deployment type and use case.Obtaining the Root CA Certificate
First, obtain the root CA certificate that was used to sign your endpoint’s certificate. This root certificate is typically managed by the security team and is common across environments.Extracting the Certificate(If Root CA Certificate is not available)
If providing the root certificate doesn’t resolve the issue or is not an option, an alternative approach is to extract the certificate directly from the endpoint and create the cert.pem file.Arize SDK
-
Temporarily disable certificate validation (not recommended for production):
-
Provide the root certificate file:
Or
OTEL Traces (GRPC/HTTP)
-
Set the
OTEL_EXPORTER_OTLP_CERTIFICATEenvironment variable to your root certificate:Or
FlightServer Export/Datasets Client
-
Set the
GRPC_DEFAULT_SSL_ROOTS_FILE_PATHenvironment variable to your root certificate:Or