ElasticSearch Freeboard

I have this requirement, i was just trying to break it down.

I have API from elastic search, http://localhost:9200/dummytest/_search?pretty which gives the response like

{
"took" : 0,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 10,
"max_score" : 1.0,
"hits" : [
{
"_index" : "dummytest",
"_type" : "testusers",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"ndex" : 1,
"firstnamename" : "KC",
"lastname" : "Park"
}
},
I am trying to integrate it with freeboard(freeboard.io) using plugin called jqPlot to generate Bar and pie chart.

Now I have a requirement to take first name from ES and check the status code in DB table and return the value on graph.

(for database call, i understand its going to be a server side requirement or something which we can't do using just JSON.)

I am not sure where to add this code for db whether in ES-head plugin or in freeboard.

Please suggest.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.