Skip to content
  • Sponsor performancecopilot/pcp

  • Notifications You must be signed in to change notification settings
  • Fork 242

Commit 25dd2e3

Browse files
committedFeb 2, 2025·
update readme
1 parent fe3cbfa commit 25dd2e3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎src/pmdas/denki/README

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Troubleshooting
5959
Usage scenarios/examples
6060
========================
6161

62-
- denki.raplsysfs:
62+
- denki.rapl.sysfs:
6363

64-
If RAPL via /sys is available, denki.raplsysfs can give an estimation
64+
If RAPL via /sys is available, denki.rapl.sysfs can give an estimation
6565
of the current power consumption. On laptops, typically 4 RAPL
6666
domains are available:
6767

@@ -79,15 +79,15 @@ Usage scenarios/examples
7979
with these. For these, i.e. domains 0-package-0 and
8080
1-package-0 will become available as instances, i.e.
8181

82-
denki.raplsysfs
82+
denki.rapl.sysfs
8383
inst [0 or "0-package-0"] value 169013
8484
inst [1 or "0-dram"] value 12294
8585
inst [2 or "1-package-1"] value 135669
8686
inst [3 or "1-dram"] value 9600
8787

88-
- denki.raplmsr:
88+
- denki.rapl.msr:
8989

90-
If RAPL via MSR cpu registers is available, denki.raplmsr can
90+
If RAPL via MSR cpu registers is available, denki.rapl.msr can
9191
give an estimation of the current power consumption. On
9292
laptops, typically 5 RAPL MSR domains are available:
9393

‎src/pmdas/denki/denki.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ static void denki_rapl_sysfs_init(void)
11051105
else
11061106
pmsprintf(tmp,sizeof(tmp),"%s",event_names[pkg][dom]);
11071107

1108-
/* raplsysfs */
1108+
/* rapl.sysfs */
11091109
sts = pmdaCacheStore(*rapl_sysfs_indom, PMDA_CACHE_ADD, tmp, NULL);
11101110
if (sts < 0) {
11111111
pmNotifyErr(LOG_ERR, "pmdaCacheStore failed: %s", pmErrStr(sts));
@@ -1271,10 +1271,10 @@ denki_label(int ident, int type, pmLabelSet **lpp, pmdaExt *pmda)
12711271
serial = pmInDom_serial((pmInDom)ident);
12721272
switch (serial) {
12731273
case RAPL_SYSFS_INDOM:
1274-
pmdaAddLabels(lpp, "{\"indom_name\":\"raplsysfs\"}");
1274+
pmdaAddLabels(lpp, "{\"indom_name\":\"rapl sysfs\"}");
12751275
break;
12761276
case RAPL_MSR_INDOM:
1277-
pmdaAddLabels(lpp, "{\"indom_name\":\"raplmsr\"}");
1277+
pmdaAddLabels(lpp, "{\"indom_name\":\"rapl msr\"}");
12781278
break;
12791279
case BAT_ENERGYNOW_INDOM:
12801280
pmdaAddLabels(lpp, "{\"units\":\"watt hours\"}");

0 commit comments

Comments
 (0)
Please sign in to comment.