mirror of
https://github.com/SigNoz/signoz.git
synced 2026-03-20 11:40:27 +00:00
63 lines
3.4 KiB
Go
63 lines
3.4 KiB
Go
package cloudintegration
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/SigNoz/signoz/pkg/types/cloudintegrationtypes"
|
|
"github.com/SigNoz/signoz/pkg/types/dashboardtypes"
|
|
"github.com/SigNoz/signoz/pkg/valuer"
|
|
)
|
|
|
|
type Module interface {
|
|
GetName() cloudintegrationtypes.CloudProviderType
|
|
|
|
// AgentCheckIn is called by agent to heartbeat and get latest config in response.
|
|
AgentCheckIn(ctx context.Context, req *cloudintegrationtypes.PostableAgentCheckInPayload) (any, error)
|
|
|
|
GenerateConnectionParams(ctx context.Context) (*cloudintegrationtypes.GettableCloudIntegrationConnectionParams, error)
|
|
// GenerateConnectionArtifact generates cloud provider specific connection information, client side handles how this information is shown
|
|
GenerateConnectionArtifact(ctx context.Context, req *cloudintegrationtypes.PostableConnectionArtifact) (any, error)
|
|
// GetAccountStatus returns agent connection status for a cloud integration account
|
|
GetAccountStatus(ctx context.Context, orgID, accountID string) (*cloudintegrationtypes.GettableAccountStatus, error)
|
|
// ListConnectedAccounts lists accounts where agent is connected
|
|
ListConnectedAccounts(ctx context.Context, orgID string) (*cloudintegrationtypes.GettableConnectedAccountsList, error)
|
|
|
|
// LIstServices return list of services for a cloud provider attached with the accountID. This just returns a summary
|
|
ListServices(ctx context.Context, orgID string, accountID *string) (any, error) // returns either GettableAWSServices or GettableAzureServices
|
|
// GetServiceDetails returns service definition details for a serviceId. This returns config and other details required to show in service details page on client.
|
|
GetServiceDetails(ctx context.Context, req *cloudintegrationtypes.GetServiceDetailsReq) (any, error)
|
|
|
|
// GetDashboard returns dashboard json for a give cloud integration service dashboard.
|
|
// this only returns the dashboard when account is connected and service is enabled
|
|
GetDashboard(ctx context.Context, id string, orgID valuer.UUID) (*dashboardtypes.Dashboard, error)
|
|
// GetAvailableDashboards returns list of available dashboards across all connected cloud integration accounts in the org.
|
|
// this list gets added to dashboard list page
|
|
GetAvailableDashboards(ctx context.Context, orgID valuer.UUID) ([]*dashboardtypes.Dashboard, error)
|
|
|
|
// UpdateAccountConfig updates cloud integration account config
|
|
UpdateAccountConfig(ctx context.Context, orgId valuer.UUID, accountId string, config []byte) (any, error)
|
|
// UpdateServiceConfig updates cloud integration service config
|
|
UpdateServiceConfig(ctx context.Context, serviceId string, orgID valuer.UUID, config []byte) (any, error)
|
|
|
|
// DisconnectAccount soft deletes/removes a cloud integration account.
|
|
DisconnectAccount(ctx context.Context, orgID, accountID string) (*cloudintegrationtypes.CloudIntegration, error)
|
|
}
|
|
|
|
type Handler interface {
|
|
AgentCheckIn(http.ResponseWriter, *http.Request)
|
|
|
|
GenerateConnectionParams(http.ResponseWriter, *http.Request)
|
|
GenerateConnectionArtifact(http.ResponseWriter, *http.Request)
|
|
|
|
ListConnectedAccounts(http.ResponseWriter, *http.Request)
|
|
GetAccountStatus(http.ResponseWriter, *http.Request)
|
|
ListServices(http.ResponseWriter, *http.Request)
|
|
GetServiceDetails(http.ResponseWriter, *http.Request)
|
|
|
|
UpdateAccountConfig(http.ResponseWriter, *http.Request)
|
|
UpdateServiceConfig(http.ResponseWriter, *http.Request)
|
|
|
|
DisconnectAccount(http.ResponseWriter, *http.Request)
|
|
}
|