Skip to content

Commit

Permalink
Added import to package name
Browse files Browse the repository at this point in the history
Added import to package name and create defaultConfig function
  • Loading branch information
lewis262626 committed Feb 17, 2023
1 parent 612f190 commit ea78a45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion receiver/awscloudwatchmetricsreceiver/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package awscloudwatchmetricsreceiver
package awscloudwatchmetricsreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscloudwatchmetricsreceiver"

import (
"errors"
Expand Down
4 changes: 4 additions & 0 deletions receiver/awscloudwatchmetricsreceiver/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ func NewFactory() component.Factory {
receiver.WithMetrics(createMetricsRceiver, stabilityLevel),
)
}

func createDefaultConfig() component.Config {
return &Config{}
}

0 comments on commit ea78a45

Please sign in to comment.