mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
637eb104b8
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
22 lines
1.1 KiB
Plaintext
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")
|