Semantic Conventions for Azure AI Inference

Status: Experimental

The Semantic Conventions for Azure AI Inference extend and override the GenAI Semantic Conventions.

Azure AI Inference Spans

gen_ai.system MUST be set to "az.ai.inference" and SHOULD be provided at span creation time.

Attributes

AttributeTypeDescriptionExamplesRequirement LevelStability
gen_ai.operation.namestringThe name of the operation being performed. [1]chat; text_completion; embeddingsRequiredExperimental
error.typestringDescribes a class of error the operation ended with. [2]timeout; java.net.UnknownHostException; server_certificate_invalid; 500Conditionally Required if the operation ended in an errorStable
gen_ai.request.modelstringThe name of the GenAI model a request is being made to. [3]gpt-4Conditionally Required If available.Experimental
server.portintGenAI server port. [4]80; 8080; 443Conditionally Required If not default (443).Stable
az.namespacestringAzure Resource Provider Namespace as recognized by the client. [5]Microsoft.CognitiveServicesRecommendedExperimental
gen_ai.request.encoding_formatsstring[]The encoding formats requested in an embeddings operation, if specified. [6]["base64"]; ["float", "binary"]RecommendedExperimental
gen_ai.request.frequency_penaltydoubleThe frequency penalty setting for the GenAI request.0.1RecommendedExperimental
gen_ai.request.max_tokensintThe maximum number of tokens the model generates for a request.100RecommendedExperimental
gen_ai.request.presence_penaltydoubleThe presence penalty setting for the GenAI request.0.1RecommendedExperimental
gen_ai.request.stop_sequencesstring[]List of sequences that the model will use to stop generating further tokens.["forest", "lived"]RecommendedExperimental
gen_ai.request.temperaturedoubleThe temperature setting for the GenAI request.0.0RecommendedExperimental
gen_ai.request.top_pdoubleThe top_p sampling setting for the GenAI request.1.0RecommendedExperimental
gen_ai.response.finish_reasonsstring[]Array of reasons the model stopped generating tokens, corresponding to each generation received.["stop"]; ["stop", "length"]RecommendedExperimental
gen_ai.response.idstringThe unique identifier for the completion.chatcmpl-123RecommendedExperimental
gen_ai.response.modelstringThe name of the model that generated the response. [7]gpt-4-0613RecommendedExperimental
gen_ai.usage.input_tokensintThe number of prompt tokens as reported in the usage prompt_tokens property of the response.100RecommendedExperimental
gen_ai.usage.output_tokensintThe number of completion tokens as reported in the usage completion_tokens property of the response.180RecommendedExperimental
server.addressstringGenAI server address. [8]example.com; 10.1.2.80; /tmp/my.sockRecommendedStable

[1] gen_ai.operation.name: If one of the predefined values applies, but specific system uses a different name it’s RECOMMENDED to document it in the semantic conventions for specific GenAI system and use system-specific name in the instrumentation. If a different name is not documented, instrumentation libraries SHOULD use applicable predefined value.

[2] error.type: The error.type SHOULD match the error code returned by the Generative AI provider or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.

[3] gen_ai.request.model: The name of the GenAI model a request is being made to. If the model is supplied by a vendor, then the value must be the exact name of the model requested. If the model is a fine-tuned custom model, the value should have a more specific name than the base model that’s been fine-tuned.

[4] server.port: When observed from the client side, and when communicating through an intermediary, server.port SHOULD represent the server port behind any intermediaries, for example proxies, if it’s available.

[5] az.namespace: When az.namespace attribute is populated, it MUST be set to Microsoft.CognitiveServices for all operations performed by Azure AI Inference clients.

[6] gen_ai.request.encoding_formats: In some GenAI systems the encoding formats are called embedding types. Also, some GenAI systems only accept a single format per request.

[7] gen_ai.response.model: If available. The name of the GenAI model that provided the response. If the model is supplied by a vendor, then the value must be the exact name of the model actually used. If the model is a fine-tuned custom model, the value should have a more specific name than the base model that’s been fine-tuned.

[8] server.address: When observed from the client side, and when communicating through an intermediary, server.address SHOULD represent the server address behind any intermediaries, for example proxies, if it’s available.


error.type has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

ValueDescriptionStability
_OTHERA fallback error value to be used when the instrumentation doesn’t define a custom value.Stable

gen_ai.operation.name has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

ValueDescriptionStability
chatChat completion operation such as OpenAI Chat APIExperimental
embeddingsEmbeddings operation such as OpenAI Create embeddings APIExperimental
text_completionText completions operation such as OpenAI Completions API (Legacy)Experimental

Azure AI Inference Metrics

Azure AI Inference metrics follow generic Generative AI metrics.