I have written an application server in C++ (using libhv as my server library).
The RSS memory of my app keeps increasing when I do the load testing. I did use tools like Intel Inspector and Heaptracker to see for memory leaks.
Intel inspector claims no memory leaks.
Heaptracker claims 1.5-4 MB of memory leaks, however I have seen my app can use RSS of upto 500 MB (or more) during those time. The code where heaptrack shows error are not part of my code either and I suspect these are generated due to shutting down app server abruptly.
Is this worrying and possible memory leak issue. And what other tools can I use to pinpoint the problem if exist any.