-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement remote viewing #10
Comments
mmynk
added a commit
to mmynk/below
that referenced
this issue
Apr 29, 2024
…bator#10) For `--detail` and `--everything`, `below dump system...` shows aggregated view over all the CPUs. The change is to show per-CPU details when queried with `--detail` or `--everything` flag. Before: ```openmetrics system_cpu_softirq_pct{cpu="-1",hostname="ip-172-31-24-129"} 0 1696365681 system_cpu_softirq_pct{cpu="-1",hostname="ip-172-31-24-129"} 0 1696365685 ``` After: ```openmetrics system_cpus_0_softirq_pct{cpu="0",hostname="ip-172-31-24-129"} 0 1696365580 system_cpus_1_softirq_pct{cpu="1",hostname="ip-172-31-24-129"} 0.199203187250996 1696365580 system_cpus_0_softirq_pct{cpu="0",hostname="ip-172-31-24-129"} 0 1696365585 system_cpus_1_softirq_pct{cpu="1",hostname="ip-172-31-24-129"} 0 1696365585 ```
mmynk
added a commit
to mmynk/below
that referenced
this issue
May 21, 2024
…bator#10) For `--detail` and `--everything`, `below dump system...` shows aggregated view over all the CPUs. The change is to show per-CPU details when queried with `--detail` or `--everything` flag. Before: ```openmetrics # TYPE system_cpu_softirq_pct gauge system_cpu_softirq_pct{cpu="-1",hostname="ip-172-31-24-129"} 0 1696365681 # TYPE system_cpu_softirq_pct gauge system_cpu_softirq_pct{cpu="-1",hostname="ip-172-31-24-129"} 0 1696365685 ``` After: ```openmetrics # TYPE system_cpus_0_softirq_pct gauge system_cpus_0_softirq_pct{cpu="0",hostname="ip-172-31-24-129"} 0 1696365580 # TYPE system_cpus_1_softirq_pct gauge system_cpus_1_softirq_pct{cpu="1",hostname="ip-172-31-24-129"} 0.199203187250996 1696365580 # TYPE system_cpus_0_softirq_pct gauge system_cpus_0_softirq_pct{cpu="0",hostname="ip-172-31-24-129"} 0 1696365585 # TYPE system_cpus_1_softirq_pct gauge system_cpus_1_softirq_pct{cpu="1",hostname="ip-172-31-24-129"} 0 1696365585 ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have remote viewing implemented internally at FB. Laziness and dependency issues have kept it closed source. If there's any interest/desire from other folks to have it open sourced I can do it.
The text was updated successfully, but these errors were encountered: