Couchbase get FTS execution time from .Net Core

I have .Net Core Web APi from which i am executing FTS on couchbase server, I want to get FTS execution time on couchbase server in my application. I am getting ISearchQueryResult object.
I tried below appraoch
ISearchQueryResult…Metrics.Took
but I am not sure the time it is giving is actual execution time of FTS query on couchbse.

Could you please help me with this.

@Wahid_Kazi that is correct Metrtics.Took is the time taken for actual execution of FTS Query
Here is the one from Docs for FTS
and the one from .net client tests

Hope this helps :slight_smile:

Thank You Very much.