mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
d7862c50b8
* first pass * add instance manager * fix tests * remove dead code * unexport fields * cleanup * remove ds instance from executor * cleanup * inline im * remove old func * get error working * unexport field * let fe do its magic * fix channel name * revert some tsdb changes * fix annotations * cleanup
165 lines
4.9 KiB
Go
165 lines
4.9 KiB
Go
package cloudwatch
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/aws/request"
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
|
"github.com/aws/aws-sdk-go/service/cloudwatch"
|
|
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
|
|
"github.com/aws/aws-sdk-go/service/cloudwatchlogs"
|
|
"github.com/aws/aws-sdk-go/service/cloudwatchlogs/cloudwatchlogsiface"
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
"github.com/aws/aws-sdk-go/service/ec2/ec2iface"
|
|
"github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi"
|
|
"github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/resourcegroupstaggingapiiface"
|
|
"github.com/grafana/grafana-aws-sdk/pkg/awsds"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
type FakeCWLogsClient struct {
|
|
cloudwatchlogsiface.CloudWatchLogsAPI
|
|
logGroups cloudwatchlogs.DescribeLogGroupsOutput
|
|
logGroupFields cloudwatchlogs.GetLogGroupFieldsOutput
|
|
queryResults cloudwatchlogs.GetQueryResultsOutput
|
|
}
|
|
|
|
func (m FakeCWLogsClient) GetQueryResultsWithContext(ctx context.Context, input *cloudwatchlogs.GetQueryResultsInput, option ...request.Option) (*cloudwatchlogs.GetQueryResultsOutput, error) {
|
|
return &m.queryResults, nil
|
|
}
|
|
|
|
func (m FakeCWLogsClient) StartQueryWithContext(ctx context.Context, input *cloudwatchlogs.StartQueryInput, option ...request.Option) (*cloudwatchlogs.StartQueryOutput, error) {
|
|
return &cloudwatchlogs.StartQueryOutput{
|
|
QueryId: aws.String("abcd-efgh-ijkl-mnop"),
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeCWLogsClient) StopQueryWithContext(ctx context.Context, input *cloudwatchlogs.StopQueryInput, option ...request.Option) (*cloudwatchlogs.StopQueryOutput, error) {
|
|
return &cloudwatchlogs.StopQueryOutput{
|
|
Success: aws.Bool(true),
|
|
}, nil
|
|
}
|
|
|
|
func (m FakeCWLogsClient) DescribeLogGroupsWithContext(ctx context.Context, input *cloudwatchlogs.DescribeLogGroupsInput, option ...request.Option) (*cloudwatchlogs.DescribeLogGroupsOutput, error) {
|
|
return &m.logGroups, nil
|
|
}
|
|
|
|
func (m FakeCWLogsClient) GetLogGroupFieldsWithContext(ctx context.Context, input *cloudwatchlogs.GetLogGroupFieldsInput, option ...request.Option) (*cloudwatchlogs.GetLogGroupFieldsOutput, error) {
|
|
return &m.logGroupFields, nil
|
|
}
|
|
|
|
type FakeCWClient struct {
|
|
cloudwatchiface.CloudWatchAPI
|
|
|
|
Metrics []*cloudwatch.Metric
|
|
|
|
MetricsPerPage int
|
|
}
|
|
|
|
func (c FakeCWClient) ListMetricsPages(input *cloudwatch.ListMetricsInput, fn func(*cloudwatch.ListMetricsOutput, bool) bool) error {
|
|
if c.MetricsPerPage == 0 {
|
|
c.MetricsPerPage = 1000
|
|
}
|
|
chunks := chunkSlice(c.Metrics, c.MetricsPerPage)
|
|
|
|
for i, metrics := range chunks {
|
|
response := fn(&cloudwatch.ListMetricsOutput{
|
|
Metrics: metrics,
|
|
}, i+1 == len(chunks))
|
|
if !response {
|
|
break
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type fakeEC2Client struct {
|
|
ec2iface.EC2API
|
|
|
|
regions []string
|
|
reservations []*ec2.Reservation
|
|
}
|
|
|
|
func (c fakeEC2Client) DescribeRegions(*ec2.DescribeRegionsInput) (*ec2.DescribeRegionsOutput, error) {
|
|
regions := []*ec2.Region{}
|
|
for _, region := range c.regions {
|
|
regions = append(regions, &ec2.Region{
|
|
RegionName: aws.String(region),
|
|
})
|
|
}
|
|
return &ec2.DescribeRegionsOutput{
|
|
Regions: regions,
|
|
}, nil
|
|
}
|
|
|
|
func (c fakeEC2Client) DescribeInstancesPages(in *ec2.DescribeInstancesInput,
|
|
fn func(*ec2.DescribeInstancesOutput, bool) bool) error {
|
|
reservations := []*ec2.Reservation{}
|
|
for _, r := range c.reservations {
|
|
instances := []*ec2.Instance{}
|
|
for _, inst := range r.Instances {
|
|
if len(in.InstanceIds) == 0 {
|
|
instances = append(instances, inst)
|
|
continue
|
|
}
|
|
|
|
for _, id := range in.InstanceIds {
|
|
if *inst.InstanceId == *id {
|
|
instances = append(instances, inst)
|
|
}
|
|
}
|
|
}
|
|
reservation := &ec2.Reservation{Instances: instances}
|
|
reservations = append(reservations, reservation)
|
|
}
|
|
fn(&ec2.DescribeInstancesOutput{
|
|
Reservations: reservations,
|
|
}, true)
|
|
return nil
|
|
}
|
|
|
|
type fakeRGTAClient struct {
|
|
resourcegroupstaggingapiiface.ResourceGroupsTaggingAPIAPI
|
|
|
|
tagMapping []*resourcegroupstaggingapi.ResourceTagMapping
|
|
}
|
|
|
|
func (c fakeRGTAClient) GetResourcesPages(in *resourcegroupstaggingapi.GetResourcesInput,
|
|
fn func(*resourcegroupstaggingapi.GetResourcesOutput, bool) bool) error {
|
|
fn(&resourcegroupstaggingapi.GetResourcesOutput{
|
|
ResourceTagMappingList: c.tagMapping,
|
|
}, true)
|
|
return nil
|
|
}
|
|
|
|
func chunkSlice(slice []*cloudwatch.Metric, chunkSize int) [][]*cloudwatch.Metric {
|
|
var chunks [][]*cloudwatch.Metric
|
|
for {
|
|
if len(slice) == 0 {
|
|
break
|
|
}
|
|
if len(slice) < chunkSize {
|
|
chunkSize = len(slice)
|
|
}
|
|
|
|
chunks = append(chunks, slice[0:chunkSize])
|
|
slice = slice[chunkSize:]
|
|
}
|
|
|
|
return chunks
|
|
}
|
|
|
|
func newTestConfig() *setting.Cfg {
|
|
return &setting.Cfg{AWSAllowedAuthProviders: []string{"default"}, AWSAssumeRoleEnabled: true, AWSListMetricsPageLimit: 1000}
|
|
}
|
|
|
|
type fakeSessionCache struct {
|
|
}
|
|
|
|
func (s fakeSessionCache) GetSession(region string, settings awsds.AWSDatasourceSettings) (*session.Session, error) {
|
|
return &session.Session{
|
|
Config: &aws.Config{},
|
|
}, nil
|
|
}
|