1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _FS_CEPH_MDS_METRIC_H
3 #define _FS_CEPH_MDS_METRIC_H
5 #include <linux/types.h>
6 #include <linux/percpu_counter.h>
7 #include <linux/ktime.h>
9 extern bool disable_send_metrics;
11 enum ceph_metric_type {
12 CLIENT_METRIC_TYPE_CAP_INFO,
13 CLIENT_METRIC_TYPE_READ_LATENCY,
14 CLIENT_METRIC_TYPE_WRITE_LATENCY,
15 CLIENT_METRIC_TYPE_METADATA_LATENCY,
16 CLIENT_METRIC_TYPE_DENTRY_LEASE,
18 CLIENT_METRIC_TYPE_MAX = CLIENT_METRIC_TYPE_DENTRY_LEASE,
22 * This will always have the highest metric bit value
23 * as the last element of the array.
25 #define CEPHFS_METRIC_SPEC_CLIENT_SUPPORTED { \
26 CLIENT_METRIC_TYPE_CAP_INFO, \
27 CLIENT_METRIC_TYPE_READ_LATENCY, \
28 CLIENT_METRIC_TYPE_WRITE_LATENCY, \
29 CLIENT_METRIC_TYPE_METADATA_LATENCY, \
30 CLIENT_METRIC_TYPE_DENTRY_LEASE, \
32 CLIENT_METRIC_TYPE_MAX, \
35 /* metric caps header */
36 struct ceph_metric_cap {
37 __le32 type; /* ceph metric type */
42 __le32 data_len; /* length of sizeof(hit + mis + total) */
48 /* metric read latency header */
49 struct ceph_metric_read_latency {
50 __le32 type; /* ceph metric type */
55 __le32 data_len; /* length of sizeof(sec + nsec) */
60 /* metric write latency header */
61 struct ceph_metric_write_latency {
62 __le32 type; /* ceph metric type */
67 __le32 data_len; /* length of sizeof(sec + nsec) */
72 /* metric metadata latency header */
73 struct ceph_metric_metadata_latency {
74 __le32 type; /* ceph metric type */
79 __le32 data_len; /* length of sizeof(sec + nsec) */
84 /* metric dentry lease header */
85 struct ceph_metric_dlease {
86 __le32 type; /* ceph metric type */
91 __le32 data_len; /* length of sizeof(hit + mis + total) */
97 struct ceph_metric_head {
98 __le32 num; /* the number of metrics that will be sent */
101 /* This is the global metrics */
102 struct ceph_client_metric {
103 atomic64_t total_dentries;
104 struct percpu_counter d_lease_hit;
105 struct percpu_counter d_lease_mis;
107 atomic64_t total_caps;
108 struct percpu_counter i_caps_hit;
109 struct percpu_counter i_caps_mis;
111 spinlock_t read_latency_lock;
113 ktime_t read_latency_sum;
114 ktime_t read_latency_sq_sum;
115 ktime_t read_latency_min;
116 ktime_t read_latency_max;
118 spinlock_t write_latency_lock;
120 ktime_t write_latency_sum;
121 ktime_t write_latency_sq_sum;
122 ktime_t write_latency_min;
123 ktime_t write_latency_max;
125 spinlock_t metadata_latency_lock;
127 ktime_t metadata_latency_sum;
128 ktime_t metadata_latency_sq_sum;
129 ktime_t metadata_latency_min;
130 ktime_t metadata_latency_max;
132 /* The total number of directories and files that are opened */
133 atomic64_t opened_files;
135 /* The total number of inodes that have opened files or directories */
136 struct percpu_counter opened_inodes;
137 struct percpu_counter total_inodes;
139 struct ceph_mds_session *session;
140 struct delayed_work delayed_work; /* delayed work */
143 static inline void metric_schedule_delayed(struct ceph_client_metric *m)
145 if (disable_send_metrics)
149 schedule_delayed_work(&m->delayed_work, round_jiffies_relative(HZ));
152 extern int ceph_metric_init(struct ceph_client_metric *m);
153 extern void ceph_metric_destroy(struct ceph_client_metric *m);
155 static inline void ceph_update_cap_hit(struct ceph_client_metric *m)
157 percpu_counter_inc(&m->i_caps_hit);
160 static inline void ceph_update_cap_mis(struct ceph_client_metric *m)
162 percpu_counter_inc(&m->i_caps_mis);
165 extern void ceph_update_read_latency(struct ceph_client_metric *m,
166 ktime_t r_start, ktime_t r_end,
168 extern void ceph_update_write_latency(struct ceph_client_metric *m,
169 ktime_t r_start, ktime_t r_end,
171 extern void ceph_update_metadata_latency(struct ceph_client_metric *m,
172 ktime_t r_start, ktime_t r_end,
174 #endif /* _FS_CEPH_MDS_METRIC_H */