Skip to content

Commit

Permalink
fix stats response
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Mar 4, 2024
1 parent 4b523e4 commit 588747d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsql-server/src/http/admin/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl From<&Stats> for StatsResponse {
storage_bytes_used: stats.storage_bytes_used(),
write_requests_delegated: stats.write_requests_delegated(),
replication_index: stats.get_current_frame_no(),
embedded_replica_frames_replicated: 0,
embedded_replica_frames_replicated: stats.get_embedded_replica_frames_replicated(),
query_count: stats.get_query_count(),
elapsed_ms: stats.get_query_latency(),
top_queries: stats
Expand Down

0 comments on commit 588747d

Please sign in to comment.