// Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). You may not // use this file except in compliance with the License. A copy of the // License is located at // // http://aws.amazon.com/apache2.0/ // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, // either express or implied. See the License for the specific language governing // permissions and limitations under the License. // Package application contains a application gatherer. package application import ( "time" "github.com/aws/amazon-ssm-agent/agent/context" "github.com/aws/amazon-ssm-agent/agent/plugins/inventory/model" ) const ( // GathererName captures name of application gatherer GathererName = "AWS:Application" // SchemaVersionOfApplication represents schema version of application gatherer SchemaVersionOfApplication = "1.1" ) // T represents application gatherer which implements all contracts for gatherers. type T struct{} // decoupling for easy testability var collectData = CollectApplicationData // Gatherer returns new application gatherer func Gatherer(context context.T) *T { return new(T) } // Name returns name of application gatherer func (t *T) Name() string { return GathererName } // Run executes application gatherer and returns list of inventory.Item comprising of application data func (t *T) Run(context context.T, configuration model.Config) (items []model.Item, err error) { var result model.Item //CaptureTime must comply with format: 2016-07-30T18:15:37Z to comply with regex at SSM. currentTime := time.Now().UTC() captureTime := currentTime.Format(time.RFC3339) result = model.Item{ Name: t.Name(), SchemaVersion: SchemaVersionOfApplication, Content: collectData(context), CaptureTime: captureTime, } items = append(items, result) return } // RequestStop stops the execution of application gatherer. func (t *T) RequestStop() error { return nil }