1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
use crate::proxy::middleware::auth::UserTokenIdentity;
use crate::proxy::monitor::ProxyRequestLog;
use crate::proxy::state::CoreServices;
use axum::{
body::Body,
extract::{Request, State},
middleware::Next,
response::Response,
};
use futures::StreamExt;
use serde_json::Value;
use std::time::Instant;
const MAX_REQUEST_LOG_SIZE: usize = 100 * 1024 * 1024;
const MAX_RESPONSE_LOG_SIZE: usize = 100 * 1024 * 1024;
fn record_user_token_usage(
user_token_identity: &Option<UserTokenIdentity>,
log: &ProxyRequestLog,
user_agent: Option<String>,
) {
if let Some(identity) = user_token_identity {
let Some(client_ip) = log.client_ip.as_deref() else {
tracing::warn!(
"Skipping user token usage record: missing socket client IP for token_id={}",
identity.token_id
);
return;
};
let _ = crate::modules::persistence::user_token_db::record_token_usage_and_ip(
&identity.token_id,
client_ip,
log.model.as_deref().unwrap_or("unknown"),
log.input_tokens.unwrap_or(0) as i32,
log.output_tokens.unwrap_or(0) as i32,
log.status,
user_agent,
);
}
}
pub async fn monitor_middleware(
State(state): State<CoreServices>,
request: Request,
next: Next,
) -> Response {
let logging_enabled = state.monitor.is_enabled();
if !logging_enabled {
return next.run(request).await;
}
let method = request.method().to_string();
let uri = request.uri().to_string();
if uri == "/health"
|| uri.contains("event_logging")
|| uri.contains("/api/")
|| uri.starts_with("/internal/")
{
return next.run(request).await;
}
let start = Instant::now();
let client_ip = crate::proxy::middleware::client_ip::extract_client_ip(&request);
let user_agent = request
.headers()
.get("user-agent")
.and_then(|v| v.to_str().ok())
.map(|s| s.to_string());
let correlation_id = request
.headers()
.get("x-correlation-id")
.and_then(|v| v.to_str().ok())
.map(|s| s.to_string());
let request_id = request
.headers()
.get("x-request-id")
.and_then(|v| v.to_str().ok())
.map(|s| s.to_string());
let mut model = if uri.contains("/v1beta/models/") {
uri.split("/v1beta/models/")
.nth(1)
.and_then(|s| s.split(':').next())
.map(|s| s.to_string())
} else {
None
};
let request_body_str;
let user_token_identity = request.extensions().get::<UserTokenIdentity>().cloned();
let request = if method == "POST" {
let (parts, body) = request.into_parts();
match axum::body::to_bytes(body, MAX_REQUEST_LOG_SIZE).await {
Ok(bytes) => {
if model.is_none() {
model = serde_json::from_slice::<Value>(&bytes).ok().and_then(|v| {
v.get("model")
.and_then(|m| m.as_str())
.map(|s| s.to_string())
});
}
request_body_str = if let Ok(s) = std::str::from_utf8(&bytes) {
Some(s.to_string())
} else {
Some("[Binary Request Data]".to_string())
};
Request::from_parts(parts, Body::from(bytes))
}
Err(_) => {
request_body_str = None;
Request::from_parts(parts, Body::empty())
}
}
} else {
request_body_str = None;
request
};
let response = next.run(request).await;
let duration = start.elapsed().as_millis() as u64;
let status = response.status().as_u16();
let content_type = response
.headers()
.get("content-type")
.and_then(|v| v.to_str().ok())
.unwrap_or("")
.to_string();
let account_email = response
.headers()
.get("X-Account-Email")
.and_then(|v| v.to_str().ok())
.map(|s| s.to_string());
let mapped_model = response
.headers()
.get("X-Mapped-Model")
.and_then(|v| v.to_str().ok())
.map(|s| s.to_string());
let protocol = if uri.contains("/v1/messages") {
Some("anthropic".to_string())
} else if uri.contains("/v1beta/models") {
Some("gemini".to_string())
} else if uri.starts_with("/v1/") {
Some("openai".to_string())
} else {
None
};
let username = user_token_identity
.as_ref()
.map(|identity| identity.username.clone());
let monitor = state.monitor.clone();
let mut log = ProxyRequestLog {
id: uuid::Uuid::new_v4().to_string(),
timestamp: chrono::Utc::now().timestamp_millis(),
method,
url: uri,
status,
duration,
model,
mapped_model,
account_email,
client_ip,
correlation_id,
request_id,
error: None,
request_body: request_body_str,
response_body: None,
input_tokens: None,
output_tokens: None,
protocol,
username,
};
if content_type.contains("text/event-stream") {
let (parts, body) = response.into_parts();
let mut stream = body.into_data_stream();
let (tx, rx) = tokio::sync::mpsc::channel(64);
tokio::spawn(async move {
let mut all_stream_data = Vec::new();
let mut last_few_bytes = Vec::new();
while let Some(chunk_res) = stream.next().await {
if let Ok(chunk) = chunk_res {
all_stream_data.extend_from_slice(&chunk);
if chunk.len() > 8192 {
last_few_bytes = chunk.slice(chunk.len() - 8192..).to_vec();
} else {
last_few_bytes.extend_from_slice(&chunk);
if last_few_bytes.len() > 8192 {
last_few_bytes.drain(0..last_few_bytes.len() - 8192);
}
}
let _ = tx.send(Ok::<_, axum::Error>(chunk)).await;
} else if let Err(e) = chunk_res {
let _ = tx.send(Err(axum::Error::new(e))).await;
}
}
if let Ok(full_response) = std::str::from_utf8(&all_stream_data) {
let mut thinking_content = String::new();
let mut response_content = String::new();
let mut thinking_signature = String::new();
let mut tool_calls: Vec<Value> = Vec::new();
for line in full_response.lines() {
if !line.starts_with("data: ") {
continue;
}
let json_str = line.trim_start_matches("data: ").trim();
if json_str == "[DONE]" {
continue;
}
if let Ok(json) = serde_json::from_str::<Value>(json_str) {
if let Some(choices) = json.get("choices").and_then(|c| c.as_array()) {
for choice in choices {
if let Some(delta) = choice.get("delta") {
if let Some(thinking) =
delta.get("reasoning_content").and_then(|v| v.as_str())
{
thinking_content.push_str(thinking);
}
if let Some(content) =
delta.get("content").and_then(|v| v.as_str())
{
response_content.push_str(content);
}
if let Some(delta_tool_calls) =
delta.get("tool_calls").and_then(|t| t.as_array())
{
for tc in delta_tool_calls {
if let Some(index) =
tc.get("index").and_then(|i| i.as_u64())
{
let idx = index as usize;
while tool_calls.len() <= idx {
tool_calls.push(serde_json::json!({
"id": "",
"type": "function",
"function": { "name": "", "arguments": "" }
}));
}
let current_tc = &mut tool_calls[idx];
if let Some(id) =
tc.get("id").and_then(|v| v.as_str())
{
current_tc["id"] =
Value::String(id.to_string());
}
if let Some(func) = tc.get("function") {
if let Some(name) =
func.get("name").and_then(|v| v.as_str())
{
current_tc["function"]["name"] =
Value::String(name.to_string());
}
if let Some(args) = func
.get("arguments")
.and_then(|v| v.as_str())
{
let old_args = current_tc["function"]
["arguments"]
.as_str()
.unwrap_or("");
current_tc["function"]["arguments"] =
Value::String(format!(
"{}{}",
old_args, args
));
}
}
}
}
}
}
}
}
let msg_type = json.get("type").and_then(|t| t.as_str());
match msg_type {
Some("content_block_start") => {
if let (Some(index), Some(block)) = (
json.get("index").and_then(|i| i.as_u64()),
json.get("content_block"),
) {
let idx = index as usize;
if block.get("type").and_then(|t| t.as_str())
== Some("tool_use")
{
let id =
block.get("id").and_then(|v| v.as_str()).unwrap_or("");
let name = block
.get("name")
.and_then(|v| v.as_str())
.unwrap_or("");
while tool_calls.len() <= idx {
tool_calls.push(Value::Null);
}
tool_calls[idx] = serde_json::json!({
"id": id,
"type": "function",
"function": { "name": name, "arguments": "" }
});
}
}
}
Some("content_block_delta") => {
if let (Some(index), Some(delta)) = (
json.get("index").and_then(|i| i.as_u64()),
json.get("delta"),
) {
let idx = index as usize;
if let Some(delta_json) =
delta.get("input_json_delta").and_then(|v| v.as_str())
{
if idx < tool_calls.len() && !tool_calls[idx].is_null() {
let old_args = tool_calls[idx]["function"]["arguments"]
.as_str()
.unwrap_or("");
tool_calls[idx]["function"]["arguments"] =
Value::String(format!(
"{}{}",
old_args, delta_json
));
}
}
if let Some(thinking) =
delta.get("thinking").and_then(|v| v.as_str())
{
thinking_content.push_str(thinking);
}
if let Some(text) = delta.get("text").and_then(|v| v.as_str()) {
response_content.push_str(text);
}
}
}
Some("message_delta") => {
if let Some(delta) = json.get("delta") {
if let Some(usage) = delta.get("usage") {
if let Some(output_tokens) =
usage.get("output_tokens").and_then(|v| v.as_u64())
{
log.output_tokens = Some(output_tokens as u32);
}
}
}
}
_ => {}
}
if msg_type.is_none() {
if let Some(delta) = json.get("delta") {
if let Some(thinking) =
delta.get("thinking").and_then(|v| v.as_str())
{
thinking_content.push_str(thinking);
}
if let Some(sig) = delta.get("signature").and_then(|v| v.as_str()) {
thinking_signature = sig.to_string();
}
if let Some(text) = delta.get("text").and_then(|v| v.as_str()) {
response_content.push_str(text);
}
}
}
if let Some(usage) = json
.get("usage")
.or(json.get("usageMetadata"))
.or(json.get("response").and_then(|r| r.get("usage")))
{
log.input_tokens = usage
.get("prompt_tokens")
.or(usage.get("input_tokens"))
.or(usage.get("promptTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
log.output_tokens = usage
.get("completion_tokens")
.or(usage.get("output_tokens"))
.or(usage.get("candidatesTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
if log.input_tokens.is_none() && log.output_tokens.is_none() {
log.output_tokens = usage
.get("total_tokens")
.or(usage.get("totalTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
}
}
}
}
let mut consolidated = serde_json::Map::new();
if !thinking_content.is_empty() {
consolidated.insert("thinking".to_string(), Value::String(thinking_content));
}
if !thinking_signature.is_empty() {
consolidated.insert(
"thinking_signature".to_string(),
Value::String(thinking_signature),
);
}
if !response_content.is_empty() {
consolidated.insert("content".to_string(), Value::String(response_content));
}
if !tool_calls.is_empty() {
let clean_tool_calls: Vec<Value> =
tool_calls.into_iter().filter(|v| !v.is_null()).collect();
if !clean_tool_calls.is_empty() {
consolidated
.insert("tool_calls".to_string(), Value::Array(clean_tool_calls));
}
}
if let Some(input) = log.input_tokens {
consolidated.insert("input_tokens".to_string(), Value::Number(input.into()));
}
if let Some(output) = log.output_tokens {
consolidated.insert("output_tokens".to_string(), Value::Number(output.into()));
}
if consolidated.is_empty() {
log.response_body = Some(full_response.to_string());
} else {
log.response_body = Some(
serde_json::to_string_pretty(&Value::Object(consolidated))
.unwrap_or_else(|_| full_response.to_string()),
);
}
} else {
log.response_body = Some(format!(
"[Binary Stream Data: {} bytes]",
all_stream_data.len()
));
}
if log.input_tokens.is_none() && log.output_tokens.is_none() {
if let Ok(full_tail) = std::str::from_utf8(&last_few_bytes) {
for line in full_tail.lines().rev() {
if line.starts_with("data: ")
&& (line.contains("\"usage\"") || line.contains("\"usageMetadata\""))
{
let json_str = line.trim_start_matches("data: ").trim();
if let Ok(json) = serde_json::from_str::<Value>(json_str) {
if let Some(usage) = json
.get("usage")
.or(json.get("usageMetadata"))
.or(json.get("response").and_then(|r| r.get("usage")))
{
log.input_tokens = usage
.get("prompt_tokens")
.or(usage.get("input_tokens"))
.or(usage.get("promptTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
log.output_tokens = usage
.get("completion_tokens")
.or(usage.get("output_tokens"))
.or(usage.get("candidatesTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
break;
}
}
}
}
}
}
if log.status >= 400 {
log.error = Some("Stream Error or Failed".to_string());
}
record_user_token_usage(&user_token_identity, &log, user_agent.clone());
monitor.log_request(log).await;
});
Response::from_parts(
parts,
Body::from_stream(tokio_stream::wrappers::ReceiverStream::new(rx)),
)
} else if content_type.contains("application/json") || content_type.contains("text/") {
let (parts, body) = response.into_parts();
match axum::body::to_bytes(body, MAX_RESPONSE_LOG_SIZE).await {
Ok(bytes) => {
if let Ok(s) = std::str::from_utf8(&bytes) {
if let Ok(json) = serde_json::from_str::<Value>(s) {
if let Some(usage) = json.get("usage").or(json.get("usageMetadata")) {
log.input_tokens = usage
.get("prompt_tokens")
.or(usage.get("input_tokens"))
.or(usage.get("promptTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
log.output_tokens = usage
.get("completion_tokens")
.or(usage.get("output_tokens"))
.or(usage.get("candidatesTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
if log.input_tokens.is_none() && log.output_tokens.is_none() {
log.output_tokens = usage
.get("total_tokens")
.or(usage.get("totalTokenCount"))
.and_then(|v| v.as_u64())
.map(|v| v as u32);
}
}
}
log.response_body = Some(s.to_string());
} else {
log.response_body = Some("[Binary Response Data]".to_string());
}
if log.status >= 400 {
log.error = log.response_body.clone();
}
record_user_token_usage(&user_token_identity, &log, user_agent.clone());
monitor.log_request(log).await;
Response::from_parts(parts, Body::from(bytes))
}
Err(_) => {
log.response_body = Some("[Response too large (>100MB)]".to_string());
record_user_token_usage(&user_token_identity, &log, user_agent.clone());
monitor.log_request(log).await;
Response::from_parts(parts, Body::empty())
}
}
} else {
log.response_body = Some(format!("[{}]", content_type));
record_user_token_usage(&user_token_identity, &log, user_agent);
monitor.log_request(log).await;
response
}
}