From f75de3c94494e66b8b4f51c621239178448c9057 Mon Sep 17 00:00:00 2001 From: wo_cow Date: Mon, 4 Mar 2024 16:54:25 +0800 Subject: [PATCH] update dos on metrics about ioctl delay and write rate of container --- gopher_tech.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gopher_tech.md b/gopher_tech.md index fbdad51..a66a231 100644 --- a/gopher_tech.md +++ b/gopher_tech.md @@ -202,7 +202,14 @@ | fs_inodes_total | Gauge | num | 容器内inode资源统计(总计) | | cpu_cfs_throttled_seconds_total | Gauge | seconds | 容器限流 | +## 容器读写性能 +实体名:container + +| metrics_name | metrics_type | unit | metrics description | +| ------------ | ------------ | ------- | ---------------------------- | +| dir | Label | | 观测容器指定目录 | +| write_rate | Gauge | bytes/s | 容器往上述指定目录写入的速率 | ## GPU/NPU @@ -361,6 +368,18 @@ | gc_coll_secs_count | gauge | num | 应用内发生GC次数 | | gc_coll_secs_sum | gauge | seconds | 应用内GC花费的总时间 | +#### 应用IOCTL + +| metrics_name | metrics_type | unit | metrics description | +| ------------ | ------------ | ----- | ----------------------- | +| ioctl_fd | label | | 应用调用ioctl的设备fd | +| ioctl_dir | label | | 应用调用ioctl的方向 | +| ioctl_type | label | | 应用调用ioctl的幻数 | +| ioctl_nr | label | | 应用调用ioctl的序数 | +| ioctl_size | gauge | bytes | 应用调用ioctl的数据大小 | +| ns_ioctl | gauge | ns | 应用调用ioctl的时延 | + + ### 应用网络 #### TCP指标 -- Gitee