我在LSF中使用lsload -I io
来测量节点上的IO使用情况,如果io值超过9999,则会转为科学格式,如1e+04
或4e+04
。有没有办法以整数(而不是科学)格式获得实际数字?
答案 0 :(得分:1)
我似乎无法通过现有的lsload命令找到方法,但您可以通过使用API编写一个简单的命令来为您获取它。
这里有一些(非常特别的)示例代码,可以将所有主机上的'io'加载作为浮点数返回,你可以修改它来做一些奇特的东西,比如给你想要的主机等等。
ls_ioload.c:
#include <stdio.h>
#include <stdlib.h>
#include <lsf/lsf.h>
int main(int argc, char *argv[]) {
struct hostLoad* hL;
int numhosts = 0;
char* hostnames[256];
char* indices[] = { "io" , NULL };
char** nlp = indices;
int i;
hL = ls_loadinfo(NULL,&numhosts,OK_ONLY|IGNORE_RES,NULL,hostnames,0,&nlp);
if( !hL ){
ls_perror("ls_ioload");
exit(-10);
}
if( nlp[0] ){
printf("HOST\t%s\n",nlp[0]);
for(i = 0; i < numhosts; i++){
printf("%s\t%f\n",hL[i].hostName,hL[i].li[0]);
}
}
exit(0);
}
您可以使用以下内容进行编译:
gcc -o ls_ioload -I$LSF_ENVDIR/../9.1/include ls_ioload.c $LSF_ENVDIR/../9.1/linux2.6-glibc2.3-x86_64/lib/liblsf.a
我的小型主机群集上的示例输出:
[~]$ lsload -I io
HOST_NAME status io
hostA ok 1e+4
[~]$ ./ls_ioload
HOST io
hostA 12074.595703