Releases: caunt/PromQL.NET
Releases · caunt/PromQL.NET
0.4.1
0.4
Still pre-release.
Missing operators, but all of prometheus query functions (https://prometheus.io/docs/prometheus/latest/querying/functions/) on both vector types work properly.
Code refactoring.
0.3
Almost release.
- Added instant vector functions:
- DayOfMonth
- DayOfWeek
- DayInMonth
- Hour
- Minute
- Month
- Year
- LabelJoin
- LabelReplace
- HistogramQuantile
- Round
- Added instant vector static functions:
- Time
- Vector
- Hidden static inhretited methods from System.Object
0.2
Still pre-release. But a lot bigger.
- Added instant vector functions:
- ClampMin
- Exponential
- Floor
- NaturalLogarithm
- BinaryLogarithm
- DecimalLogarithm
- Scalar
- Sqrt
- Timestamp
- Added range vector functions:
- Delta
- Derivative
- HoltWinters
- InstantDelta
- Increase
- InstantRate
- PredictLinear
- Rate
- Resets
- Scalar type fix (int to float)
- Scalar type now can be passed as argument
- Aggregation functions on RangeVector refactor
0.1
First pre-release.
- Added two basic types InstantVector and RangeVector.
- Added instant vector functions:
- Absent
- Absolute
- Ceiling
- ClampMax
- SortAscending
- SortDescending
- Added range vector functions:
- AbsentOverTime
- AverageOverTime
- CountOverTime
- MaxOverTime
- MinOverTime
- StandardDeviationOverTime
- StandardVarianceOverTime
- SumOverTime
- Changes
- Added operators:
- Sum
- Sum with LabelFilter (by & without clause)
- Added Basic Usage sample