Now that Graphite is read-only for a while, we can now be sure that this is final. This means we can remove all the code that sents metrics there.
This means especially:
$this->statsFactory->withComponent( 'GrowthExperiments' ) ->getCounter( 'question_poster_edits_total' ) ->setLabel( 'tag', $tagId ) ->setLabel( 'wiki', $wiki ) ->copyToStatsdAt( $wiki . '.GrowthExperiments.QuestionPoster.' . $tagId ) // <-- this line should be removed everywhere! ->increment();
mw.track( 'timing.growthExperiments.specialHomepage.navigationDuration', navigationEntries[ 0 ].loadEventEnd ); // ⬆️ the part above, starting with "timing" or "counter", needs to be removed ⬆️ // ⬇️ the part below, starting with "stats.", that we keep ⬇️ mw.track( 'stats.mediawiki_GrowthExperiments_homepage_loadeventend_seconds', navigationEntries[ 0 ].loadEventEnd, { // eslint-disable-next-line camelcase navigation_type: navigationEntries[ 0 ].type, wiki: mw.config.get( 'wgDBname' ) } );