November 23, 2017


activate_agent.go

activate_agent.go
/*
Active an agent.

Important manual pages:
http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest/getObject
http://sldn.softlayer.com/reference/services/SoftLayer_Monitoring_Agent/activate
http://sldn.softlayer.com/article/object-masks

License: http://sldn.softlayer.com/article/License
Author: SoftLayer Technologies, Inc. <sldn@softlayer.com>
*/
package main

import (
	"fmt"
	"github.com/softlayer/softlayer-go/services"
	"github.com/softlayer/softlayer-go/session"
	"github.com/softlayer/softlayer-go/datatypes"
)

func main() {
	// SoftLayer API username and key
	username := "set me"
	apikey   := "set me"

	// The id of virtual server
	guestId  := 33051333

	// Agent name you want to restart
	agentName := "Process Monitoring Agent"

	// Create a session
	sess := session.New(username, apikey)

	// Get SoftLayer_Virtual_Guest and SoftLayer_Monitoring_Agent services
	virtualService := services.GetVirtualGuestService(sess)
	monitoringService := services.GetMonitoringAgentService(sess)

	// Declare object-mask which will be used to get monitoring agents
	mask := "id,monitoringAgents[statusName,name,id]"

	// Retrieve Virtual Guest in order to get its monitoring agents
	guest, err := virtualService.Id(guestId).Mask(mask).GetObject()
	if err != nil {
		fmt.Printf("\n Unable to get Virtual Guest\n - %s\n", err)
		return
	}

	// Declare an empty variable that will be used to store the agent
	monitoringAgent := datatypes.Monitoring_Agent{}

	// Search agent by its name
	for _, agent := range guest.MonitoringAgents{
		if *agent.Name == agentName {
			monitoringAgent = agent
		}
	}

	// Return message if agent doesn't exists
	if monitoringAgent.Id == nil {
		fmt.Printf("\n The VSI does not have the monitor agent: - %s\n", agentName)
		return
	}

	// Activate the monitoring agent
	result, err := monitoringService.Id(*monitoringAgent.Id).Activate()
	if err != nil {
		fmt.Printf("\n Unable to get activate the agent\n - %s\n", err)
		return
	}

	fmt.Println(result)
}

Feedback?

If this article contains any error, or leaves any of your questions unanswered, please help us out by opening up a github issue.
Open an issue