Web-UI enhancements ?

Hi !

I am a beginner at get-event-store but i am very impressed by the power it add to my application by adding meaning to data.

The tedious part for me is being able to browse events in the web-ui (ex : http://localhost:2113)

My question : Is it planned to add those features to the web-ui (and does it make sense) :

  • Tiny search engine to be able to search inside stored data in each event (to easily find corresponding agregatte uid)
  • Present a list of last recorded events with a link to the stream
  • Maybe a visual representation of what streams fuel my projections

Cheers,
M

- Tiny search engine to be able to search inside stored data in each
event (to easily find corresponding agregatte uid)

Wouldn't this be done by just going to the stream?

- Present a list of last recorded events with a link to the stream

Have you seen the streams page?

- Maybe a visual representation of what streams fuel my projections

This has been discussed but won't happen until they are out of beta

First this is all small improvements - the software is already incredible.

  • Tiny search engine to be able to search inside stored data in each

event (to easily find corresponding agregatte uid)

Wouldn’t this be done by just going to the stream?
=>

In fact i can go to stream but now i have to know the stream name. Which is not obvious in my application (maybe what i should improve). Eg : “boat-f699886d-52f9-4046-934a-a78d251e22db”.

My use case : I want to control that my “BoatNameChanged” event occured. I could enter the new boat name “Victoria” in a search field and it would list all events with word “Victoria”…and a link to corresponding stream.

  • Present a list of last recorded events with a link to the stream

Have you seen the streams page?

Yes i can see last created streams / last changed streams but wouldn’t it be nice to add last recorded events ?

  • Maybe a visual representation of what streams fuel my projections

This has been discussed but won’t happen until they are out of beta

Ok cool

My use case : I want to control that my "BoatNameChanged" event
occured. I could enter the new boat name "Victoria" in a search field
and it would list all events with word "Victoria"...and a link to
corresponding stream.

There has been discussion (and spikes) around using lucene internally for this.

You can of course also do this with a read model quite easily today.
This would just be an internal read model.

Cheers,

Greg

Uhm ok…better to keep the soft specialized and use a read model - thank you