// Copyright 2019 Yunion // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License 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 modules import ( "fmt" "yunion.io/x/jsonutils" "yunion.io/x/onecloud/pkg/mcclient/modulebase" "yunion.io/x/onecloud/pkg/mcclient" ) type PerformanceManager struct { modulebase.ResourceManager } var ( Performances PerformanceManager ) func (this *PerformanceManager) GetTop5(s *mcclient.ClientSession, params jsonutils.JSONObject) (jsonutils.JSONObject, error) { node_labels, err := params.GetString("node_labels") if err != nil { fmt.Printf("Error: %s\n", err) } path := fmt.Sprintf("/%s/top5?node_labels=%s", this.KeywordPlural, node_labels) return modulebase.Get(this.ResourceManager, s, path, this.Keyword) } func init() { Performances = PerformanceManager{NewMonitorManager("performance", "performances", []string{"cpu_idle", "memory_usage", "disk_ioread", "disk_iowrite", "traffic_in", "traffic_out"}, []string{})} register(&Performances) }