func (rg *RecordGenerator) taskRecord(task state.Task, f state.Framework, domain string, spec labels.Func, ipSources []string, enumFW *EnumerableFramework) { newTask := &EnumerableTask{ID: task.ID, Name: task.Name} enumFW.Tasks = append(enumFW.Tasks, newTask) // define context ctx := context{ spec(task.Name), hashString(task.ID), slaveIDTail(task.SlaveID), task.IP(ipSources...), task.SlaveIP, } // use DiscoveryInfo name if defined instead of task name if task.HasDiscoveryInfo() { // LEGACY TODO: REMOVE ctx.taskName = task.DiscoveryInfo.Name rg.taskContextRecord(ctx, task, f, domain, spec, newTask) // LEGACY, TODO: REMOVE ctx.taskName = spec(task.DiscoveryInfo.Name) rg.taskContextRecord(ctx, task, f, domain, spec, newTask) } else { rg.taskContextRecord(ctx, task, f, domain, spec, newTask) } }
func (provider *Mesos) getHost(task state.Task) string { return task.IP(strings.Split(provider.IPSources, ",")...) }