Is there way to set separate Y-axis extents for each line on a line chart? Often I want to show changes of two fields that have very different values, and the smaller values become imperceptible and flattened to the bottom of the chart.
Another option would be to add a metric that shows the percentage change from the previous X-axis value.
You could create a scripted field that scales some of the values so they're comparable on your line chart.
So for example, if you had fieldA that was in the range of 0-1024 bytes, and another fieldB that was in the range of megabytes, you could create a scripted field like 'fieldB-MB' with a script like doc['fieldB'].value / (1024 * 1024). Then use that scripted field instead of fieldB on your chart.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.