Apologies, about this simple question. I have EventStore running locally and can login and click on:
Stream Browser
but unfortunately I see:
No recently created streams
Despite seemingly successfully publishings a test event every 0.5 seconds from a C# client like so:
var jsonString = JsonConvert.SerializeObject(someTestEvent, new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.None });
var jsonPayload = Encoding.UTF8.GetBytes(jsonString);
var guid = new Guid(“d5535cc7-7ac8-422f-b5f0-9a73df42d971”);
var eventStoreDataType = new EventData(guid, evt.GetType().Name, true, jsonPayload, null);
connection.AppendToStreamAsync(guid.ToString(), ExpectedVersion.Any, eventStoreDataType);
Can I browse the stream:
d5535cc7-7ac8-422f-b5f0-9a73df42d971
in the browser (tried to insert guid into search text box)? Any feedback or pointers to the relevant doc would be very much appreciated (googled extensively). Thanks.