osquery-1/specs/linux/msr.table
seph 637eb104b8 Spelling (#5256)
Summary:
While running `misspell` on a different codebase. I happened to notice that some misspellings in the osquery code base. So, I fixed them
Pull Request resolved: https://github.com/facebook/osquery/pull/5256

Reviewed By: guliashvili

Differential Revision: D13670897

Pulled By: fmanco

fbshipit-source-id: 5d33d858284955c376e8c3980acdf366d4edf3d3
2019-01-16 08:17:07 -08:00

22 lines
1.1 KiB
Plaintext

table_name("msr")
description("Various pieces of data stored in the model specific register per "
"processor. NOTE: the msr kernel module must be enabled, and "
"osquery must be run as root.")
schema([
Column("processor_number", BIGINT,
"The processor number as reported in /proc/cpuinfo"),
Column("turbo_disabled", BIGINT, "Whether the turbo feature is disabled."),
Column("turbo_ratio_limit", BIGINT, "The turbo feature ratio limit."),
Column("platform_info", BIGINT, "Platform information."),
Column("perf_ctl", BIGINT, "Performance setting for the processor."),
Column("perf_status", BIGINT, "Performance status for the processor."),
Column("feature_control", BIGINT, "Bitfield controlling enabled features."),
Column("rapl_power_limit", BIGINT,
"Run Time Average Power Limiting power limit."),
Column("rapl_energy_status", BIGINT,
"Run Time Average Power Limiting energy status."),
Column("rapl_power_units", BIGINT,
"Run Time Average Power Limiting power units.")
])
implementation("model_specific_register@genModelSpecificRegister")