Unix and Linux Discussions Tagged with performance |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
19,120 |
Web Development |
|
|
|
3 |
2,176 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,117 |
Windows & DOS: Issues & Discussions |
|
|
|
17 |
6,431 |
Shell Programming and Scripting |
|
|
|
14 |
7,940 |
What is on Your Mind? |
|
|
|
6 |
3,856 |
Shell Programming and Scripting |
|
|
|
8 |
6,842 |
AIX |
|
|
|
5 |
1,695 |
AIX |
|
|
|
5 |
696 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
882 |
Shell Programming and Scripting |
|
|
|
11 |
3,237 |
Solaris |
|
|
|
11 |
3,927 |
AIX |
|
|
|
12 |
1,761 |
Shell Programming and Scripting |
|
|
|
1 |
2,260 |
Shell Programming and Scripting |
|
|
|
3 |
3,599 |
Virtualization and Cloud Computing |
|
|
|
182 |
139,129 |
SuSE |
|
|
|
13 |
2,859 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,574 |
OS X (Apple) |
|
|
|
7 |
3,973 |
Shell Programming and Scripting |
|
|
|
0 |
2,322 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
2,266 |
AIX |
|
|
|
2 |
3,518 |
High Performance Computing |
|
|
|
6 |
9,782 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,444 |
AIX |
|
|
|
6 |
6,328 |
AIX |
|
|
|
5 |
12,167 |
AIX |
|
|
|
7 |
4,973 |
AIX |
|
|
|
1 |
3,769 |
AIX |
|
|
|
7 |
2,512 |
Shell Programming and Scripting |
|
|
|
1 |
10,326 |
Tips and Tutorials |
|
|
|
7 |
13,018 |
AIX |
|
|
|
2 |
8,169 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
11,718 |
AIX |
|
|
|
14 |
3,708 |
Programming |
|
|
|
3 |
1,887 |
UNIX and Linux Applications |
|
|
|
0 |
3,714 |
Solaris |
|
|
|
1 |
3,230 |
Solaris |
|
|
|
1 |
1,910 |
Shell Programming and Scripting |
|
|
|
9 |
2,598 |
Solaris |
|
|
|
7 |
5,260 |
Solaris |
PMDAPMID(3) Library Functions Manual PMDAPMID(3)
NAME
pmdaPMID - translate a dynamic performance metric name into a PMID
C SYNOPSIS
#include <pcp/pmapi.h>
#include <pcp/impl.h>
#include <pcp/pmda.h>
int pmdaPMID(char *name, pmID *pmid, pmdaExt *pmda);
cc ... -lpcp_pmda -lpcp
DESCRIPTION
As part of the Performance Metrics Domain Agent (PMDA) API (see PMDA(3)), pmdaPMID is the generic callback for translating a dynamic metric
name into a PMID (pmid).
Because implementing dynamic performance metrics requires specific PMDA support, and the facility is an optional component of a PMDA (most
PMDAs do not support dynamic performance metrics), pmdaPMID is a skeleton implementation that returns PM_ERR_NAME.
A PMDA that supports dynamic performance metrics will provide a private callback that replaces pmdaPMID (by assignment to version.four.pmid
of the pmdaInterface structure) and implements the translation from a dynamic performance metric name into the associated pmid.
DIAGNOSTICS
pmdaPMID returns PM_ERR_NAME if the name is not recognized or cannot be translated, else returns 0.
CAVEAT
The PMDA must be using PMDA_PROTOCOL_4 or later, as specified in the call to pmdaDSO(3) or pmdaDaemon(3).
SEE ALSO
PMAPI(3), PMDA(3), pmdaDaemon(3), pmdaDSO(3), pmdaMain(3) and pmLookupName(3).
Performance Co-Pilot PCP PMDAPMID(3)