Hello,
I'm in the process of making a new data table, which consists of a date bucket and 3 metrics.
First metric(A) is Count, second metric(B) is Unique Count, and third(C) I need to be the difference between A and B.
I don't know how to do it in a visualization - but maybe you can switch to Canvas? in Canvas you can use ElasticSearch SQL to define the data table like this:
SELECT "cluster_uuid", count(cluster_uuid) AS "COUNT", count(distinct cluster_uuid) AS "DISTINCT COUNT",count(cluster_uuid) - count(distinct cluster_uuid) AS "DUPLICATES" FROM ".monitoring-logstash-*"
group by "cluster_uuid"
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.