use envoy to publish traces (#270)

This commit is contained in:
Adil Hafeez 2024-11-18 17:55:39 -08:00 committed by GitHub
parent 9cee04ed31
commit 36489b4adc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 240 additions and 179 deletions

View file

@ -13,7 +13,7 @@ FROM envoyproxy/envoy:v1.32-latest as envoy
#Build config generator, so that we have a single build image for both Rust and Python #Build config generator, so that we have a single build image for both Rust and Python
FROM python:3.12-slim as arch FROM python:3.12-slim as arch
RUN apt-get update && apt-get install -y gettext-base curl supervisor && apt-get clean && rm -rf /var/lib/apt/lists/* RUN apt-get update && apt-get install -y gettext-base curl && apt-get clean && rm -rf /var/lib/apt/lists/*
COPY --from=builder /arch/target/wasm32-wasip1/release/prompt_gateway.wasm /etc/envoy/proxy-wasm-plugins/prompt_gateway.wasm COPY --from=builder /arch/target/wasm32-wasip1/release/prompt_gateway.wasm /etc/envoy/proxy-wasm-plugins/prompt_gateway.wasm
COPY --from=builder /arch/target/wasm32-wasip1/release/llm_gateway.wasm /etc/envoy/proxy-wasm-plugins/llm_gateway.wasm COPY --from=builder /arch/target/wasm32-wasip1/release/llm_gateway.wasm /etc/envoy/proxy-wasm-plugins/llm_gateway.wasm
@ -24,10 +24,8 @@ RUN pip install -r requirements.txt
COPY arch/tools/cli/config_generator.py . COPY arch/tools/cli/config_generator.py .
COPY arch/envoy.template.yaml . COPY arch/envoy.template.yaml .
COPY arch/arch_config_schema.yaml . COPY arch/arch_config_schema.yaml .
COPY arch/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY arch/stream_traces.py .
RUN pip install requests RUN pip install requests
RUN touch /var/log/envoy.log RUN touch /var/log/envoy.log
ENTRYPOINT ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] ENTRYPOINT ["sh","-c", "python config_generator.py && envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && envoy -c /etc/envoy.env_sub.yaml --component-log-level wasm:debug 2>&1 | tee /var/log/envoy.log"]

View file

@ -575,10 +575,6 @@ static_resources:
dns_lookup_family: V4_ONLY dns_lookup_family: V4_ONLY
lb_policy: ROUND_ROBIN lb_policy: ROUND_ROBIN
typed_extension_protocol_options: typed_extension_protocol_options:
envoy.extensions.upstreams.http.v3.HttpProtocolOptions:
"@type": type.googleapis.com/envoy.extensions.upstreams.http.v3.HttpProtocolOptions
explicit_http_config:
http2_protocol_options: {}
load_assignment: load_assignment:
cluster_name: opentelemetry_collector_http cluster_name: opentelemetry_collector_http
endpoints: endpoints:

View file

@ -1,37 +0,0 @@
import os
import sys
import time
import requests
import logging
logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
)
otel_tracing_endpoint = os.getenv(
"OTEL_TRACING_HTTP_ENDPOINT", "http://localhost:4318/v1/traces"
)
envoy_log_path = os.getenv("ENVOY_LOG_PATH", "/var/log/envoy.log")
logging.info(f"Using otel-tracing host: {otel_tracing_endpoint}")
logging.info(f"Using envoy log path: {envoy_log_path}")
def process_log_line(line):
try:
response = requests.post(
url=otel_tracing_endpoint,
data=line,
headers={"Content-Type": "application/json"},
)
logging.info(f"Sent trace to otel-tracing: {response.status_code}")
except Exception as e:
logging.error(f"Failed to send trace to otel-tracing: {e}")
for line in sys.stdin:
if line:
tokens = line.split("gateway: upstream_llm trace details: ")
if len(tokens) > 1:
process_log_line(tokens[1])

View file

@ -1,25 +0,0 @@
[supervisord]
nodaemon=true
[program:trace_streamer]
command=sh -c "tail -F /var/log/envoy.log | python stream_traces.py"
autostart=true
autorestart=false
startretries=3
priority=1
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes = 0
stderr_logfile_maxbytes = 0
[program:envoy]
command=sh -c "python config_generator.py && envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && envoy -c /etc/envoy.env_sub.yaml --component-log-level wasm:debug 2>&1 | tee /var/log/envoy.log"
autostart=true
autorestart=true
startretries=3
priority=2
stdout_logfile=/dev/stdout
stderr_logfile=/dev/stderr
stdout_logfile_maxbytes = 0
stderr_logfile_maxbytes = 0

View file

@ -40,6 +40,7 @@
"github.copilot", "github.copilot",
"eamodio.gitlens", "eamodio.gitlens",
"ms-python.black-formatter", "ms-python.black-formatter",
"tamasfe.even-better-toml",
] ]
} }
} }

View file

@ -29,3 +29,5 @@ pub const ARCH_LLM_UPSTREAM_LISTENER: &str = "arch_llm_listener";
pub const ARCH_MODEL_PREFIX: &str = "Arch"; pub const ARCH_MODEL_PREFIX: &str = "Arch";
pub const HALLUCINATION_TEMPLATE: &str = pub const HALLUCINATION_TEMPLATE: &str =
"It seems I'm missing some information. Could you provide the following details "; "It seems I'm missing some information. Could you provide the following details ";
pub const OTEL_COLLECTOR_HTTP: &str = "opentelemetry_collector_http";
pub const OTEL_POST_PATH: &str = "/v1/traces";

View file

@ -1,3 +1,5 @@
use std::path::Display;
use rand::RngCore; use rand::RngCore;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
@ -47,14 +49,18 @@ pub struct Span {
impl Span { impl Span {
pub fn new( pub fn new(
name: String, name: String,
parent_trace_id: String, trace_id: Option<String>,
parent_span_id: Option<String>, parent_span_id: Option<String>,
start_time_unix_nano: u128, start_time_unix_nano: u128,
end_time_unix_nano: u128, end_time_unix_nano: u128,
) -> Self { ) -> Self {
let trace_id = match trace_id {
Some(trace_id) => trace_id,
None => Span::get_random_trace_id(),
};
Span { Span {
trace_id: parent_trace_id, trace_id,
span_id: get_random_span_id(), span_id: Span::get_random_span_id(),
parent_span_id, parent_span_id,
name, name,
start_time_unix_nano: format!("{}", start_time_unix_nano), start_time_unix_nano: format!("{}", start_time_unix_nano),
@ -80,6 +86,22 @@ impl Span {
} }
self.events.as_mut().unwrap().push(event); self.events.as_mut().unwrap().push(event);
} }
fn get_random_span_id() -> String {
let mut rng = rand::thread_rng();
let mut random_bytes = [0u8; 8];
rng.fill_bytes(&mut random_bytes);
hex::encode(random_bytes)
}
fn get_random_trace_id() -> String {
let mut rng = rand::thread_rng();
let mut random_bytes = [0u8; 16];
rng.fill_bytes(&mut random_bytes);
hex::encode(random_bytes)
}
} }
#[derive(Serialize, Deserialize, Debug)] #[derive(Serialize, Deserialize, Debug)]
@ -168,10 +190,42 @@ impl TraceData {
} }
} }
pub fn get_random_span_id() -> String { pub struct Traceparent {
let mut rng = rand::thread_rng(); pub version: String,
let mut random_bytes = [0u8; 8]; pub trace_id: String,
rng.fill_bytes(&mut random_bytes); pub parent_id: String,
pub flags: String,
hex::encode(random_bytes) }
impl std::fmt::Display for Traceparent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}-{}-{}-{}",
self.version, self.trace_id, self.parent_id, self.flags
)
}
}
#[derive(thiserror::Error, Debug)]
pub enum TraceparentNewError {
#[error("Invalid traceparent: \'{0}\'")]
InvalidTraceparent(String),
}
impl TryFrom<String> for Traceparent {
type Error = TraceparentNewError;
fn try_from(traceparent: String) -> Result<Self, Self::Error> {
let traceparent_tokens: Vec<&str> = traceparent.split("-").collect::<Vec<&str>>();
if traceparent_tokens.len() != 4 {
return Err(TraceparentNewError::InvalidTraceparent(traceparent));
}
Ok(Traceparent {
version: traceparent_tokens[0].to_string(),
trace_id: traceparent_tokens[1].to_string(),
parent_id: traceparent_tokens[2].to_string(),
flags: traceparent_tokens[3].to_string(),
})
}
} }

View file

@ -1,17 +1,26 @@
use crate::stream_context::StreamContext; use crate::stream_context::StreamContext;
use common::configuration::Configuration; use common::configuration::Configuration;
use common::consts::OTEL_COLLECTOR_HTTP;
use common::consts::OTEL_POST_PATH;
use common::http::CallArgs;
use common::http::Client; use common::http::Client;
use common::llm_providers::LlmProviders; use common::llm_providers::LlmProviders;
use common::ratelimit; use common::ratelimit;
use common::stats::Counter; use common::stats::Counter;
use common::stats::Gauge; use common::stats::Gauge;
use common::stats::Histogram; use common::stats::Histogram;
use common::tracing::TraceData;
use log::debug; use log::debug;
use log::warn;
use proxy_wasm::traits::*; use proxy_wasm::traits::*;
use proxy_wasm::types::*; use proxy_wasm::types::*;
use std::cell::RefCell; use std::cell::RefCell;
use std::collections::HashMap; use std::collections::HashMap;
use std::collections::VecDeque;
use std::rc::Rc; use std::rc::Rc;
use std::time::Duration;
use std::sync::{Arc, Mutex};
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
pub struct WasmMetrics { pub struct WasmMetrics {
@ -49,6 +58,7 @@ pub struct FilterContext {
// callouts stores token_id to request mapping that we use during #on_http_call_response to match the response to the request. // callouts stores token_id to request mapping that we use during #on_http_call_response to match the response to the request.
callouts: RefCell<HashMap<u32, CallContext>>, callouts: RefCell<HashMap<u32, CallContext>>,
llm_providers: Option<Rc<LlmProviders>>, llm_providers: Option<Rc<LlmProviders>>,
traces_queue: Arc<Mutex<VecDeque<TraceData>>>,
} }
impl FilterContext { impl FilterContext {
@ -57,6 +67,7 @@ impl FilterContext {
callouts: RefCell::new(HashMap::new()), callouts: RefCell::new(HashMap::new()),
metrics: Rc::new(WasmMetrics::new()), metrics: Rc::new(WasmMetrics::new()),
llm_providers: None, llm_providers: None,
traces_queue: Arc::new(Mutex::new(VecDeque::new())),
} }
} }
} }
@ -73,8 +84,6 @@ impl Client for FilterContext {
} }
} }
impl Context for FilterContext {}
// RootContext allows the Rust code to reach into the Envoy Config // RootContext allows the Rust code to reach into the Envoy Config
impl RootContext for FilterContext { impl RootContext for FilterContext {
fn on_configure(&mut self, _: usize) -> bool { fn on_configure(&mut self, _: usize) -> bool {
@ -111,10 +120,71 @@ impl RootContext for FilterContext {
.as_ref() .as_ref()
.expect("LLM Providers must exist when Streams are being created"), .expect("LLM Providers must exist when Streams are being created"),
), ),
Arc::clone(&self.traces_queue),
))) )))
} }
fn get_type(&self) -> Option<ContextType> { fn get_type(&self) -> Option<ContextType> {
Some(ContextType::HttpContext) Some(ContextType::HttpContext)
} }
fn on_vm_start(&mut self, _vm_configuration_size: usize) -> bool {
self.set_tick_period(Duration::from_secs(1));
true
}
fn on_tick(&mut self) {
let _ = self.traces_queue.try_lock().map(|mut traces_queue| {
while let Some(trace) = traces_queue.pop_front() {
debug!("trace received: {:?}", trace);
let trace_str = serde_json::to_string(&trace).unwrap();
debug!("trace: {}", trace_str);
let call_args = CallArgs::new(
OTEL_COLLECTOR_HTTP,
OTEL_POST_PATH,
vec![
(":method", http::Method::POST.as_str()),
(":path", OTEL_POST_PATH),
(":authority", OTEL_COLLECTOR_HTTP),
("content-type", "application/json"),
],
Some(trace_str.as_bytes()),
vec![],
Duration::from_secs(60),
);
if let Err(error) = self.http_call(call_args, CallContext {}) {
warn!(
"failed to schedule http call to otel-collector: {:?}",
error
);
}
}
});
}
}
impl Context for FilterContext {
fn on_http_call_response(
&mut self,
token_id: u32,
_num_headers: usize,
_body_size: usize,
_num_trailers: usize,
) {
debug!(
"||| on_http_call_response called with token_id: {:?} |||",
token_id
);
let _callout_data = self
.callouts
.borrow_mut()
.remove(&token_id)
.expect("invalid token_id");
if let Some(status) = self.get_http_call_response_header(":status") {
debug!("trace response status: {:?}", status);
};
}
} }

View file

@ -12,14 +12,16 @@ use common::errors::ServerError;
use common::llm_providers::LlmProviders; use common::llm_providers::LlmProviders;
use common::pii::obfuscate_auth_header; use common::pii::obfuscate_auth_header;
use common::ratelimit::Header; use common::ratelimit::Header;
use common::tracing::{Event, Span}; use common::tracing::{Event, Span, TraceData, Traceparent};
use common::{ratelimit, routing, tokenizer}; use common::{ratelimit, routing, tokenizer};
use http::StatusCode; use http::StatusCode;
use log::{debug, trace, warn}; use log::{debug, trace, warn};
use proxy_wasm::traits::*; use proxy_wasm::traits::*;
use proxy_wasm::types::*; use proxy_wasm::types::*;
use std::collections::VecDeque;
use std::num::NonZero; use std::num::NonZero;
use std::rc::Rc; use std::rc::Rc;
use std::sync::{Arc, Mutex};
use common::stats::{IncrementingMetric, RecordingMetric}; use common::stats::{IncrementingMetric, RecordingMetric};
@ -36,16 +38,22 @@ pub struct StreamContext {
llm_providers: Rc<LlmProviders>, llm_providers: Rc<LlmProviders>,
llm_provider: Option<Rc<LlmProvider>>, llm_provider: Option<Rc<LlmProvider>>,
request_id: Option<String>, request_id: Option<String>,
start_time: Option<SystemTime>, start_time: SystemTime,
ttft_duration: Option<Duration>, ttft_duration: Option<Duration>,
ttft_time: Option<SystemTime>, ttft_time: Option<u128>,
pub traceparent: Option<String>, traceparent: Option<String>,
request_body_sent_time: Option<SystemTime>, request_body_sent_time: Option<u128>,
user_message: Option<Message>, user_message: Option<Message>,
traces_queue: Arc<Mutex<VecDeque<TraceData>>>,
} }
impl StreamContext { impl StreamContext {
pub fn new(context_id: u32, metrics: Rc<WasmMetrics>, llm_providers: Rc<LlmProviders>) -> Self { pub fn new(
context_id: u32,
metrics: Rc<WasmMetrics>,
llm_providers: Rc<LlmProviders>,
traces_queue: Arc<Mutex<VecDeque<TraceData>>>,
) -> Self {
StreamContext { StreamContext {
context_id, context_id,
metrics, metrics,
@ -56,11 +64,12 @@ impl StreamContext {
llm_providers, llm_providers,
llm_provider: None, llm_provider: None,
request_id: None, request_id: None,
start_time: None, start_time: SystemTime::now(),
ttft_duration: None, ttft_duration: None,
traceparent: None, traceparent: None,
ttft_time: None, ttft_time: None,
user_message: None, user_message: None,
traces_queue,
request_body_sent_time: None, request_body_sent_time: None,
} }
} }
@ -187,11 +196,6 @@ impl HttpContext for StreamContext {
self.request_id = self.get_http_request_header(REQUEST_ID_HEADER); self.request_id = self.get_http_request_header(REQUEST_ID_HEADER);
self.traceparent = self.get_http_request_header(TRACE_PARENT_HEADER); self.traceparent = self.get_http_request_header(TRACE_PARENT_HEADER);
//start the timing for the request using get_current_time()
let current_time: SystemTime = get_current_time().unwrap();
self.start_time = Some(current_time);
self.ttft_duration = None;
Action::Continue Action::Continue
} }
@ -200,7 +204,7 @@ impl HttpContext for StreamContext {
// TODO: consider a streaming API. // TODO: consider a streaming API.
if self.request_body_sent_time.is_none() { if self.request_body_sent_time.is_none() {
self.request_body_sent_time = Some(get_current_time().unwrap()); self.request_body_sent_time = Some(current_time_ns());
} }
if !end_of_stream { if !end_of_stream {
@ -295,6 +299,20 @@ impl HttpContext for StreamContext {
Action::Continue Action::Continue
} }
fn on_http_response_headers(&mut self, _num_headers: usize, _end_of_stream: bool) -> Action {
debug!(
"on_http_response_headers [S={}] end_stream={}",
self.context_id, _end_of_stream
);
self.set_property(
vec!["metadata", "filter_metadata", "llm_filter", "user_prompt"],
Some("hello world from filter".as_bytes()),
);
Action::Continue
}
fn on_http_response_body(&mut self, body_size: usize, end_of_stream: bool) -> Action { fn on_http_response_body(&mut self, body_size: usize, end_of_stream: bool) -> Action {
debug!( debug!(
"on_http_response_body [S={}] bytes={} end_stream={}", "on_http_response_body [S={}] bytes={} end_stream={}",
@ -310,29 +328,27 @@ impl HttpContext for StreamContext {
if end_of_stream && body_size == 0 { if end_of_stream && body_size == 0 {
// All streaming responses end with bytes=0 and end_stream=true // All streaming responses end with bytes=0 and end_stream=true
// Record the latency for the request // Record the latency for the request
if let Some(start_time) = self.start_time { match current_time.duration_since(self.start_time) {
match current_time.duration_since(start_time) { Ok(duration) => {
Ok(duration) => { // Convert the duration to milliseconds
// Convert the duration to milliseconds let duration_ms = duration.as_millis();
let duration_ms = duration.as_millis(); debug!("Total latency: {} milliseconds", duration_ms);
debug!("Total latency: {} milliseconds", duration_ms); // Record the latency to the latency histogram
// Record the latency to the latency histogram self.metrics.request_latency.record(duration_ms as u64);
self.metrics.request_latency.record(duration_ms as u64);
// Compute the time per output token // Compute the time per output token
let tpot = duration_ms as u64 / self.response_tokens as u64; let tpot = duration_ms as u64 / self.response_tokens as u64;
debug!("Time per output token: {} milliseconds", tpot); debug!("Time per output token: {} milliseconds", tpot);
// Record the time per output token // Record the time per output token
self.metrics.time_per_output_token.record(tpot); self.metrics.time_per_output_token.record(tpot);
debug!("Tokens per second: {}", 1000 / tpot); debug!("Tokens per second: {}", 1000 / tpot);
// Record the tokens per second // Record the tokens per second
self.metrics.tokens_per_second.record(1000 / tpot); self.metrics.tokens_per_second.record(1000 / tpot);
} }
Err(e) => { Err(e) => {
warn!("SystemTime error: {:?}", e); warn!("SystemTime error: {:?}", e);
}
} }
} }
// Record the output sequence length // Record the output sequence length
@ -341,49 +357,41 @@ impl HttpContext for StreamContext {
.record(self.response_tokens as u64); .record(self.response_tokens as u64);
if let Some(traceparent) = self.traceparent.as_ref() { if let Some(traceparent) = self.traceparent.as_ref() {
let since_the_epoch_ns = SystemTime::now() let current_time_ns = current_time_ns();
.duration_since(UNIX_EPOCH)
.unwrap()
.as_nanos();
let traceparent_tokens = traceparent.split("-").collect::<Vec<&str>>(); match Traceparent::try_from(traceparent.to_string()) {
if traceparent_tokens.len() != 4 { Err(e) => {
warn!("traceparent header is invalid: {}", traceparent); warn!("traceparent header is invalid: {}", e);
return Action::Continue;
}
let parent_trace_id = traceparent_tokens[1];
let parent_span_id = traceparent_tokens[2];
let mut trace_data = common::tracing::TraceData::new();
let mut llm_span = Span::new(
"upstream_llm_time".to_string(),
parent_trace_id.to_string(),
Some(parent_span_id.to_string()),
self.request_body_sent_time
.unwrap()
.duration_since(UNIX_EPOCH)
.unwrap()
.as_nanos(),
since_the_epoch_ns,
);
if let Some(user_message) = self.user_message.as_ref() {
if let Some(prompt) = user_message.content.as_ref() {
llm_span.add_attribute("user_prompt".to_string(), prompt.to_string());
} }
} Ok(traceparent) => {
llm_span.add_attribute("model".to_string(), self.llm_provider().name.to_string()); let mut trace_data = common::tracing::TraceData::new();
llm_span.add_event(Event::new( let mut llm_span = Span::new(
"time_to_first_token".to_string(), "upstream_llm_time".to_string(),
self.ttft_time Some(traceparent.trace_id),
.unwrap() Some(traceparent.parent_id),
.duration_since(UNIX_EPOCH) self.request_body_sent_time.unwrap(),
.unwrap() current_time_ns,
.as_nanos(), );
)); if let Some(user_message) = self.user_message.as_ref() {
trace_data.add_span(llm_span); if let Some(prompt) = user_message.content.as_ref() {
llm_span
.add_attribute("user_prompt".to_string(), prompt.to_string());
}
}
llm_span.add_attribute(
"model".to_string(),
self.llm_provider().name.to_string(),
);
let trace_data_str = serde_json::to_string(&trace_data).unwrap(); llm_span.add_event(Event::new(
debug!("upstream_llm trace details: {}", trace_data_str); "time_to_first_token".to_string(),
// send trace_data to http tracing endpoint self.ttft_time.unwrap(),
));
trace_data.add_span(llm_span);
self.traces_queue.lock().unwrap().push_back(trace_data);
}
};
} }
return Action::Continue; return Action::Continue;
@ -479,22 +487,19 @@ impl HttpContext for StreamContext {
// Compute TTFT if not already recorded // Compute TTFT if not already recorded
if self.ttft_duration.is_none() { if self.ttft_duration.is_none() {
if let Some(start_time) = self.start_time { // if let Some(start_time) = self.start_time {
let current_time = get_current_time().unwrap(); let current_time = get_current_time().unwrap();
self.ttft_time = Some(current_time); self.ttft_time = Some(current_time_ns());
match current_time.duration_since(start_time) { match current_time.duration_since(self.start_time) {
Ok(duration) => { Ok(duration) => {
let duration_ms = duration.as_millis(); let duration_ms = duration.as_millis();
debug!("Time to First Token (TTFT): {} milliseconds", duration_ms); debug!("Time to First Token (TTFT): {} milliseconds", duration_ms);
self.ttft_duration = Some(duration); self.ttft_duration = Some(duration);
self.metrics.time_to_first_token.record(duration_ms as u64); self.metrics.time_to_first_token.record(duration_ms as u64);
} }
Err(e) => { Err(e) => {
warn!("SystemTime error: {:?}", e); warn!("SystemTime error: {:?}", e);
}
} }
} else {
warn!("Start time was not recorded");
} }
} }
} else { } else {
@ -526,4 +531,11 @@ impl HttpContext for StreamContext {
} }
} }
fn current_time_ns() -> u128 {
SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
.as_nanos()
}
impl Context for StreamContext {} impl Context for StreamContext {}

View file

@ -53,8 +53,6 @@ fn request_headers_expectations(module: &mut Tester, http_context: i32) {
.returning(None) .returning(None)
.expect_get_header_map_value(Some(MapType::HttpRequestHeaders), Some("traceparent")) .expect_get_header_map_value(Some(MapType::HttpRequestHeaders), Some("traceparent"))
.returning(None) .returning(None)
.expect_get_current_time_nanos()
.returning(Some(0))
.execute_and_expect(ReturnType::Action(Action::Continue)) .execute_and_expect(ReturnType::Action(Action::Continue))
.unwrap(); .unwrap();
} }
@ -217,8 +215,6 @@ fn llm_gateway_successful_request_to_open_ai_chat_completions() {
) )
.expect_get_buffer_bytes(Some(BufferType::HttpRequestBody)) .expect_get_buffer_bytes(Some(BufferType::HttpRequestBody))
.returning(Some(chat_completions_request_body)) .returning(Some(chat_completions_request_body))
.expect_get_current_time_nanos()
.returning(Some(0))
.expect_log(Some(LogLevel::Trace), None) .expect_log(Some(LogLevel::Trace), None)
.expect_log(Some(LogLevel::Debug), None) .expect_log(Some(LogLevel::Debug), None)
.expect_metric_record("input_sequence_length", 21) .expect_metric_record("input_sequence_length", 21)
@ -281,8 +277,6 @@ fn llm_gateway_bad_request_to_open_ai_chat_completions() {
) )
.expect_get_buffer_bytes(Some(BufferType::HttpRequestBody)) .expect_get_buffer_bytes(Some(BufferType::HttpRequestBody))
.returning(Some(incomplete_chat_completions_request_body)) .returning(Some(incomplete_chat_completions_request_body))
.expect_get_current_time_nanos()
.returning(Some(0))
.expect_log(Some(LogLevel::Debug), None) .expect_log(Some(LogLevel::Debug), None)
.expect_send_local_response( .expect_send_local_response(
Some(StatusCode::BAD_REQUEST.as_u16().into()), Some(StatusCode::BAD_REQUEST.as_u16().into()),
@ -341,8 +335,6 @@ fn llm_gateway_request_ratelimited() {
) )
.expect_get_buffer_bytes(Some(BufferType::HttpRequestBody)) .expect_get_buffer_bytes(Some(BufferType::HttpRequestBody))
.returning(Some(chat_completions_request_body)) .returning(Some(chat_completions_request_body))
.expect_get_current_time_nanos()
.returning(Some(0))
// The actual call is not important in this test, we just need to grab the token_id // The actual call is not important in this test, we just need to grab the token_id
.expect_log(Some(LogLevel::Trace), None) .expect_log(Some(LogLevel::Trace), None)
.expect_log(Some(LogLevel::Debug), None) .expect_log(Some(LogLevel::Debug), None)
@ -409,8 +401,6 @@ fn llm_gateway_request_not_ratelimited() {
) )
.expect_get_buffer_bytes(Some(BufferType::HttpRequestBody)) .expect_get_buffer_bytes(Some(BufferType::HttpRequestBody))
.returning(Some(chat_completions_request_body)) .returning(Some(chat_completions_request_body))
.expect_get_current_time_nanos()
.returning(Some(0))
// The actual call is not important in this test, we just need to grab the token_id // The actual call is not important in this test, we just need to grab the token_id
.expect_log(Some(LogLevel::Trace), None) .expect_log(Some(LogLevel::Trace), None)
.expect_log(Some(LogLevel::Debug), None) .expect_log(Some(LogLevel::Debug), None)