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!
SendSpeedLimit has no effect
-
- Posts: 1
- Joined: Wed Dec 04, 2024 1:41 pm
Re: SendSpeedLimit has no effect
Hi,
In this context, "message" refers to a single SubmitSm PDU.
To evaluate performance, you can use the following metrics:
For more details about built-in metrics, please visit the
https://docs.inetlab.com/smpp/v2.9/arti ... ostic.html
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;
https://docs.inetlab.com/smpp/v2.9/arti ... ostic.html