Skip to content

Commit

Permalink
update darshan-util docs counter descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
shanedsnyder committed Jun 10, 2024
1 parent 7dae5d6 commit b8abcda
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions darshan-util/doc/darshan-util.txt
Original file line number Diff line number Diff line change
Expand Up @@ -509,12 +509,16 @@ execution time.
[cols="40%,60%",options="header"]
|====
| counter name | description
| LUSTRE_OSTS | number of OSTs (object storage targets) for the file system
| LUSTRE_MDTS | number of MDTs (metadata targets) for the file system
| LUSTRE_STRIPE_OFFSET | OST id offset specified at file creation time
| LUSTRE_STRIPE_SIZE | stripe size for the file in bytes
| LUSTRE_STRIPE_COUNT | number of OSTs over which the file is striped
| LUSTRE_OST_ID_* | indices of OSTs over which the file is striped
| LUSTRE_NUM_COMPONENTS | number of instrumented components in the Lustre layout
| LUSTRE_COMP*_STRIPE_SIZE | stripe size for this file layout component in bytes
| LUSTRE_COMP*_STRIPE_COUNT | number of OSTs over which the file layout component is striped
| LUSTRE_COMP*_STRIPE_PATTERN | pattern (e.g., raid0, mdt, overstriped) for this file layout component
| LUSTRE_COMP*_FLAGS | captured flags (e.g. init, prefwr, stale) for this file layout component
| LUSTRE_COMP*_EXT_START | starting file extent for this file layout component
| LUSTRE_COMP*_EXT_END | ending file extent for this file layout component (-1 means EOF)
| LUSTRE_COMP*_MIRROR_ID | mirror ID for this file layout component, if mirrors are enabled
| LUSTRE_COMP*_POOL_NAME | Lustre OST pool used for this file layout component
| LUSTRE_COMP*_OST_ID_* | indices of OSTs over which this file layout component is striped
|====

.APXC module header record (if enabled, for Cray XC systems)
Expand Down
2 changes: 1 addition & 1 deletion include/darshan-lustre-log-format.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct darshan_lustre_record
* NOTE: this must be kept in sync with the definitions above
*/
#define LUSTRE_RECORD_SIZE(comps, osts) \
(sizeof(struct darshan_base_record) + sizeof(int64_t) + \
(sizeof(struct darshan_base_record) + sizeof(int64_t) + \
(sizeof(struct darshan_lustre_component) * (comps)) + \
(sizeof(OST_ID) * (osts)))

Expand Down

0 comments on commit b8abcda

Please sign in to comment.