1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/*
* Copyright (c) 1997-2001 Silicon Graphics, Inc. All Rights Reserved.
*/
/*
* ping pmcd ... when the connection is lost, note time.
* keep pinging ... when connection is resumed, report time delta.
*
* Has to be run as root to control pmcd
*/
#include <ctype.h>
#include <pcp/pmapi.h>
#include <pcp/impl.h>
int
main(int argc, char **argv)
{
struct timeval now;
struct timeval then;
pmResult *rp;
int i;
char *namelist[4];
pmID pmidlist[4];
int numpmid;
int ctx;
int c;
int sts;
int errflag = 0;
static const struct timeval delay = { 0, 10000 };
/*
* was sginap(10) ... I think this dated from the sgi days when this
* was, 10 * 1/100 (1/HZ) seconds, so 100,000 usec or 100 msec ...
* but this is not reliable for the QA test (200), so changed to
* 10 msec
*/
__pmSetProgname(argv[0]);
while ((c = getopt(argc, argv, "D:")) != EOF) {
switch (c) {
#ifdef PCP_DEBUG
case 'D': /* debug flag */
sts = __pmParseDebug(optarg);
if (sts < 0) {
fprintf(stderr, "%s: unrecognized debug flag specification (%s)\n",
pmProgname, optarg);
errflag++;
}
else
pmDebug |= sts;
break;
#endif
case '?':
default:
errflag++;
break;
}
}
if (errflag) {
fprintf(stderr,
"Usage: %s options ...\n\
\n\
Options:\n\
-D N set pmDebug debugging flag to N\n",
pmProgname);
exit(1);
}
if ((sts = pmLoadNameSpace(PM_NS_DEFAULT)) < 0) {
fprintf(stderr, "pmLoadNameSpace: %s\n", pmErrStr(sts));
exit(1);
}
if ((ctx = pmNewContext(PM_CONTEXT_HOST, "localhost")) < 0) {
fprintf(stderr, "pmNewContext: %s\n", pmErrStr(ctx));
exit(1);
}
i = 0;
namelist[i++] = "sample.long.write_me";
numpmid = i;
sts = pmLookupName(numpmid, namelist, pmidlist);
if (sts < 0) {
fprintf(stderr, "pmLookupName: %s\n", pmErrStr(sts));
for (i = 0; i < numpmid; i++) {
if (pmidlist[i] == PM_ID_NULL)
fprintf(stderr, " %s - not known\n", namelist[i]);
}
exit(1);
}
for ( ; ; ) {
if ((sts = pmFetch(1, pmidlist, &rp)) < 0) {
fprintf(stderr, "pmFetch failed: %s\n", pmErrStr(sts));
if (sts != PM_ERR_IPC && sts != -ECONNRESET) {
/* unexpected */
fprintf(stderr, "Bogus error?\n");
exit(1);
}
gettimeofday(&then, (struct timezone *)0);
break;
}
pmFreeResult(rp);
__pmtimevalSleep(delay);
}
for ( ; ; ) {
if ((sts = pmReconnectContext(ctx)) >= 0) {
fprintf(stderr, "pmReconnectContext: success\n");
gettimeofday(&now, (struct timezone *)0);
fprintf(stderr, "delay: %.0f secs\n", __pmtimevalSub(&now, &then));
break;
}
__pmtimevalSleep(delay);
}
exit(0);
}
|