在 Google 云计算中获取内存和 Cpu 使用情况
Get Memory and Cpu Usages in Google Cloud Compute
如何访问 CPU 云计算中给定项目中所有实例的使用情况和内存使用情况?
我在文档中找不到与此相关的任何内容。
您可以使用 Google Cloud Monitoring to see some usage metrics for your systems, and the Google Cloud Monitoring agent to get more precise metrics like memory. See the GCP metrics documentation 获取所有可用计算指标的列表。
您可以CPU、内存、网络、磁盘I/O您实例组的相关信息进入Google Stackdriver。 Stackdriver 带有单独的订阅。您可以将监控 GCP 基础设施的图表添加到一个 single/multiple dashboard/s.
您可以在How to monitor GCP infrastructure using stack driver visualization
中查看详细信息
如果您正在使用 Linux,您可以安装 gnome-system-monitor 和 ssh -X 到系统中并启动它。
对于 GCP 上的 Ubuntu:
"apt-get install gnome-system-monitor dbus"
从另一台 linux 机器(或者如果您在 windows 上安装了 cygwin/x),只需 "ssh -X {remote ip}" 然后输入 gnome-system-monitor 它将启动你的桌面。
您也可以在云平台上架设一个vncserver
Debian 上的内存使用情况:
free -m
在控制台中。
如何访问 CPU 云计算中给定项目中所有实例的使用情况和内存使用情况?
我在文档中找不到与此相关的任何内容。
您可以使用 Google Cloud Monitoring to see some usage metrics for your systems, and the Google Cloud Monitoring agent to get more precise metrics like memory. See the GCP metrics documentation 获取所有可用计算指标的列表。
您可以CPU、内存、网络、磁盘I/O您实例组的相关信息进入Google Stackdriver。 Stackdriver 带有单独的订阅。您可以将监控 GCP 基础设施的图表添加到一个 single/multiple dashboard/s.
您可以在How to monitor GCP infrastructure using stack driver visualization
中查看详细信息如果您正在使用 Linux,您可以安装 gnome-system-monitor 和 ssh -X 到系统中并启动它。
对于 GCP 上的 Ubuntu: "apt-get install gnome-system-monitor dbus"
从另一台 linux 机器(或者如果您在 windows 上安装了 cygwin/x),只需 "ssh -X {remote ip}" 然后输入 gnome-system-monitor 它将启动你的桌面。
您也可以在云平台上架设一个vncserver
Debian 上的内存使用情况:
free -m
在控制台中。