Package org.apache.spark.metrics.source
Class CodegenMetrics
Object
org.apache.spark.metrics.source.CodegenMetrics
Metrics for code generation.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic com.codahale.metrics.HistogramHistogram of the time it took to compile source code text (in milliseconds).static com.codahale.metrics.HistogramHistogram of the bytecode size of each class generated by CodeGenerator.static com.codahale.metrics.HistogramHistogram of the bytecode size of each method in classes generated by CodeGenerator.static com.codahale.metrics.HistogramHistogram of the length of source code text compiled by CodeGenerator (in characters).static com.codahale.metrics.MetricRegistrystatic String
- 
Constructor Details- 
CodegenMetricspublic CodegenMetrics()
 
- 
- 
Method Details- 
sourceName
- 
metricRegistrypublic static com.codahale.metrics.MetricRegistry metricRegistry()
- 
METRIC_SOURCE_CODE_SIZEpublic static com.codahale.metrics.Histogram METRIC_SOURCE_CODE_SIZE()Histogram of the length of source code text compiled by CodeGenerator (in characters).- Returns:
- (undocumented)
 
- 
METRIC_COMPILATION_TIMEpublic static com.codahale.metrics.Histogram METRIC_COMPILATION_TIME()Histogram of the time it took to compile source code text (in milliseconds).- Returns:
- (undocumented)
 
- 
METRIC_GENERATED_CLASS_BYTECODE_SIZEpublic static com.codahale.metrics.Histogram METRIC_GENERATED_CLASS_BYTECODE_SIZE()Histogram of the bytecode size of each class generated by CodeGenerator.- Returns:
- (undocumented)
 
- 
METRIC_GENERATED_METHOD_BYTECODE_SIZEpublic static com.codahale.metrics.Histogram METRIC_GENERATED_METHOD_BYTECODE_SIZE()Histogram of the bytecode size of each method in classes generated by CodeGenerator.- Returns:
- (undocumented)
 
 
-