From 608c977978af1b32145e25334431ed11e3b859bd Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Mon, 24 Oct 2022 21:28:20 +0300 Subject: [PATCH] docs/guides/migrate-from-influx.md: properly display images at https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/docs/guides/migrate-from-influx.md This is a follow-up for 42375679db933618580aa1a66fe1357703ce153d --- docs/_includes/img.html | 5 ----- docs/guides/migrate-from-influx.md | 6 +++--- 2 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 docs/_includes/img.html diff --git a/docs/_includes/img.html b/docs/_includes/img.html deleted file mode 100644 index 01094c17fb..0000000000 --- a/docs/_includes/img.html +++ /dev/null @@ -1,5 +0,0 @@ -

- - - -

diff --git a/docs/guides/migrate-from-influx.md b/docs/guides/migrate-from-influx.md index 2c29858c39..1ea0691e49 100644 --- a/docs/guides/migrate-from-influx.md +++ b/docs/guides/migrate-from-influx.md @@ -130,7 +130,7 @@ for serving read queries. This API is used in various integrations such as by [VMUI](https://docs.victoriametrics.com/Single-server-VictoriaMetrics.html#vmui) - a graphical User Interface for querying and visualizing metrics: -{% include img.html href="migrate-from-influx-vmui.png" %} + See more about [how to query data in VictoriaMetrics](https://docs.victoriametrics.com/keyConcepts.html#query-data). @@ -159,7 +159,7 @@ The data sample consists data points for a measurement `foo` and a field `bar` with additional tag `instance=localhost`. If we would like plot this data as a time series in Grafana it might have the following look: -{% include img.html href="migrate-from-influx-data-sample-in-influx.png" %} + The query used for this panel is written in [InfluxQL](https://docs.influxdata.com/influxdb/v1.8/query_language/): @@ -194,7 +194,7 @@ InfluxQL query might be translated to MetricsQL let's break it into components f In result, executing the `foo_bar{instance="localhost"}` MetricsQL expression with `step=1m` for the same set of data in Grafana will have the following form: -{% include img.html href="migrate-from-influx-data-sample-in-vm.png" %} + Visualizations from both databases are a bit different - VictoriaMetrics shows some extra points filling the gaps in the graph. This behavior is described in more