-
Notifications
You must be signed in to change notification settings - Fork 117
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
feat : Execute dashboard query as part of health check #5676
Conversation
4d8f059
to
1b01f49
Compare
Co-authored-by: Benjamin Egelund-Müller <[email protected]>
Co-authored-by: Benjamin Egelund-Müller <[email protected]>
Co-authored-by: Benjamin Egelund-Müller <[email protected]>
Co-authored-by: Benjamin Egelund-Müller <[email protected]>
ee30fb5
to
f046a64
Compare
CREATE TABLE IF NOT EXISTS instance_health ( | ||
instance_id TEXT PRIMARY KEY, | ||
health BLOB NOT NULL, | ||
created_on TIMESTAMP NOT NULL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be named updated_on
? Since it changes when the health is updated. (It probably doesn't make sense to have a separate created_on
field as it would just be roughly the same as that of the instance in the instances
table.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Forgot to update the db column names here. Thanks.
closes https://github.com/rilldata/rill-private-issues/issues/640