| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- // 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 measurements
- import "yunion.io/x/onecloud/pkg/apis/monitor"
- var ossLatency = SMeasurement{
- Context: []SMonitorContext{
- {
- "oss_latency", "Object storage latency",
- monitor.METRIC_RES_TYPE_OSS, monitor.METRIC_DATABASE_TELE,
- },
- },
- Metrics: []SMetric{
- {
- "req_late", "Request average E2E delay", monitor.METRIC_UNIT_MS,
- },
- },
- }
- var ossNetio = SMeasurement{
- Context: []SMonitorContext{
- {
- "oss_netio", "Object storage network traffic",
- monitor.METRIC_RES_TYPE_OSS, monitor.METRIC_DATABASE_TELE,
- },
- },
- Metrics: []SMetric{
- {
- "bps_recv", "Receive byte", monitor.METRIC_UNIT_BYTE,
- },
- {
- "bps_sent", "Send byte", monitor.METRIC_UNIT_BYTE,
- },
- },
- }
- var ossReq = SMeasurement{
- Context: []SMonitorContext{
- {
- "oss_req", "Object store request", monitor.METRIC_RES_TYPE_OSS,
- monitor.METRIC_DATABASE_TELE,
- },
- },
- Metrics: []SMetric{
- {
- "req_count", "request count", monitor.METRIC_UNIT_COUNT,
- },
- },
- }
- var ossPerfMon = SMeasurement{
- Context: []SMonitorContext{
- {
- Name: "bucket_perf",
- DisplayName: "Object storage bucket performance monitor",
- ResourceType: monitor.METRIC_RES_TYPE_OSS,
- Database: monitor.METRIC_DATABASE_TELE,
- },
- },
- Metrics: []SMetric{
- {
- Name: "upload_delay_ms",
- DisplayName: "Bucket upload delay in milliseconds",
- Unit: monitor.METRIC_UNIT_MS,
- },
- {
- Name: "download_delay_ms",
- DisplayName: "Bucket download delay in milliseconds",
- Unit: monitor.METRIC_UNIT_MS,
- },
- {
- Name: "delete_delay_ms",
- DisplayName: "Bucket delete delay in milliseconds",
- Unit: monitor.METRIC_UNIT_MS,
- },
- {
- Name: "upload_rate_mbps",
- DisplayName: "Bucket upload rate in megabits per second",
- Unit: monitor.METRIC_UNIT_MBPS,
- },
- {
- Name: "download_rate_mbps",
- DisplayName: "Bucket download rate in megabits per second",
- Unit: monitor.METRIC_UNIT_MBPS,
- },
- },
- }
|