elasticsearch - How to make graph out of seqential data -


i new whole elastic stack pardon me if basic. looking docs can't find way how make following graph.

i feeding elasticsearch data looks this. [{place:'a', time:0, user:1}, {place: 'b', time:1, user:1}, {place:'c', time:2, user:1}, {place:'a', time: 3, user:1}] describing path user went. 1 a->b->c->a, , other 1 go c->d->a->d->c.

is possible make graph vertices made out of places , edges describing users went?

enter image description here

you can't create visualisation, open issue in github


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -