@@ -101,11 +101,20 @@ pub enum DataCategory {
101
101
///
102
102
/// This is the category for logs for which we store log event total bytes for users.
103
103
LogByte = 24 ,
104
- /// ProfileDurationUi
104
+ /// Profile duration of a UI profile.
105
105
///
106
106
/// This data category is used to count the number of milliseconds per indexed UI profile
107
107
/// chunk.
108
+ ///
109
+ /// See also: [`Self::ProfileDuration`]
108
110
ProfileDurationUi = 25 ,
111
+ /// UI Profile Chunk.
112
+ ///
113
+ /// This data category is used to count the number of milliseconds per indexed UI profile
114
+ /// chunk.
115
+ ///
116
+ /// See also: [`Self::ProfileChunk`]
117
+ ProfileChunkUi = 26 ,
109
118
110
119
//
111
120
// IMPORTANT: After adding a new entry to DataCategory, go to the `relay-cabi` subfolder and run
@@ -145,6 +154,7 @@ impl DataCategory {
145
154
"profile_duration" => Self :: ProfileDuration ,
146
155
"profile_duration_ui" => Self :: ProfileDurationUi ,
147
156
"profile_chunk" => Self :: ProfileChunk ,
157
+ "profile_chunk_ui" => Self :: ProfileChunkUi ,
148
158
"metric_second" => Self :: MetricSecond ,
149
159
"replay_video" => Self :: DoNotUseReplayVideo ,
150
160
"uptime" => Self :: Uptime ,
@@ -180,6 +190,7 @@ impl DataCategory {
180
190
Self :: ProfileDuration => "profile_duration" ,
181
191
Self :: ProfileDurationUi => "profile_duration_ui" ,
182
192
Self :: ProfileChunk => "profile_chunk" ,
193
+ Self :: ProfileChunkUi => "profile_chunk_ui" ,
183
194
Self :: MetricSecond => "metric_second" ,
184
195
Self :: Uptime => "uptime" ,
185
196
Self :: AttachmentItem => "attachment_item" ,
0 commit comments