Added database size to stats, added total ram size to stats

This commit is contained in:
2026-01-19 03:40:03 +01:00
parent b6692770c1
commit 337782661e
4 changed files with 53 additions and 5 deletions

View File

@@ -28,4 +28,8 @@ public class ServerGetStatsResult : SuccesMessageBaseModel
public long? QueryCacheMaxElementCountLoadedSearchdomainsOnly { get; set; }
[JsonPropertyName("QueryCacheUtilization")]
public long? QueryCacheUtilization { get; set; }
[JsonPropertyName("DatabaseTotalSize")]
public long? DatabaseTotalSize { get; set; }
[JsonPropertyName("RamTotalSize")]
public long? RamTotalSize { get; set; }
}