-
-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to search by stack signature data #357
Comments
We are not indexing the stacking information on stacks. But you could search for events with |
Thanks for the feedback. I would be great is there is an ability to define - for a project - which "additional indexes" are needed. I'm not sure what that means for SaaS service if that impacts on additional storage and/or processing. We could try and log the custom stacking information elsewhere in duplicate to try and get it searchable. Thanks!! |
@Jaans what you could do here is just place the field in the event's data bag via EventBuilder.SetProperty("name", value). As long as the value is a simple type you can search on it via data.name. Does this help? |
@ejsmith What are your thoughts on this? |
I think it would be good, but it requires us to have some sort of shared indexing slots to be able to make it work in a multi-tenant app. We might be able to do something simple like just add anything in the stacking info to a single field as keywords where you could just search that to get matches, but if that's not good enough then it would require a lot more effort. |
We are struggling to find events via the search filter using the stacking information.
So we have lots of log messages (non exceptions) with the stacking information based on "Type", "MemberName" that it occurs in. Sample screenshot attached.
We've tried all the combinations below to search/filter for it but none of them show up. What are we missing?
The text was updated successfully, but these errors were encountered: