Skip to content
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(slo): add md slo support for slo data source #635

Merged
merged 13 commits into from
Mar 18, 2025

Conversation

ronybzzz
Copy link
Contributor

@ronybzzz ronybzzz commented Mar 13, 2025

Which problem is this PR solving?

https://app.asana.com/1/72322038700732/project/1205961717360815/task/1205427815943458?focus=true

Short description of the changes

Adds Multi Dataset support for SLO data source

How to verify that this has the expected result

Added unit tests to ensure SLO read with data honeycombio_slo is still possible with optional dataset argument for MD SLOs

Manual Verifications:

MD SLO:
Screenshot 2025-03-14 at 2 07 01 PM

Single SLO w/dataset argument:
Screenshot 2025-03-14 at 2 03 32 PM

Single SLO w/o dataset argument:
Screenshot 2025-03-14 at 2 02 15 PM

@ronybzzz ronybzzz marked this pull request as ready for review March 14, 2025 21:10
@ronybzzz ronybzzz requested a review from a team as a code owner March 14, 2025 21:10
@ronybzzz ronybzzz requested review from jharley and MadhuVK March 14, 2025 21:10
@ronybzzz
Copy link
Contributor Author

@jharley in the screenshot the dataset field returns a null value. should we return something to the dataset field when its omitted from the config? spoke with Madhu about it but we're not sure if anything might be relying on a value being returned? and if so, what would we make the value for MD SLOs, would it just be "all"?

@jharley jharley added the feature This issue wants to add new functionality. label Mar 17, 2025
Copy link
Collaborator

@jharley jharley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great first pass at this! A few comments for clarity and tiding up.

in the screenshot the dataset field returns a null value. should we return something to the dataset field when its omitted from the config?

I think that's to be expected -- you can even assert it in your MD SLO test. There's no way to not return an attribute in Terraform as far as I know and null feels more correct to me than all

Copy link
Contributor

@MadhuVK MadhuVK left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No additional comments from me, I think Jason's covered it :D

@ronybzzz ronybzzz requested a review from jharley March 17, 2025 22:25
Copy link
Collaborator

@jharley jharley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Final bit of cleanup and then this is good to go! Nice work!

resource.TestCheckResourceAttr("data.honeycombio_slo.test", "sli", slo.SLI.Alias),
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "target_percentage", "99.5"),
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "time_period", "30"),
resource.TestCheckNoResourceAttr("data.honeycombio_slo.test", "dataset"),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice ✨

@@ -54,6 +56,89 @@ data "honeycombio_slo" "test" {
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "sli", slo.SLI.Alias),
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "target_percentage", "99.5"),
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "time_period", "30"),
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "dataset", dataset),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice ✨

@ronybzzz ronybzzz requested review from MadhuVK and jharley March 18, 2025 18:48
Copy link
Contributor

@MadhuVK MadhuVK left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good from my side! Just one lingering reference to clean up I think based on prior feedback.

Copy link
Collaborator

@jharley jharley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work! ✨

@ronybzzz ronybzzz merged commit 097d161 into main Mar 18, 2025
6 checks passed
@ronybzzz ronybzzz deleted the ronybzzz.data-source-slo-md-support branch March 18, 2025 20:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature This issue wants to add new functionality.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants