Hi, recently you've made an update and closed my open issue about the most convinient way to count the entries.
So, now it's possible to receive all detailed database structure using GetInfluxDBStructureAsync(dbName) on client. But I think this is kinda inneficient in cases, when I want to get only the details for particular measurement, since it provides a lot redundunt info for others and, what the most important, this operation is quite expensive in terms of time consuming. It calculates the data for all the measurements, but I suppose, the more common task is just to get the info for particuar one. Maybe its reasonable to create a method like GetMeasurmentDetailsAsync(string dbName, string measurementName).