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: aws integration: UI facing QS api for cloud account management #6771

Merged
merged 39 commits into from
Jan 10, 2025
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5d1bfdc
feat: init app/cloud_integrations
raj-k-singh Jan 2, 2025
c206638
feat: get API test started for cloudintegrations account lifecycle
raj-k-singh Jan 3, 2025
9973cad
feat: cloudintegrations: get controller started
raj-k-singh Jan 3, 2025
45302ce
feat: cloud integrations: add cloudintegrations.Controller to APIHand…
raj-k-singh Jan 3, 2025
d36848e
feat: cloud integrations: get routes started
raj-k-singh Jan 3, 2025
f864c0f
feat: cloud integrations: get accounts table schema started
raj-k-singh Jan 3, 2025
3434819
feat: cloud integrations: get cloudProviderAccountsSQLRepository started
raj-k-singh Jan 5, 2025
cc07436
feat: cloud integrations: cloudProviderAccountsSQLRepository.listAcco…
raj-k-singh Jan 5, 2025
218b4f8
feat: cloud integrations: http handler and controller plumbing for /g…
raj-k-singh Jan 5, 2025
c3e4957
feat: cloud integrations: cloudProviderAccountsSQLRepository.upsert
raj-k-singh Jan 6, 2025
21d9253
feat: cloud integrations: finish up with /generate-connection-url
raj-k-singh Jan 6, 2025
19fca6f
feat: cloud integrations: add cloudProviderAccountsRepository.get
raj-k-singh Jan 7, 2025
93a7087
feat: cloud integrations: add API test expectation for being able to …
raj-k-singh Jan 7, 2025
97156dd
feat: cloud integrations: add http handler and controller method for …
raj-k-singh Jan 7, 2025
946610b
feat: cloud integrations: ensure unconnected accounts aren't included…
raj-k-singh Jan 7, 2025
2cae202
feat: cloud integrations: add test expectation for agent check in req…
raj-k-singh Jan 7, 2025
e3ff59f
feat: cloud integrations: agent check in API
raj-k-singh Jan 7, 2025
e4ee24b
feat: cloud integrations: ensure polling for status after agent check…
raj-k-singh Jan 7, 2025
13d663f
feat: cloud integrations: ensure account included in connected accoun…
raj-k-singh Jan 7, 2025
c81c05d
feat: cloud integrations: add API expectation for updating account co…
raj-k-singh Jan 7, 2025
9029cb2
feat: cloud integrations: API for updating cloud account config
raj-k-singh Jan 7, 2025
e7e09be
feat: cloud integrations: expectation for agent receiving latest conf…
raj-k-singh Jan 7, 2025
cece0f1
feat: cloud integrations: expectation for disconnecting cloud account…
raj-k-singh Jan 7, 2025
045e5cb
feat: cloud integrations: API for disconnecting cloud accounts
raj-k-singh Jan 7, 2025
8028a18
feat: cloud integrations: some cleanup
raj-k-singh Jan 8, 2025
c8ff9b1
feat: cloud integrations: some more cleanup
raj-k-singh Jan 8, 2025
b883e98
feat: cloud integrations: repo: scope rows by cloud provider
raj-k-singh Jan 8, 2025
c9f4397
feat: testutils: refactor out helper for creating a test sqlite DB
raj-k-singh Jan 8, 2025
34d480a
feat: cloud integrations: controller: add test validating regeneratio…
raj-k-singh Jan 8, 2025
85ce980
feat: cloud integrations: controller: validations for agent check ins
raj-k-singh Jan 8, 2025
d26e388
feat: cloud integrations: connected account response structure
raj-k-singh Jan 8, 2025
12cc83f
feat: cloud integrations: API response account structure
raj-k-singh Jan 8, 2025
5e1246b
feat: cloud integrations: some more cleanup
raj-k-singh Jan 9, 2025
4125815
feat: cloud integrations: remove cloudProviderAccountsRepository.GetById
raj-k-singh Jan 9, 2025
26bd4e3
feat: cloud integrations: shouldn't be able to disconnect non-existen…
raj-k-singh Jan 9, 2025
2a33c29
feat: cloud integrations: validate agents can't check in to cloud acc…
raj-k-singh Jan 9, 2025
2ff511e
feat: cloud integrations: ensure agents can't check in to cloud accou…
raj-k-singh Jan 9, 2025
35e1027
feat: cloud integrations: remove stray import of ee/model in cloudint…
raj-k-singh Jan 10, 2025
66810c4
Merge branch 'main' into feat/aws-integration-ui-facing-api-0
raj-k-singh Jan 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: cloud integrations: remove stray import of ee/model in cloudint…
…egrations controller
raj-k-singh committed Jan 10, 2025
commit 35e10272a3a017203fde499308d100f31e68dd36
2 changes: 1 addition & 1 deletion pkg/query-service/app/cloudintegrations/controller_test.go
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ import (

"github.com/google/uuid"
"github.com/stretchr/testify/require"
"go.signoz.io/signoz/ee/query-service/model"
"go.signoz.io/signoz/pkg/query-service/model"
"go.signoz.io/signoz/pkg/query-service/utils"
)