Elasticsearch host object
Data source
by Flexmonster Pivot Table
HTML
<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>
<div id="pivot-container"></div>
JavaScript
new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
width: "100%",
height: 600,
toolbar: true,
report: {
"dataSource": {
"dataSourceType": "elasticsearch",
"node": "https://olap.flexmonster.com:9200",
/* "requestHeaders": {
"Token": "XXX"
}, */
"index": "fm-product-sales",
"mapping": {
"@timestamp": {
"visible": false
},
"@version": {
"visible": false
},
"host": {
"visible": false
},
"message": {
"visible": false
},
"path": {
"visible": false
}
}
},
"slice": {
"rows": [{
"uniqueName": "Category.keyword",
"caption": "Category"
}
],
"columns": [{
"uniqueName": "Color.keyword",
"caption": "Color"
}, {
"uniqueName": "[Measures]"
}],
"measures": [{
"uniqueName": "Price",
"aggregation": "sum",
"caption": "Price"
}]
}
}
});