SendSpeedLimit has no effect

Post Reply
dougmorris
Posts: 1
Joined: Wed Dec 04, 2024 1:41 pm

SendSpeedLimit has no effect

Post by dougmorris »

I am using the library in release mode.
I set the SendSpeedLimit = new LimitRate(2, new TimeSpan(0,0,1)); // Set the SendSpeedLimit to 2 segments a second.

I am a little confused by the documentation as it suggests that the SendSpeedLimit is messages per second and not segments, but in one of the support threads you have confirmed segments.

I am then using the SubmitAsync(SubmitSm) method to submit messages, but I do not see any slowdown of the segments.

Please can you confirm this is a problem or suggest a solution.

Thank you!
alt
Site Admin
Posts: 992
Joined: Tue Apr 25, 2006 9:45 am

Re: SendSpeedLimit has no effect

Post by alt »

Hi,

In this context, "message" refers to a single SubmitSm PDU.

To evaluate performance, you can use the following metrics:

Code: Select all

_smppClient.Metrics.Sent.Request.PerSecond;
//or 
_smppClient.Metrics.Sent.Request.AvgPerSecond;
For more details about built-in metrics, please visit the
https://docs.inetlab.com/smpp/v2.9/arti ... ostic.html
Post Reply