10 2023 档案
摘要:gpu监控:prometheus方案详解 本文档基于开源项目[nvidia_gpu_exporter](https://github.com/utkuozdemir/nvidia_gpu_exporter)实现gpu监控 参考文档:https://zhuanlan.zhihu.com/p/54432
阅读全文
摘要:参考资料 https://blog.51cto.com/u_11555417/5611424 https://www.cnblogs.com/khtt/p/17480672.html 查找占用磁盘最大的容器,并列出对应container id crictl stats |awk '{print $4
阅读全文
摘要:https://blog.csdn.net/m0_47015897/article/details/130045912
阅读全文
摘要:# 1.遍历字典 d = {'a': 1, 'b': 2, 'c': 3, 'd':3} ''' # 1.1遍历所有键 for key in d: print(key) for key in d.keys(): print(key) # 1.2遍历所有值 for value in d.values(
阅读全文