From 6e6f71ccb66890be85fd57bcc61f975c4d7778c5 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 10 Jul 2023 11:56:55 +0800 Subject: [PATCH] fix typo error --- .../monitor/unity/collector/plugin/imc_latency/imc_latency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tools/monitor/unity/collector/plugin/imc_latency/imc_latency.c b/source/tools/monitor/unity/collector/plugin/imc_latency/imc_latency.c index 3bc81b47..0c3e5a46 100644 --- a/source/tools/monitor/unity/collector/plugin/imc_latency/imc_latency.c +++ b/source/tools/monitor/unity/collector/plugin/imc_latency/imc_latency.c @@ -731,7 +731,7 @@ int call(int t, struct unity_lines* lines) { line = unity_get_line(lines, (1 + env.nr_channel) * socket_id); unity_set_table(line, "imc_socket_latency"); unity_set_index(line, 0, "socket", socket_name); - unity_set_value(line, 0, "ralt", + unity_set_value(line, 0, "rlat", after.socket_record_arr[socket_id].read_latency); unity_set_value(line, 1, "wlat", after.socket_record_arr[socket_id].write_latency); -- Gitee