Zed Series Release Notes

17.0.1-2

New Features

  • OpenSearch has been added as an alternative v2 storage backend. It is a duplicate of the ElasticSearch backend, with the naming changed where appropriate. This change is in support of the deprecation of ElasticSearch as a backend.

17.0.1

Bug Fixes

  • Fix failure to process rating using the PyScripts rating module.

  • Fix retrieval of reprocessing tasks which was returning Internal Server Error.

17.0.0

New Features

  • Adds a MAP mutator to map arbitrary values to new values. This is useful with metrics reporting resource status as their value, but multiple statuses are billable.

  • Introduce an API to create scopes with a POST request. This is useful for operators to register scopes before they are created as resources in the collected backend and disable their processing without waiting for the scopes to be discovered by CloudKitty.

  • Add rating modules GET endpoints to v2 API.

Bug Fixes

  • Allow rating rules that have more than 2 digits in integer part.

    Currently, CloudKitty only allows creating rating rules as 99.999999999999999999999999. Therefore, for prices equal to or higher than 100, we would not be able to use them. This patch will enable operators to use any value between 0 and 999999999999 (in the integer part of the number), which will provide more flexibility.

  • Fix response format total for v2 dataframes API. The response for v2 dataframes is {"total": 3}. However, for Elasticsearch search response, the "hits.total" in the response body is {"value": 3, "relation": "eq"}, which does not match the API response schema.

  • Raises a CollectError exception with error details when a Prometheus query returns an error status.