On line 268 in AutocollectedMetricsExtractor.cs it says:
CoreEventSource.Log.LogError("Error in " + typeof(RequestMetricsExtractor).Name + ": " + ex.ToString());
, but it should be
CoreEventSource.Log.LogError("Error in " + participant.Extractor.GetType().Name + ": " + ex.ToString());