diff --git a/src/query/catalog/src/statistics/data_cache_statistics.rs b/src/query/catalog/src/statistics/data_cache_statistics.rs index a584d9ef4e07..ea6512661ca7 100644 --- a/src/query/catalog/src/statistics/data_cache_statistics.rs +++ b/src/query/catalog/src/statistics/data_cache_statistics.rs @@ -26,9 +26,9 @@ pub struct DataCacheMetrics { #[derive(Default, Clone, Serialize, Deserialize)] pub struct DataCacheMetricValues { - pub bytes_from_storage: usize, - pub bytes_from_disk_cache: usize, - pub bytes_from_mem_cache: usize, + pub bytes_from_remote_disk: usize, + pub bytes_from_local_disk: usize, + pub bytes_from_memory: usize, } impl DataCacheMetrics {