in alibabacloud-android-rum-sdk/src/main/java/com/alibabacloud/rum/AlibabaCloudRum.java [356:365]
public static void setCustomEvent(String eventName, String group, String snapshots, double value,
Map<String, Object> attributes) {
if (null == attributes) {
attributes = new HashMap<>();
}
// store custom value into attributes with '_orcv' field
attributes.put("_orcv", value);
OpenRum.setCustomEventWithLabel(UUID.randomUUID().toString(), eventName, group, snapshots, attributes);
}