Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion config/metricConfigs/learnMetrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ const allowedMetrics: MetricsConfig = [
protocol: "statsd"
},
{
name: "competitions__time_to_initial_page_load",
name: "competitions__time_to_initial_explore_page_load",
help: "Measure the time for competitions explore page load",
type: "histogram",
labels: [
Expand All @@ -227,6 +227,26 @@ const allowedMetrics: MetricsConfig = [
],
protocol: "statsd"
},
{
name: "competitions__time_to_initial_details_page_load",
help: "Measure the time for competitions details page load",
type: "histogram",
labels: [
{
name: "appName",
allowedValues: ["/learn/competitions"]
},
{
name: "pageName",
allowedValues: ["detailsPage"]
},
{
name: "underThreshold",
allowedValues: ["true", "false"]
},
],
protocol: "statsd"
},
{
name: "competitions__time_to_entries_page_load",
help: "Measure the time for competitions details page load",
Expand Down