@@ -172,15 +172,16 @@ module.exports = Schema.extend({
172172 var timeToFirstDoc = timeAtFirstDoc - start ;
173173
174174 metrics . track ( 'Schema: Complete' , {
175- Duration : totalTime ,
176- 'Total Document Count' : model . total ,
177- 'Sample Size' : model . documents . length ,
178- 'Errored Document Count' : erroredOnDocs . length ,
179- 'Time to First Doc' : timeToFirstDoc ,
180- 'Average Time Per Doc' : ( totalTime - timeToFirstDoc ) / model . documents . length
181- // 'Schema Height': model.height, // # of top level keys
182- // 'Schema Width': model.width, // max nesting depth
183- // 'Schema Sparsity': model.sparsity // lots of fields missing or consistent
175+ duration : totalTime ,
176+ 'total document count' : model . total ,
177+ 'sample size' : model . documents . length ,
178+ 'errored document count' : erroredOnDocs . length ,
179+ 'total sample time' : timeToFirstDoc ,
180+ 'total analysis time' : totalTime - timeToFirstDoc ,
181+ 'average analysis time per doc' : ( totalTime - timeToFirstDoc ) / model . documents . length
182+ // 'Schema Height': model.height, // # of top level keys
183+ // 'Schema Width': model.width, // max nesting depth
184+ // 'Schema Sparsity': model.sparsity // lots of fields missing or consistent
184185 } ) ;
185186 options . success ( { } ) ;
186187 } ;
0 commit comments