I can wrap some important code (where I want to observe performance change with new App Versions) in
let handle = MXMetricManager.makeLogHandle(category: "Custom Category")
mxSignpost(.begin, log: handle, name: "Custom Event Name")
and
mxSignpost(.end, log: handle, name: "Custom Event Name")
And as far as I understand when I use MXMetricManager.shared.add(someClass) and in MXMetricManagerSubscriber delegate I receive reports every 24 hours, these reports will contain a separate performance sections for the intervals between mxSignpost(.begin) and mxSignpost(.end).
The question:
Can I see these performance separation in Xcode Organizer for "Custom Event Name" or "Custom Category" from the code above?

The Metric organizer doesn't have this feature from the doc:
The only way to get signpost info it's inspecting
MXMetricPayload: