本文整理汇总了Golang中github.com/cloudfoundry/hm9000/models.PendingStopMessage.LogDescription方法的典型用法代码示例。如果您正苦于以下问题:Golang PendingStopMessage.LogDescription方法的具体用法?Golang PendingStopMessage.LogDescription怎么用?Golang PendingStopMessage.LogDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/hm9000/models.PendingStopMessage
的用法示例。
在下文中一共展示了PendingStopMessage.LogDescription方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: appendStopMessageIfNotDuplicate
func (a *appAnalyzer) appendStopMessageIfNotDuplicate(message models.PendingStopMessage, loggingMessage string, additionalDetails map[string]string) {
existingMessage, alreadyQueued := a.existingPendingStopMessages[message.StoreKey()]
if !alreadyQueued {
a.logger.Info(fmt.Sprintf("Enqueuing Stop Message: %s", loggingMessage), message.LogDescription(), additionalDetails)
a.stopMessages[message.StoreKey()] = message
} else {
a.logger.Info(fmt.Sprintf("Skipping Already Enqueued Stop Message: %s", loggingMessage), existingMessage.LogDescription(), additionalDetails)
}
}
示例2: stopMessageToSend
func (sender *Sender) stopMessageToSend(message models.PendingStopMessage) (models.StopMessage, bool) {
appKey := sender.store.AppKey(message.AppGuid, message.AppVersion)
app, found := sender.apps[appKey]
if !found {
sender.logger.Info("Skipping sending stop message: instance is no longer running", message.LogDescription())
return models.StopMessage{}, false
}
instanceToStop := app.InstanceWithGuid(message.InstanceGuid)
messageToSend := models.StopMessage{
AppGuid: message.AppGuid,
AppVersion: message.AppVersion,
InstanceGuid: message.InstanceGuid,
InstanceIndex: instanceToStop.InstanceIndex,
MessageId: message.MessageId,
}
if !app.IsDesired() {
sender.logger.Info("Sending stop message: instance is running, app is no longer desired", message.LogDescription(), app.LogDescription())
messageToSend.IsDuplicate = false
return messageToSend, true
}
if !app.IsIndexDesired(instanceToStop.InstanceIndex) {
sender.logger.Info("Sending stop message: index of instance to stop is beyond desired # of instances", message.LogDescription(), app.LogDescription())
messageToSend.IsDuplicate = false
return messageToSend, true
}
if instanceToStop.State == models.InstanceStateEvacuating {
sender.logger.Info("Sending stop message for evacuating app", message.LogDescription(), app.LogDescription())
messageToSend.IsDuplicate = true
return messageToSend, true
}
if len(app.StartingOrRunningInstancesAtIndex(instanceToStop.InstanceIndex)) > 1 {
sender.logger.Info("Sending stop message: instance is a duplicate running at a desired index", message.LogDescription(), app.LogDescription())
messageToSend.IsDuplicate = true
return messageToSend, true
}
sender.logger.Info("Skipping sending stop message: instance is running on a desired index (and there are no other instances running at that index)", message.LogDescription(), app.LogDescription())
return models.StopMessage{}, false
}
示例3: sendStopMessage
func (sender *Sender) sendStopMessage(stopMessage models.PendingStopMessage) {
messageToSend, shouldSend := sender.stopMessageToSend(stopMessage)
if shouldSend {
err := sender.messageBus.Publish(sender.conf.SenderNatsStopSubject, messageToSend.ToJSON())
if err != nil {
sender.logger.Error("Failed to send stop message", err, stopMessage.LogDescription())
sender.didSucceed = false
return
}
sender.sentStopMessages = append(sender.sentStopMessages, stopMessage)
if stopMessage.KeepAlive == 0 {
sender.queueStopMessageForDeletion(stopMessage, "sent stop message with no keep alive")
} else {
sender.markStopMessageSent(stopMessage)
}
} else {
sender.queueStopMessageForDeletion(stopMessage, "stop message that will not be sent")
}
}
示例4: queueStopMessageForDeletion
func (sender *Sender) queueStopMessageForDeletion(stopMessage models.PendingStopMessage, reason string) {
sender.logger.Info(fmt.Sprintf("Deleting %s", reason), stopMessage.LogDescription())
sender.stopMessagesToDelete = append(sender.stopMessagesToDelete, stopMessage)
}