1PMLOGLABEL(1) General Commands Manual PMLOGLABEL(1)
2
3
4
6 pmloglabel - check and repair a performance metrics archive label
7
9 pmloglabel [-lLsv?] [-h hostname] [-p pid] [-V version] [-Z timezone]
10 archive
11
13 pmloglabel verifies, reports on, and can modify all details of the la‐
14 bels in each of the files of a Performance Co-Pilot (PCP) archive. The
15 archive has the base name archive and must have been previously created
16 using pmlogger(1).
17
18 Each of the files in a PCP archive (metadata, temporal index, and one
19 or more data volumes) must contain a valid label at the start, else the
20 PCP tools will refuse to open the archive at all.
21
22 Thus, the primary function of pmloglabel is to be able to repair any
23 inconsistent or corrupt label fields, such that the entire archive is
24 not lost. It will not check the remainder of the archive, but it will
25 give you a fighting chance to recover otherwise lost data. Together,
26 pmloglabel and pmlogextract are able to produce a valid PCP archive
27 from many forms of corruption.
28
29 Note that if the temporal index is found to be corrupt, the "*.index"
30 file can be safely moved aside and the archive will still be accessi‐
31 ble, however retrievals may take longer without the index.
32
34 The available command line options are:
35
36 -h hostname, --host=hostname
37 Modify the logged hostname in the archive label, for all files in
38 the archive.
39
40 -l, --label
41 Dump out the archive label, showing the archive format version,
42 the time and date for the start and (current) end of the archive,
43 and the host from which the performance metrics values were col‐
44 lected.
45
46 -L Like -l, just a little more verbose, showing also the timezone and
47 creator process identifier from the archive label.
48
49 -p pid, --pid=pid
50 Set the process identifier stored in the archive label to pid, for
51 all files in the archive.
52
53 -s Rewrite the sentinel values which precede and follow the archive
54 label, for all files in the archive.
55
56 -v, --verbose
57 Verbose mode. Additional progress information is produced at each
58 step.
59
60 -V version, --version=version
61 Stamp the version number into the magic number field at the start
62 of the archive label, for all files in the archive.
63
64 -Z timezone, --timezone=timezone
65 Changes the timezone in the archive labels to timezone in the for‐
66 mat of the environment variable TZ as described in environ(7).
67
68 -?, --help
69 Display usage message and exit.
70
72 The following demonstrates the use of pmloglabel in finding and then
73 correcting a corrupt field (PID) in the label of the temporal index of
74 an archive named "20080125".
75
76 $ pmdumplog -l 20080125
77 pmdumplog: Cannot open archive "20080125": Illegal label record at start of a PCP archive file
78 $ pmloglabel 20080125
79 Mismatched PID (5264/5011) between temporal index and data volume 0
80 $ pmloglabel -p 5264 20080125
81 $ pmdumplog -l 20080125
82 Log Label (Log Format Version 2)
83 Performance metrics from host fw1
84 commencing Fri Jan 25 00:10:09.341 2008
85 ending Sat Jan 26 00:09:54.344 2008
86
88 pmloglabel exits with status 0 if the archive labels are clean. If in‐
89 voked incorrectly, the exit status will be 1. If corruption is de‐
90 tected and still exists at the end, the exit status will be 2. If re‐
91 quested to write out the archive labels, and some aspect of that write
92 out fails, then the exit status will be 3.
93
95 $PCP_LOG_DIR/pmlogger/<hostname>
96 Default directory for PCP archives containing performance metric
97 values collected from the host <hostname>.
98
100 Environment variables with the prefix PCP_ are used to parameterize the
101 file and directory names used by PCP. On each installation, the file
102 /etc/pcp.conf contains the local values for these variables. The
103 $PCP_CONF variable may be used to specify an alternative configuration
104 file, as described in pcp.conf(5).
105
107 PCPIntro(1), pmlogcheck(1), pmlogextract(1), pmlogger(1), pmlog‐
108 ger_check(1), pmlogger_daily(1), pmlogrewrite(1), pcp.conf(5) and
109 pcp.env(5).
110
111
112
113Performance Co-Pilot PCP PMLOGLABEL(1)