AI Statistics
Introduction
Provides basic AI observability capabilities, including metric, log, and trace. The ai-proxy plug-in needs to be connected afterwards. If the ai-proxy plug-in is not connected, the user needs to configure it accordingly to take effect.
Runtime Properties
Plugin Phase: CUSTOM
Plugin Priority: 200
Configuration instructions
The default request of the plug-in conforms to the openai protocol format and provides the following basic observable values. Users do not need special configuration:
- metric: It provides indicators such as input token, output token, rt of the first token (streaming request), total request rt, etc., and supports observation in the four dimensions of gateway, routing, service, and model.
- log: Provides input_token, output_token, model, llm_service_duration, llm_first_token_duration and other fields
Users can also expand observable values through configuration:
Name | Type | Required | Default | Description |
---|---|---|---|---|
attributes | []Attribute | required | - | Information that the user wants to record in log/span |
Attribute Configuration instructions:
Name | Type | Required | Default | Description |
---|---|---|---|---|
key | string | required | - | attrribute key |
value_source | string | required | - | attrribute value source, optional values are fixed_value , request_header , request_body , response_header , response_body , response_streaming_body |
value | string | required | - | how to get attrribute value |
rule | string | optional | - | Rule to extract attribute from streaming response, optional values are first , replace , append |
apply_to_log | bool | optional | false | Whether to record the extracted information in the log |
apply_to_span | bool | optional | false | Whether to record the extracted information in the link tracking span |
The meanings of various values for value_source
are as follows:
fixed_value
: fixed valuerequeset_header
: The attrribute is obtained through the http request headerrequest_body
: The attrribute is obtained through the http request bodyresponse_header
: The attrribute is obtained through the http response headerresponse_body
: The attrribute is obtained through the http response bodyresponse_streaming_body
: The attrribute is obtained through the http streaming response body
When value_source
is response_streaming_body
, rule
should be configured to specify how to obtain the specified value from the streaming body. The meaning of the value is as follows:
first
: extract value from the first valid chunkreplace
: extract value from the last valid chunkappend
: join value pieces from all valid chunks
Configuration example
If you want to record ai-statistic related statistical values in the gateway access log, you need to modify log_format and add a new field based on the original log_format. The example is as follows:
Empty
Metric
Log
Trace
When the configuration is empty, no additional attributes will be added to the span.
Extract token usage information from non-openai protocols
When setting the protocol to original in ai-proxy, taking Alibaba Cloud Bailian as an example, you can make the following configuration to specify how to extract model
, input_token
, output_token
Metric
Log
Trace
Three additional attributes model
, input_token
, and output_token
can be seen in the trace spans.