本文整理匯總了Golang中github.com/apache/brooklyn-client/terminal.NewTable函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewTable函數的具體用法?Golang NewTable怎麽用?Golang NewTable使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了NewTable函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: show
func (cmd *Application) show(appName string) {
application, err := application.Application(cmd.network, appName)
if nil != err {
error_handler.ErrorExit(err)
}
entity, err := entities.GetEntity(cmd.network, appName, appName)
if nil != err {
error_handler.ErrorExit(err)
}
state, err := entity_sensors.CurrentState(cmd.network, appName, appName)
if nil != err {
error_handler.ErrorExit(err)
}
location, err := locations.GetLocation(cmd.network, application.Spec.Locations[0])
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id:", application.Id})
table.Add("Name:", application.Spec.Name)
table.Add("Status:", string(application.Status))
if serviceUp, ok := state[serviceIsUpStr]; ok {
table.Add("ServiceUp:", fmt.Sprintf("%v", serviceUp))
}
table.Add("Type:", application.Spec.Type)
table.Add("CatalogItemId:", entity.CatalogItemId)
table.Add("LocationId:", strings.Join(application.Spec.Locations, ", "))
table.Add("LocationName:", location.Name)
table.Add("LocationSpec:", location.Spec)
table.Add("LocationType:", location.Type)
table.Print()
}
示例2: Run
func (cmd *Config) Run(scope scope.Scope, c *cli.Context) {
if err := net.VerifyLoginURL(cmd.network); err != nil {
error_handler.ErrorExit(err)
}
if c.Args().Present() {
configValue, err := entity_config.ConfigValue(cmd.network, scope.Application, scope.Entity, c.Args().First())
if nil != err {
error_handler.ErrorExit(err)
}
displayValue, err := stringRepresentation(configValue)
if nil != err {
error_handler.ErrorExit(err)
}
fmt.Println(displayValue)
} else {
config, err := entity_config.ConfigCurrentState(cmd.network, scope.Application, scope.Entity)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Key", "Value"})
for key, value := range config {
table.Add(key, fmt.Sprintf("%v", value))
}
table.Print()
}
}
示例3: show
func (cmd *Activity) show(activityId string) {
activity, err := activities.Activity(cmd.network, activityId)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id:", activity.Id})
table.Add("DisplayName:", activity.DisplayName)
table.Add("Description:", activity.Description)
table.Add("EntityId:", activity.EntityId)
table.Add("EntityDisplayName:", activity.EntityDisplayName)
table.Add("Submitted:", time.Unix(activity.SubmitTimeUtc/1000, 0).Format(time.UnixDate))
table.Add("Started:", time.Unix(activity.StartTimeUtc/1000, 0).Format(time.UnixDate))
table.Add("Ended:", time.Unix(activity.EndTimeUtc/1000, 0).Format(time.UnixDate))
table.Add("CurrentStatus:", activity.CurrentStatus)
table.Add("IsError:", strconv.FormatBool(activity.IsError))
table.Add("IsCancelled:", strconv.FormatBool(activity.IsCancelled))
table.Add("SubmittedByTask:", activity.SubmittedByTask.Metadata.Id)
if activity.Streams["stdin"].Metadata.Size > 0 ||
activity.Streams["stdout"].Metadata.Size > 0 ||
activity.Streams["stderr"].Metadata.Size > 0 ||
activity.Streams["env"].Metadata.Size > 0 {
table.Add("Streams:", fmt.Sprintf("stdin: %d, stdout: %d, stderr: %d, env %d",
activity.Streams["stdin"].Metadata.Size,
activity.Streams["stdout"].Metadata.Size,
activity.Streams["stderr"].Metadata.Size,
activity.Streams["env"].Metadata.Size))
} else {
table.Add("Streams:", "")
}
table.Add("DetailedStatus:", fmt.Sprintf("\"%s\"", activity.DetailedStatus))
table.Print()
}
示例4: Run
func (cmd *Deploy) Run(scope scope.Scope, c *cli.Context) {
if err := net.VerifyLoginURL(cmd.network); err != nil {
error_handler.ErrorExit(err)
}
var create models.TaskSummary
var err error
var blueprint []byte
if c.Args().First() == "" {
error_handler.ErrorExit("A filename or URL or '-' must be provided as the first argument", error_handler.CLIUsageErrorExitCode)
}
if c.Args().First() == "-" {
blueprint, err = ioutil.ReadAll(os.Stdin)
if err != nil {
error_handler.ErrorExit(err)
}
create, err = application.CreateFromBytes(cmd.network, blueprint)
} else {
create, err = application.Create(cmd.network, c.Args().First())
}
if nil != err {
if httpErr, ok := err.(net.HttpError); ok {
error_handler.ErrorExit(strings.Join([]string{httpErr.Status, httpErr.Body}, "\n"), httpErr.Code)
} else {
error_handler.ErrorExit(err)
}
}
table := terminal.NewTable([]string{"Id:", create.EntityId})
table.Add("Name:", create.EntityDisplayName)
table.Add("Status:", create.CurrentStatus)
table.Print()
}
示例5: list
func (cmd *Policy) list(application, entity string) {
policies, err := entity_policies.PolicyList(cmd.network, application, entity)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Name", "State"})
for _, policy := range policies {
table.Add(policy.Id, policy.Name, string(policy.State))
}
table.Print()
}
示例6: listapp
func (cmd *Entity) listapp(application string) {
entitiesList, err := entities.EntityList(cmd.network, application)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Name", "Type"})
for _, entityitem := range entitiesList {
table.Add(entityitem.Id, entityitem.Name, entityitem.Type)
}
table.Print()
}
示例7: list
func (cmd *Application) list() {
applications, err := application.Applications(cmd.network)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Name", "Status", "Location"})
for _, app := range applications {
table.Add(app.Id, app.Spec.Name, string(app.Status), strings.Join(app.Spec.Locations, ", "))
}
table.Print()
}
示例8: Run
func (cmd *AddChildren) Run(scope scope.Scope, c *cli.Context) {
if err := net.VerifyLoginURL(cmd.network); err != nil {
error_handler.ErrorExit(err)
}
activity, err := entities.AddChildren(cmd.network, scope.Application, scope.Entity, c.Args().First())
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Task", "Submitted", "Status"})
table.Add(activity.Id, activity.DisplayName, time.Unix(activity.SubmitTimeUtc/1000, 0).Format(time.UnixDate), activity.CurrentStatus)
table.Print()
}
示例9: Run
func (cmd *Catalog) Run(scope scope.Scope, c *cli.Context) {
if err := net.VerifyLoginURL(cmd.network); err != nil {
error_handler.ErrorExit(err)
}
catalog, err := catalog.Catalog(cmd.network)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Name", "Description"})
for _, app := range catalog {
table.Add(app.Id, app.Name, app.Description)
}
table.Print()
}
示例10: listchildren
func (cmd *Activity) listchildren(activity string) {
activityList, err := activities.ActivityChildren(cmd.network, activity)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Task", "Submitted", "Status", "Streams"})
for _, activity := range activityList {
table.Add(activity.Id,
truncate(activity.DisplayName),
time.Unix(activity.SubmitTimeUtc/1000, 0).Format(time.UnixDate), truncate(activity.CurrentStatus),
streams(activity))
}
table.Print()
}
示例11: Run
func (cmd *Locations) Run(scope scope.Scope, c *cli.Context) {
if err := net.VerifyLoginURL(cmd.network); err != nil {
error_handler.ErrorExit(err)
}
locationList, err := locations.LocationList(cmd.network)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Id", "Name", "Spec"})
for _, location := range locationList {
table.Add(location.Id, location.Name, location.Spec)
}
table.Print()
}
示例12: show
func (cmd *Policy) show(application, entity, policy string) {
configs, err := entity_policy_config.GetAllConfigValues(cmd.network, application, entity, policy)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Name", "Value", "Description"})
var theConfigs policyConfigList = configs
sort.Sort(theConfigs)
for _, config := range theConfigs {
value, err := entity_policy_config.GetConfigValue(cmd.network, application, entity, policy, config.Name)
if nil != err {
error_handler.ErrorExit(err)
}
table.Add(config.Name, value, config.Description)
}
table.Print()
}
示例13: Run
func (cmd *Effector) Run(scope scope.Scope, c *cli.Context) {
if err := net.VerifyLoginURL(cmd.network); err != nil {
error_handler.ErrorExit(err)
}
effectors, err := entity_effectors.EffectorList(cmd.network, scope.Application, scope.Entity)
if nil != err {
error_handler.ErrorExit(err)
}
table := terminal.NewTable([]string{"Name", "Description", "Parameters"})
for _, effector := range effectors {
var parameters []string
for _, parameter := range effector.Parameters {
parameters = append(parameters, parameter.Name)
}
if !c.Args().Present() || c.Args().First() == effector.Name {
table.Add(effector.Name, effector.Description, strings.Join(parameters, ","))
}
}
table.Print()
}
示例14: show
func (cmd *Entity) show(application, entity string) {
summary, err := entities.GetEntity(cmd.network, application, entity)
if nil != err {
fmt.Fprintf(os.Stderr, "Error: %s\n", err)
os.Exit(1)
}
table := terminal.NewTable([]string{"Id:", summary.Id})
table.Add("Name:", summary.Name)
configState, err := entity_sensors.CurrentState(cmd.network, application, entity)
if nil != err {
error_handler.ErrorExit(err)
}
if serviceState, ok := configState[serviceStateSensor]; ok {
table.Add("Status:", fmt.Sprintf("%v", serviceState))
}
if serviceIsUp, ok := configState[serviceIsUp]; ok {
table.Add("ServiceUp:", fmt.Sprintf("%v", serviceIsUp))
}
table.Add("Type:", summary.Type)
table.Add("CatalogItemId:", summary.CatalogItemId)
table.Print()
}
示例15: list
func (cmd *Sensor) list(application, entity string) {
sensors, err := entity_sensors.SensorList(cmd.network, application, entity)
if nil != err {
error_handler.ErrorExit(err)
}
var theSensors sensorList = sensors
table := terminal.NewTable([]string{"Name", "Description", "Value"})
sort.Sort(theSensors)
for _, sensor := range theSensors {
value, err := entity_sensors.SensorValue(cmd.network, application, entity, sensor.Name)
if nil != err {
error_handler.ErrorExit(err)
}
displayValue, err := stringRepresentation(value)
if nil != err {
error_handler.ErrorExit(err)
}
table.Add(sensor.Name, sensor.Description, displayValue)
}
table.Print()
}