2013-02-20 80 views
2

看看Redis-RDB-Tools,看起来有一些有用的功能可用于监视Redis服务器的运行状况。是否有Redis-rdb-tools的C#实现?

ServiceStack.Redis似乎有一个很好的客户端功能(但我使用BookSleeve)。

是否有任何C#实现给我一些基本的健康检查 - 消耗的内存,磁盘使用情况等?

- 更新 -

由于BookSleeve的的GetInfo()命令,返回......但是我本来应该更具体如下:有没有取回服务器信息作为参数的方法/对象属性还是解析输出值的预打包方式?

这里是从的GetInfo()的输出:

"# Server\r\nredis_version:2.6.10\r\nredis_git_sha1:00000000\r\nredis_git_dirty:0\r\nredis_mode:standalone\r\nos:Linux 2.6.32-279.19.1.el6.x86_64 x86_64\r\narch_bits:64\r\nmultiplexing_api:epoll\r\ngcc_version:4.4.6\r\nprocess_id:2492\r\nrun_id:62402d583871f4b83f469917966aed8d163d02f3\r\ntcp_port:6379\r\nuptime_in_seconds:502354\r\nuptime_in_days:5\r\nlru_clock:1928056\r\n\r\n# Clients\r\nconnected_clients:7\r\nclient_longest_output_list:0\r\nclient_biggest_input_buf:175\r\nblocked_clients:0\r\n\r\n# Memory\r\nused_memory:1402576\r\nused_memory_human:1.34M\r\nused_memory_rss:9719808\r\nused_memory_peak:1675192\r\nused_memory_peak_human:1.60M\r\nused_memory_lua:31744\r\nmem_fragmentation_ratio:6.93\r\nmem_allocator:jemalloc-3.2.0\r\n\r\n# Persistence\r\nloading:0\r\nrdb_changes_since_last_save:3035\r\nrdb_bgsave_in_progress:0\r\nrdb_last_save_time:1360955487\r\nrdb_last_bgsave_status:ok\r\nrdb_last_bgsave_time_sec:-1\r\nrdb_current_bgsave_time_sec:-1\r\naof_enabled:0\r\naof_rewrite_in_progress:0\r\naof_rewrite_scheduled:0\r\naof_last_rewrite_time_sec:-1\r\naof_current_rewrite_time_sec:-1\r\naof_last_bgrewrite_status:ok\r\n\r\n# Stats\r\ntotal_connections_received:18822\r\ntotal_commands_processed:12547\r\ninstantaneous_ops_per_sec:3\r\nrejected_connections:0\r\nexpired_keys:0\r\nevicted_keys:0\r\nkeyspace_hits:374\r\nkeyspace_misses:39\r\npubsub_channels:1\r\npubsub_patterns:0\r\nlatest_fork_usec:0\r\n\r\n# Replication\r\nrole:master\r\nconnected_slaves:0\r\n\r\n# CPU\r\nused_cpu_sys:57.82\r\nused_cpu_user:208.63\r\nused_cpu_sys_children:0.00\r\nused_cpu_user_children:0.00\r\n\r\n# Keyspace\r\ndb0:keys=6,expires=0\r\n" 
+0

扩大:在BookSleeve了'的GetInfo()'在连接实例命令返回此信息 – 2013-02-21 05:00:50

+0

更新问题:是否有阅读/处理个人价值的方式? – ElHaix 2013-02-21 14:48:28

回答

1

关于更新的问题:那里的信息当前没有被暴露为“解析”,但这听起来像是一个合理的东西来添加;我怀疑我会隐藏GetInfo()方法,将它移动到.Server.GetInfo(),并以解析的形式公开它。代码分裂已经存在,但 - 但作为一个私有方法:RedisConnectionBase.ParseInfo

static Dictionary<string, string> ParseInfo(string result) 
{ 
    string[] lines = result.Split(new[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries); 
    var data = new Dictionary<string, string>(); 
    for (int i = 0; i < lines.Length; i++) 
    { 
     string line = lines[i]; 
     if (string.IsNullOrEmpty(line) || line[0] == '#') continue; // 2.6+ can have empty lines, and comment lines 
     int idx = line.IndexOf(':'); 
     if (idx > 0) // double check this line looks about right 
     { 
      data.Add(line.Substring(0, idx), line.Substring(idx + 1)); 
     } 
    } 
    return data; 
} 
+0

是的,以分析的形式,它更有意义,因为这些值将是可用的,而不仅仅是用于显示。 – ElHaix 2013-02-21 15:00:13

+0

反思修改BookSleeve代码,我将该方法添加到了我的助手类中。很好,谢谢。 – ElHaix 2013-02-21 15:26:27

+0

@ElHaix现在我的本地副本(在'.Server'下):'Task > GetInfo(string section = null,bool queueJump = false);' – 2013-02-21 15:43:53