diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/misc/benchmarks-python-graphs.png | bin | 0 -> 26295 bytes | |||
-rw-r--r-- | docs/misc/benchmarks-python-graphs.rst | 12 |
2 files changed, 9 insertions, 3 deletions
diff --git a/docs/misc/benchmarks-python-graphs.png b/docs/misc/benchmarks-python-graphs.png Binary files differnew file mode 100644 index 00000000..1577c589 --- /dev/null +++ b/docs/misc/benchmarks-python-graphs.png diff --git a/docs/misc/benchmarks-python-graphs.rst b/docs/misc/benchmarks-python-graphs.rst index 4d1db339..79d34925 100644 --- a/docs/misc/benchmarks-python-graphs.rst +++ b/docs/misc/benchmarks-python-graphs.rst @@ -5,6 +5,15 @@ This page documents an example of how to query elasticsearch and plot the results with python. We are currently using ``kibana`` to plot and show graphs, but in the future we might want/need the flexibility of python for that. +Generated image +--------------- + +.. image:: benchmarks-python-graphs.png + :alt: Example of image generated with the code above. + +Code example +------------ + Some notes about the code example: * Depends on ``elasticsearch`` for querying and ``matplotlib`` for plotting. @@ -12,9 +21,6 @@ Some notes about the code example: * Commit datetime ranges (`1 <https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-query.html>`_, `2 <https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#date-math>`_, `3 <https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-daterange-aggregation.html#date-format-pattern>`_) can be put in place to limit results. -Code example ------------- - .. code:: python #!/usr/bin/env python |