mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 12:31:07 +01:00
docs/CHANGELOG.md: mention about Graphite Tags API implementation
This commit is contained in:
parent
2c67232565
commit
30a922f383
17
README.md
17
README.md
@ -106,8 +106,9 @@ Click on a link in order to read the corresponding case study
|
|||||||
* [How to send data from OpenTSDB-compatible agents](#how-to-send-data-from-opentsdb-compatible-agents)
|
* [How to send data from OpenTSDB-compatible agents](#how-to-send-data-from-opentsdb-compatible-agents)
|
||||||
* [Prometheus querying API usage](#prometheus-querying-api-usage)
|
* [Prometheus querying API usage](#prometheus-querying-api-usage)
|
||||||
* [Prometheus querying API enhancements](#prometheus-querying-api-enhancements)
|
* [Prometheus querying API enhancements](#prometheus-querying-api-enhancements)
|
||||||
* [Graphite Metrics API usage](#graphite-metrics-api-usage)
|
* [Graphite API usage](#graphite-api-usage)
|
||||||
* [Graphite Tags API usage](#graphite-tags-api-usage)
|
* [Graphite Metrics API usage](#graphite-metrics-api-usage)
|
||||||
|
* [Graphite Tags API usage](#graphite-tags-api-usage)
|
||||||
* [How to build from sources](#how-to-build-from-sources)
|
* [How to build from sources](#how-to-build-from-sources)
|
||||||
* [Development build](#development-build)
|
* [Development build](#development-build)
|
||||||
* [Production build](#production-build)
|
* [Production build](#production-build)
|
||||||
@ -528,7 +529,15 @@ Additionally VictoriaMetrics provides the following handlers:
|
|||||||
* `/api/v1/status/active_queries` - it returns a list of currently running queries.
|
* `/api/v1/status/active_queries` - it returns a list of currently running queries.
|
||||||
|
|
||||||
|
|
||||||
### Graphite Metrics API usage
|
### Graphite API usage
|
||||||
|
|
||||||
|
VictoriaMetrics supports the following Graphite APIs:
|
||||||
|
|
||||||
|
* Metrics API - see [these docs](#graphite-metrics-api-usage).
|
||||||
|
* Tags API - see [these docs](#graphite-tags-api-usage).
|
||||||
|
|
||||||
|
|
||||||
|
#### Graphite Metrics API usage
|
||||||
|
|
||||||
VictoriaMetrics supports the following handlers from [Graphite Metrics API](https://graphite-api.readthedocs.io/en/latest/api.html#the-metrics-api):
|
VictoriaMetrics supports the following handlers from [Graphite Metrics API](https://graphite-api.readthedocs.io/en/latest/api.html#the-metrics-api):
|
||||||
|
|
||||||
@ -542,7 +551,7 @@ VictoriaMetrics accepts the following additional query args at `/metrics/find` a
|
|||||||
that start with `node_`. By default `delimiter=.`.
|
that start with `node_`. By default `delimiter=.`.
|
||||||
|
|
||||||
|
|
||||||
### Graphite Tags API usage
|
#### Graphite Tags API usage
|
||||||
|
|
||||||
VictoriaMetrics supports the following handlers from [Graphite Tags API](https://graphite.readthedocs.io/en/stable/tags.html):
|
VictoriaMetrics supports the following handlers from [Graphite Tags API](https://graphite.readthedocs.io/en/stable/tags.html):
|
||||||
|
|
||||||
|
@ -21,6 +21,8 @@
|
|||||||
* FEATURE: update Go builder from v1.15.4 to v1.15.5. This should fix [these issues in Go](https://github.com/golang/go/issues?q=milestone%3AGo1.15.5+label%3ACherryPickApproved).
|
* FEATURE: update Go builder from v1.15.4 to v1.15.5. This should fix [these issues in Go](https://github.com/golang/go/issues?q=milestone%3AGo1.15.5+label%3ACherryPickApproved).
|
||||||
* FEATURE: added `/internal/force_flush` http handler for flushing recently ingested data from in-memory buffers to persistent storage.
|
* FEATURE: added `/internal/force_flush` http handler for flushing recently ingested data from in-memory buffers to persistent storage.
|
||||||
See [troubleshooting docs](https://victoriametrics.github.io/#troubleshooting) for more details.
|
See [troubleshooting docs](https://victoriametrics.github.io/#troubleshooting) for more details.
|
||||||
|
* FEATURE: added [Graphite Tags API](https://graphite.readthedocs.io/en/stable/tags.html) support.
|
||||||
|
See [these docs](https://victoriametrics.github.io/#graphite-tags-api-usage) for details.
|
||||||
|
|
||||||
* BUGFIX: do not return data points in the end of the selected time range for time series ending in the middle of the selected time range.
|
* BUGFIX: do not return data points in the end of the selected time range for time series ending in the middle of the selected time range.
|
||||||
See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/887 and https://github.com/VictoriaMetrics/VictoriaMetrics/issues/845
|
See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/887 and https://github.com/VictoriaMetrics/VictoriaMetrics/issues/845
|
||||||
|
@ -106,8 +106,9 @@ Click on a link in order to read the corresponding case study
|
|||||||
* [How to send data from OpenTSDB-compatible agents](#how-to-send-data-from-opentsdb-compatible-agents)
|
* [How to send data from OpenTSDB-compatible agents](#how-to-send-data-from-opentsdb-compatible-agents)
|
||||||
* [Prometheus querying API usage](#prometheus-querying-api-usage)
|
* [Prometheus querying API usage](#prometheus-querying-api-usage)
|
||||||
* [Prometheus querying API enhancements](#prometheus-querying-api-enhancements)
|
* [Prometheus querying API enhancements](#prometheus-querying-api-enhancements)
|
||||||
* [Graphite Metrics API usage](#graphite-metrics-api-usage)
|
* [Graphite API usage](#graphite-api-usage)
|
||||||
* [Graphite Tags API usage](#graphite-tags-api-usage)
|
* [Graphite Metrics API usage](#graphite-metrics-api-usage)
|
||||||
|
* [Graphite Tags API usage](#graphite-tags-api-usage)
|
||||||
* [How to build from sources](#how-to-build-from-sources)
|
* [How to build from sources](#how-to-build-from-sources)
|
||||||
* [Development build](#development-build)
|
* [Development build](#development-build)
|
||||||
* [Production build](#production-build)
|
* [Production build](#production-build)
|
||||||
@ -528,7 +529,15 @@ Additionally VictoriaMetrics provides the following handlers:
|
|||||||
* `/api/v1/status/active_queries` - it returns a list of currently running queries.
|
* `/api/v1/status/active_queries` - it returns a list of currently running queries.
|
||||||
|
|
||||||
|
|
||||||
### Graphite Metrics API usage
|
### Graphite API usage
|
||||||
|
|
||||||
|
VictoriaMetrics supports the following Graphite APIs:
|
||||||
|
|
||||||
|
* Metrics API - see [these docs](#graphite-metrics-api-usage).
|
||||||
|
* Tags API - see [these docs](#graphite-tags-api-usage).
|
||||||
|
|
||||||
|
|
||||||
|
#### Graphite Metrics API usage
|
||||||
|
|
||||||
VictoriaMetrics supports the following handlers from [Graphite Metrics API](https://graphite-api.readthedocs.io/en/latest/api.html#the-metrics-api):
|
VictoriaMetrics supports the following handlers from [Graphite Metrics API](https://graphite-api.readthedocs.io/en/latest/api.html#the-metrics-api):
|
||||||
|
|
||||||
@ -542,7 +551,7 @@ VictoriaMetrics accepts the following additional query args at `/metrics/find` a
|
|||||||
that start with `node_`. By default `delimiter=.`.
|
that start with `node_`. By default `delimiter=.`.
|
||||||
|
|
||||||
|
|
||||||
### Graphite Tags API usage
|
#### Graphite Tags API usage
|
||||||
|
|
||||||
VictoriaMetrics supports the following handlers from [Graphite Tags API](https://graphite.readthedocs.io/en/stable/tags.html):
|
VictoriaMetrics supports the following handlers from [Graphite Tags API](https://graphite.readthedocs.io/en/stable/tags.html):
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user