File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -167,3 +167,8 @@ Dictionary::Ptr Endpoint::GetMessagesReceivedPerType() const
167
167
168
168
return new Dictionary (std::move (result));
169
169
}
170
+
171
+ double Endpoint::GetSecondsProcessingMessages () const
172
+ {
173
+ return m_InputProcessingTime;
174
+ }
Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ class Endpoint final : public ObjectImpl<Endpoint>
59
59
60
60
Dictionary::Ptr GetMessagesReceivedPerType () const override ;
61
61
62
+ double GetSecondsProcessingMessages () const override ;
63
+
62
64
protected:
63
65
void OnAllConfigLoaded () override ;
64
66
Original file line number Diff line number Diff line change @@ -58,6 +58,10 @@ class Endpoint : ConfigObject
58
58
[no_user_modify, no_storage] Dictionary::Ptr messages_received_per_type {
59
59
get;
60
60
};
61
+
62
+ [no_user_modify, no_storage] double seconds_processing_messages {
63
+ get;
64
+ };
61
65
};
62
66
63
67
}
You can’t perform that action at this time.
0 commit comments