-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support multi query with multi result #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Klasse, gefällt mir richtig gut! Noch die Kommentare anpassen, dann kannst Du den PR mergen.
src/DataStructures/InfluxDBClient.cs
Outdated
@@ -592,6 +592,53 @@ public async Task<List<IInfluxSeries>> QueryMultiSeriesAsync(string dbName, stri | |||
return null; | |||
} | |||
|
|||
/// <summary> | |||
/// Queries Influx DB and gets a time series data back. Ideal for fetching measurement values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Den Kommentar solltest Du noch anpassen.
@@ -94,6 +94,16 @@ public interface IInfluxDBClient | |||
/// <returns>List of InfluxSeries</returns> | |||
Task<List<IInfluxSeries>> QueryMultiSeriesAsync(string dbName, string measurementQuery, string retentionPolicy = null, TimePrecision precision = TimePrecision.Nanoseconds); | |||
|
|||
/// <summary> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Auch den Kommentar solltest Du noch anpassen.
No description provided.