AutoSpotting/AutoSpotting

View on GitHub
core/autoscaling.go

Summary

Maintainability
B
6 hrs
Test Coverage

File autoscaling.go has 526 lines of code (exceeds 500 allowed). Consider refactoring.
Open

// Copyright (c) 2016-2022 Cristian Măgherușan-Stanciu
// Licensed under the Open Software License version 3.0

package autospotting

Severity: Minor
Found in core/autoscaling.go - About 2 hrs to fix

    autoScalingGroup has 23 methods (exceeds 20 allowed). Consider refactoring.
    Open

    type autoScalingGroup struct {
        *autoscaling.Group
    
        name                string
        region              *region
    Severity: Minor
    Found in core/autoscaling.go - About 2 hrs to fix

      Method autoScalingGroup.loadLaunchTemplate has 8 return statements (exceeds 4 allowed).
      Open

      func (a *autoScalingGroup) loadLaunchTemplate() (*launchTemplate, error) {
          //already done
          if a.launchTemplate != nil {
              return a.launchTemplate, nil
          }
      Severity: Major
      Found in core/autoscaling.go - About 50 mins to fix

        Method autoScalingGroup.findDeployment has 5 return statements (exceeds 4 allowed).
        Open

        func (a *autoScalingGroup) findDeployment(hookName string) (*string, *string, error) {
        
            apps, err := a.region.services.codedeploy.ListApplications(&codedeploy.ListApplicationsInput{})
        
            if err != nil {
        Severity: Major
        Found in core/autoscaling.go - About 35 mins to fix

          Method autoScalingGroup.getInstance has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
          Open

          func (a *autoScalingGroup) getInstance(
              availabilityZone *string,
              onDemand bool,
              considerInstanceProtection bool,
          ) *instance {
          Severity: Minor
          Found in core/autoscaling.go - About 25 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          There are no issues that match your filters.

          Category
          Status