Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pmnameindom(3) [centos man page]

PMNAMEINDOM(3)						     Library Functions Manual						    PMNAMEINDOM(3)

NAME
pmNameInDom - translate an instance identifier into an instance name C SYNOPSIS
#include <pcp/pmapi.h> int pmNameInDom(pmInDom indom, int inst, char **name); cc ... -lpcp DESCRIPTION
For the instance domain indom, in the current Performance Metrics Application Programming Interface (PMAPI) context, locate the instance with the internal instance identifier given by inst, and return the full external instance identification via name. The value for the instance domain indom is typically extracted from a pmDesc structure, following a call to pmLookupDesc(3) for a particu- lar performance metric. The space for the value of name will have been allocated in pmNameInDom with malloc(3C), and it is the responsibility of the caller to free(3C) the space when it is no longer required. pmNameInDom returns zero on success. SEE ALSO
PMAPI(3), pmGetConfig(3), pmGetInDom(3), pmLookupInDom(3), pmNameInDomArchive(3), pcp.conf(5) and pcp.env(5). DIAGNOSTICS
PM_ERR_INDOM indom is not a valid instance domain identifier PM_ERR_INST The instance identifier inst is not known for the instance domain indom in the current PMAPI context Performance Co-Pilot PCP PMNAMEINDOM(3)

Check Out this Related Man Page

PMGETINDOM(3)						     Library Functions Manual						     PMGETINDOM(3)

NAME
pmGetInDom - get instance identifiers for a performance metrics instance domain C SYNOPSIS
#include <pcp/pmapi.h> int pmGetInDom(pmInDom indom, int **instlist, char ***namelist); cc ... -lpcp DESCRIPTION
In the current Performance Metrics Application Programming Interface (PMAPI) context, locate the description of the instance domain indom, and return via instlist the internal instance identifiers for all instances, and via namelist the full external identifiers for all instances. The number of instances found is returned as the function value (else less than zero to indicate an error). The value for the instance domain indom is typically extracted from a pmDesc structure, following a call to pmLookupDesc(3) for a particu- lar performance metric. The resulting lists of instance identifiers (instlist and namelist), and the names that the elements of namelist point to, will have been allocated by pmGetInDom with two calls to malloc(3C), and it is the responsibility of the caller to free(instlist) and free(namelist) to release the space when it is no longer required. When the result of pmGetInDom is less than one, both instlist and namelist are undefined (no space will have been allocated, and so calling free(3C) is a singularly bad idea). PCP ENVIRONMENT
Environment variables with the prefix PCP_ are used to parameterize the file and directory names used by PCP. On each installation, the file /etc/pcp.conf contains the local values for these variables. The $PCP_CONF variable may be used to specify an alternative configura- tion file, as described in pcp.conf(5). Values for these variables may be obtained programmatically using the pmGetConfig(3) function. SEE ALSO
PMAPI(3), pmGetConfig(3), pmGetInDomArchive(3), pmLookupDesc(3), pmLookupInDom(3), pmNameInDom(3), pcp.conf(5) and pcp.env(5). DIAGNOSTICS
PM_ERR_INDOM indom is not a valid instance domain identifier Performance Co-Pilot PCP PMGETINDOM(3)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

excuse my stupidity

I am getting a variable from a web page ($inst) which is looked at by the loop: if ($inst == 2) { do stuff } the problem is that no matter what the value of $inst the code enters the loop. I know it is some thing small and stupid, but any help would be appreciated. john (3 Replies)
Discussion started by: jmg5
3 Replies

2. UNIX for Dummies Questions & Answers

finding first instance

I have a file with 3 columns. Often the first two will hold the same values and the third may differ. I only want one row for each. i.e. aaa,bbb,1 aaa,bbb,2 aaa,bbb,3 xxx,yyy,1 xxx,yyy,2 zzz,rrr,5 Should be aaa,bbb,1 xxx,yyy,1 zzz,rrr,5 I just want the first instance of... (20 Replies)
Discussion started by: peter.herlihy
20 Replies

3. AIX

IBM TDS/SDS (LDAP) - can I mix endianness among servers in an instance ?

I'd like to add some x/linux-based servers to my current AIX-based TDS/SDS server community. Reading the Fine Install Guide (rtfig ?) I believe this may be covered by the section "Upgrade an instance of a previous version to a different computer" i.e. I'm going to install latest/greatest SDS on a... (4 Replies)
Discussion started by: maraixadm
4 Replies