@@ -71,6 +71,10 @@ public class CatNodesRecord : ICatRecord
71
71
public string PercolateTotal => _percolateTotal ?? _pto ?? _percolate_total ;
72
72
public string Pid => _p ?? _pid ;
73
73
public string Port => _po ?? _port ;
74
+ public string QueryCacheMemorySize => _queryCacheMemory ?? _qcm ?? _query_cache_memory_size ;
75
+ public string QueryCacheEvictions => _queryCacheEvictions ?? _qce ?? _query_cache_evictions ;
76
+ public string QueryCacheHitCount => _queryCacheHitCount ?? _qchc ?? _query_cache_hit_count ;
77
+ public string QueryCacheMissCount => _queryCacheMissCount ?? _qcmc ?? _query_cache_miss_count ;
74
78
public string RamCurrent => _ramCurrent ?? _rc ?? _ram_current ;
75
79
public string RamMax => _ramMax ?? _rm ?? _ram_max ;
76
80
public string RamPercent => _ramPercent ?? _rp ?? _ram_percent ;
@@ -506,6 +510,42 @@ public class CatNodesRecord : ICatRecord
506
510
[ DataMember ( Name = "pto" ) ]
507
511
internal string _pto { get ; set ; }
508
512
513
+ [ DataMember ( Name = "query_cache.memory_size" ) ]
514
+ internal string _query_cache_memory_size { get ; set ; }
515
+
516
+ [ DataMember ( Name = "qcm" ) ]
517
+ internal string _qcm { get ; set ; }
518
+
519
+ [ DataMember ( Name = "queryCacheMemory" ) ]
520
+ internal string _queryCacheMemory { get ; set ; }
521
+
522
+ [ DataMember ( Name = "query_cache.evictions" ) ]
523
+ internal string _query_cache_evictions { get ; set ; }
524
+
525
+ [ DataMember ( Name = "qce" ) ]
526
+ internal string _qce { get ; set ; }
527
+
528
+ [ DataMember ( Name = "queryCacheEvictions" ) ]
529
+ internal string _queryCacheEvictions { get ; set ; }
530
+
531
+ [ DataMember ( Name = "query_cache.hit_count" ) ]
532
+ internal string _query_cache_hit_count { get ; set ; }
533
+
534
+ [ DataMember ( Name = "qchc" ) ]
535
+ internal string _qchc { get ; set ; }
536
+
537
+ [ DataMember ( Name = "queryCacheHitCount" ) ]
538
+ internal string _queryCacheHitCount { get ; set ; }
539
+
540
+ [ DataMember ( Name = "query_cache.miss_count" ) ]
541
+ internal string _query_cache_miss_count { get ; set ; }
542
+
543
+ [ DataMember ( Name = "qcmc" ) ]
544
+ internal string _qcmc { get ; set ; }
545
+
546
+ [ DataMember ( Name = "queryCacheMissCount" ) ]
547
+ internal string _queryCacheMissCount { get ; set ; }
548
+
509
549
[ DataMember ( Name = "r" ) ]
510
550
internal string _r { get ; set ; }
511
551
0 commit comments