10 2023 档案

摘要:gpu监控:prometheus方案详解 本文档基于开源项目[nvidia_gpu_exporter](https://github.com/utkuozdemir/nvidia_gpu_exporter)实现gpu监控 参考文档:https://zhuanlan.zhihu.com/p/54432 阅读全文
posted @ 2023-10-13 16:54 冰冷的火 阅读(3038) 评论(0) 推荐(0)
摘要:参考资料 https://blog.51cto.com/u_11555417/5611424 https://www.cnblogs.com/khtt/p/17480672.html 查找占用磁盘最大的容器,并列出对应container id crictl stats |awk '{print $4 阅读全文
posted @ 2023-10-12 16:54 冰冷的火 阅读(537) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/m0_47015897/article/details/130045912 阅读全文
posted @ 2023-10-11 16:52 冰冷的火 阅读(12) 评论(0) 推荐(0)
摘要:# 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( 阅读全文
posted @ 2023-10-08 14:51 冰冷的火 阅读(16) 评论(0) 推荐(0)