1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/glanceables/glanceables_metrics.h"
#include <string>
#include "ash/system/unified/classroom_bubble_student_view.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/user_metrics.h"
#include "base/strings/strcat.h"
#include "base/time/time.h"
namespace {
constexpr char kLoginToShowTimeHistogram[] =
"Ash.Glanceables.TimeManagement.LoginToShowTime";
constexpr char kTotalShowTimeHistogram[] =
"Ash.Glanceables.TimeManagement.TotalShowTime";
constexpr char kTimeManagementTaskPrefix[] =
"Ash.Glanceables.TimeManagement.Tasks";
constexpr char kTimeManagementClassroomPrefix[] =
"Ash.Glanceables.TimeManagement.Classroom";
} // namespace
namespace ash {
void RecordActiveTaskListChanged() {
base::RecordAction(
base::UserMetricsAction("Glanceables_Tasks_ActiveTaskListChanged"));
}
void RecordTaskMarkedAsCompleted(bool complete) {
if (complete) {
base::RecordAction(
base::UserMetricsAction("Glanceables_Tasks_TaskMarkedAsCompleted"));
} else {
base::RecordAction(
base::UserMetricsAction("Glanceables_Tasks_TaskMarkedAsIncomplete"));
}
}
void RecordTasksLaunchSource(TasksLaunchSource source) {
switch (source) {
case TasksLaunchSource::kHeaderButton:
base::RecordAction(base::UserMetricsAction(
"Glanceables_Tasks_LaunchTasksApp_HeaderButton"));
break;
case TasksLaunchSource::kAddNewTaskButton:
base::RecordAction(base::UserMetricsAction(
"Glanceables_Tasks_LaunchTasksApp_AddNewTaskButton"));
break;
case TasksLaunchSource::kFooterButton:
base::RecordAction(base::UserMetricsAction(
"Glanceables_Tasks_LaunchTasksApp_FooterButton"));
break;
}
}
void RecordAddTaskButtonShown() {
base::RecordAction(
base::UserMetricsAction("Glanceables_Tasks_AddTaskButtonShown"));
}
void RecordLoginToShowTime(base::TimeDelta login_to_show_time) {
base::UmaHistogramMediumTimes(kLoginToShowTimeHistogram, login_to_show_time);
}
void RecordTotalShowTime(base::TimeDelta total_show_time) {
base::UmaHistogramMediumTimes(kTotalShowTimeHistogram, total_show_time);
}
void RecordClassromInitialLoadTime(bool first_occurrence,
base::TimeDelta load_time) {
std::string histogram_name =
base::StrCat({kTimeManagementClassroomPrefix, ".OpenToInitialLoadTime"});
if (first_occurrence) {
histogram_name += ".FirstOccurence";
} else {
histogram_name += ".SubsequentOccurence";
}
base::UmaHistogramMediumTimes(histogram_name, load_time);
}
void RecordClassroomChangeLoadTime(bool success, base::TimeDelta load_time) {
std::string histogram_name =
base::StrCat({kTimeManagementClassroomPrefix, ".ChangeListToLoadTime"});
if (success) {
histogram_name += ".Success";
} else {
histogram_name += ".Fail";
}
base::UmaHistogramMediumTimes(histogram_name, load_time);
}
void RecordTasksInitialLoadTime(bool first_occurrence,
base::TimeDelta load_time) {
std::string histogram_name =
base::StrCat({kTimeManagementTaskPrefix, ".OpenToInitialLoadTime"});
if (first_occurrence) {
histogram_name += ".FirstOccurence";
} else {
histogram_name += ".SubsequentOccurence";
}
base::UmaHistogramMediumTimes(histogram_name, load_time);
}
void RecordTasksChangeLoadTime(base::TimeDelta load_time) {
base::UmaHistogramMediumTimes(
base::StrCat({kTimeManagementTaskPrefix, ".ChangeListToLoadTime"}),
load_time);
}
void RecordTasksListChangeCount(int change_count) {
base::UmaHistogramCounts100(
"Ash.Glanceables.TimeManagement.Tasks.TasksListChangeCount",
change_count);
}
void RecordStudentAssignmentListShowTime(StudentAssignmentsListType list_type,
base::TimeDelta time_shown,
bool default_list) {
if (default_list) {
switch (list_type) {
case StudentAssignmentsListType::kAssigned:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"DefaultList.Assigned",
time_shown);
break;
case StudentAssignmentsListType::kNoDueDate:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"DefaultList.NoDueDate",
time_shown);
break;
case StudentAssignmentsListType::kMissing:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"DefaultList.Missing",
time_shown);
break;
case StudentAssignmentsListType::kDone:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"DefaultList.Done",
time_shown);
break;
}
} else {
switch (list_type) {
case StudentAssignmentsListType::kAssigned:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"ChangedList.Assigned",
time_shown);
break;
case StudentAssignmentsListType::kNoDueDate:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"ChangedList.NoDueDate",
time_shown);
break;
case StudentAssignmentsListType::kMissing:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"ChangedList.Missing",
time_shown);
break;
case StudentAssignmentsListType::kDone:
base::UmaHistogramMediumTimes(
"Ash.Glanceables.Classroom.Student.AssignmentListShownTime."
"ChangedList.Done",
time_shown);
break;
}
}
}
void RecordStudentSelectedListChangeCount(int change_count) {
base::UmaHistogramCounts100(
"Ash.Glanceables.Classroom.Student.SelectedListChangeCount",
change_count);
}
void RecordStudentAssignmentListSelected(StudentAssignmentsListType list_type) {
base::UmaHistogramEnumeration(
"Ash.Glanceables.Classroom.Student.ListSelected", list_type);
}
} // namespace ash
|