period_settings = self.__conf_by_name('period_settings')
sampling = self.__conf_by_name('sampling')
- probe_features = self.__conf_by_name('probe_features')
+ probe_features = self.__conf_by_name('features')
app = self.__conf_by_name('app')
features = self.__resolve_features(probe_features, sampling, app)
instrumentation_config = {
'network' : 'NETWORK_API_PROBING',
'thread' : 'THREAD_API_PROBING',
'opengl' : 'OPENGL_API_PROBING',
+ 'memory_for_all' : 'MEMORY_ALLOC_ALWAYS_PROBING',
+ 'file_for_all' : 'FILE_API_ALWAYS_PROBING',
+ 'network_for_all': 'NETWORK_API_ALWAYS_PROBING',
+ 'thread_for_all': 'THREAD_API_ALWAYS_PROBING',
+ 'context_switch': 'CONTEXT_SWITCH'
}
@classmethod