Skip to content

v0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Oct 15:53
· 3 commits to main since this release
7b6a7bd

Behavior change

Move native query from function to collection to better support permission filters. However, label and value boolean expressions in where are used to filter results after the query is executed

{
  service_up(args: {
    job: "node", 
    instance: "node-exporter:9100"
    step: "1m"
  }, where: { timestamp: { _gt: "2024-10-11"}}) {
    job
    instance
    values {
      timestamp
      value
    }
  }
}

What's Changed

  • Sort labels enum and add flat argument by @hgiasac in #22
  • Support boolean expression for native query by @hgiasac in #23

Full Changelog: v0.2.0...v0.3.0