4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
40 #include <sys/types.h>
44 #include <libcfs/util/param.h>
51 gettimeofday (&tv, NULL);
52 return (tv.tv_sec + tv.tv_usec / 1000000.0);
56 unsigned long msgs_alloc;
57 unsigned long msgs_max;
59 unsigned long send_count;
60 unsigned long recv_count;
61 unsigned long route_count;
62 unsigned long drop_count;
63 unsigned long long send_length;
64 unsigned long long recv_length;
65 unsigned long long route_length;
66 unsigned long long drop_length;
69 unsigned long long subull(unsigned long long a, unsigned long long b)
72 return -1ULL - b + a + 1;
77 unsigned long long subul(unsigned long a, unsigned long b)
80 return -1UL - b + a + 1;
85 double rul(unsigned long a, double secs)
87 return (double)a/secs;
90 double rull(unsigned long long a, double secs)
92 return (double)a/secs;
98 static char buffer[1024];
99 static double last = 0.0;
100 static counters_t old_counter;
103 counters_t new_counter;
107 lseek (fd, 0, SEEK_SET);
109 n = read(fd, buffer, sizeof(buffer) - 1);
112 fprintf (stderr, "Can't read statfile\n");
117 n = sscanf(buffer, "%lu %lu %lu %lu %lu %lu %lu %llu %llu %llu %llu",
118 &new_counter.msgs_alloc, &new_counter.msgs_max,
120 &new_counter.send_count, &new_counter.recv_count,
121 &new_counter.route_count, &new_counter.drop_count,
122 &new_counter.send_length, &new_counter.recv_length,
123 &new_counter.route_length, &new_counter.drop_length);
126 fprintf (stderr, "Can't parse statfile\n");
131 printf("M %lu(%lu) E %lu S %llu/%lu R %llu/%lu F %llu/%lu "
133 new_counter.msgs_alloc, new_counter.msgs_max,
135 new_counter.send_length, new_counter.send_count,
136 new_counter.recv_length, new_counter.recv_count,
137 new_counter.route_length, new_counter.route_count,
138 new_counter.drop_length, new_counter.drop_count);
142 counter.msgs_alloc = new_counter.msgs_alloc;
143 counter.msgs_max = new_counter.msgs_max;
145 counter.errors = subul(new_counter.errors, old_counter.errors);
146 counter.send_count = subul(new_counter.send_count, old_counter.send_count);
147 counter.recv_count = subul(new_counter.recv_count, old_counter.recv_count);
148 counter.route_count = subul(new_counter.route_count, old_counter.route_count);
149 counter.drop_count = subul(new_counter.drop_count, old_counter.drop_count);
150 counter.send_length = subull(new_counter.send_length, old_counter.send_length);
151 counter.recv_length = subull(new_counter.recv_length, old_counter.recv_length);
152 counter.route_length = subull(new_counter.route_length, old_counter.route_length);
153 counter.drop_length = subull(new_counter.drop_length, old_counter.drop_length);
155 printf ("M %3lu(%3lu) E %0.0f S %7.2f/%6.0f R %7.2f/%6.0f F %7.2f/%6.0f D %4.2f/%0.0f\n",
156 counter.msgs_alloc, counter.msgs_max,
157 rul(counter.errors,t),
158 rull(counter.send_length,t*1024.0*1024.0), rul(counter.send_count, t),
159 rull(counter.recv_length,t*1024.0*1024.0), rul(counter.recv_count, t),
160 rull(counter.route_length,t*1024.0*1024.0), rul(counter.route_count, t),
161 rull(counter.drop_length,t*1024.0*1024.0), rul(counter.drop_count, t));
164 old_counter = new_counter;
167 lseek (fd, 0, SEEK_SET);
171 int main(int argc, char **argv)
178 interval = atoi(argv[1]);
180 if (cfs_get_param_paths(&path, "stats") != 0) {
181 fprintf(stderr, "LNet stats not available\n");
185 fd = open(path.gl_pathv[0], O_RDONLY);
187 fprintf(stderr, "failed to open '%s': %s\n", path.gl_pathv[0],
189 cfs_free_param_data(&path);
192 cfs_free_param_data(&path);