Skip to content

Commit

Permalink
add ActionType and ReceiverActionType to PerformanceCollectorData event
Browse files Browse the repository at this point in the history
  • Loading branch information
dhilpipre committed Jul 11, 2024
1 parent 25610ac commit 078674d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public static void reportPerformanceCollectorData(IPerformanceCollectorData data
HashMap<String, Object> attributes = new HashMap<String, Object>();
reportObject(attributes, "Source", source);
reportObject(attributes,"ActionName", data.getActionName());
reportObject(attributes, "ActionType", data.getActionType());
reportObject(attributes, "AllInOneObjectID", data.getAllInOneObjectID());
reportObject(attributes,"CreationTimestamp", data.getCreationTimestamp());
reportObject(attributes,"DeliverySemantics", data.getDeliverySemantics());
reportObject(attributes,"FromPartyName", data.getFromPartyName());
Expand All @@ -41,6 +43,7 @@ public static void reportPerformanceCollectorData(IPerformanceCollectorData data
}
reportObject(attributes,"MessageSize", data.getMessageSize());
reportObject(attributes,"ReceiverAction", data.getReceiverActionName());
reportObject(attributes,"ReceiverActionType", data.getReceiverActionType());
reportObject(attributes,"RefToMessageID", data.getRefToMessageID());
reportObject(attributes,"SentReceiveTimestamp", data.getSentReceiveTimestamp());
reportObject(attributes,"TransDeliveryTimestamp", data.getTransDeliveryTimestamp());
Expand Down

0 comments on commit 078674d

Please sign in to comment.