Skip to content

Releases: caunt/PromQL.NET

0.4.1

22 Oct 11:49
dacb552
Compare
Choose a tag to compare
0.4.1 Pre-release
Pre-release

RangeVector now accepts TimeSpan as time range value.

0.4

22 Oct 10:32
df89b00
Compare
Choose a tag to compare
0.4 Pre-release
Pre-release

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

16 Jun 09:30
Compare
Choose a tag to compare
0.3 Pre-release
Pre-release

Almost release.

  • Added instant vector functions:
  1. DayOfMonth
  2. DayOfWeek
  3. DayInMonth
  4. Hour
  5. Minute
  6. Month
  7. Year
  8. LabelJoin
  9. LabelReplace
  10. HistogramQuantile
  11. Round
  • Added instant vector static functions:
  1. Time
  2. Vector
  • Hidden static inhretited methods from System.Object

0.2

15 Jun 10:07
Compare
Choose a tag to compare
0.2 Pre-release
Pre-release

Still pre-release. But a lot bigger.

  • Added instant vector functions:
  1. ClampMin
  2. Exponential
  3. Floor
  4. NaturalLogarithm
  5. BinaryLogarithm
  6. DecimalLogarithm
  7. Scalar
  8. Sqrt
  9. Timestamp
  • Added range vector functions:
  1. Delta
  2. Derivative
  3. HoltWinters
  4. InstantDelta
  5. Increase
  6. InstantRate
  7. PredictLinear
  8. Rate
  9. Resets
  • Scalar type fix (int to float)
  • Scalar type now can be passed as argument
  • Aggregation functions on RangeVector refactor

0.1

15 Jun 07:58
Compare
Choose a tag to compare
0.1 Pre-release
Pre-release

First pre-release.

  • Added two basic types InstantVector and RangeVector.
  • Added instant vector functions:
  1. Absent
  2. Absolute
  3. Ceiling
  4. ClampMax
  5. SortAscending
  6. SortDescending
  • Added range vector functions:
  1. AbsentOverTime
  2. AverageOverTime
  3. CountOverTime
  4. MaxOverTime
  5. MinOverTime
  6. StandardDeviationOverTime
  7. StandardVarianceOverTime
  8. SumOverTime
  9. Changes
  • Added operators:
  1. Sum
  2. Sum with LabelFilter (by & without clause)
  • Added Basic Usage sample