-
Notifications
You must be signed in to change notification settings - Fork 112
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
Disable date-selection for Search types that don't have a concept of time #114
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Search management UI allows you to both test and execute searches against a specific point in time. This is useful for search types like Elasticsearch (via
@timestamp
) but is meaningless for searches that have no concept of time (like HTTP). In the latter case, we should just hide the time selection functionality (The wrench icon).The
isTimeBased
method on Searches will tell you whether these elements should be visible, but it varies depending on which source (in the case of Elasticsearch, which cluster) you're targeting. We'd need a bit of js to check the current source cluster and hide/show the buttons accordingly.The text was updated successfully, but these errors were encountered: