Hi everyone !
i would like to know if my json datafile structure is false to be use correctly by ES/Kibana.
Below my JSON structure:
{
"2017-10-04T08:15:03.079+0000":{
"Countrie-one":[
{
"server":"name-one",
"users":[
{
"projectName":"Project_name_one",
"id":"alphanum_id_one",
"computerName":"computer_name_one"
},
{
"projectName":"Project_name_two",
"id":"alphanum_id_two",
"computerName":"computer_name_two"
},
{
"projectName":"Project_name_three",
"id":"alphanum_id_three",
"computerName":"computer_name_three"
},
{
"projectName":"Project_name_four",
"id":"alphanum_id_four",
"computerName":"computer_name_four"
}
],
"status":"UP"
}
],
"Countrie-two":[
{
"server":"name-two",
"users":[
],
"status":"UP"
}
]
}
}
(This code is not complet, I have a lot of countries, servers and users in the full datafile)
I can import my file correctly in ES, I can see my data in Kibana too but i can't make true chart using my datafile.
What I've to do for make chart on number of users per countrie for example or a cumulative chart of the number of user as a fonction of time ?
Regards,
Math
