日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ListEnvPodMonitors - 查詢環境的PodMonitor列表

查詢環境的PodMonitor列表。

調試

您可以在OpenAPI Explorer中直接運行該接口,免去您計算簽名的困擾。運行成功后,OpenAPI Explorer可以自動生成SDK代碼示例。

授權信息

下表是API對應的授權信息,可以在RAM權限策略語句的Action元素中使用,用來給RAM用戶或RAM角色授予調用此API的權限。具體說明如下:

  • 操作:是指具體的權限點。
  • 訪問級別:是指每個操作的訪問級別,取值為寫入(Write)、讀?。≧ead)或列出(List)。
  • 資源類型:是指操作中支持授權的資源類型。具體說明如下:
    • 對于必選的資源類型,用背景高亮的方式表示。
    • 對于不支持資源級授權的操作,用全部資源表示。
  • 條件關鍵字:是指云產品自身定義的條件關鍵字。
  • 關聯操作:是指成功執行操作所需要的其他權限。操作者必須同時具備關聯操作的權限,操作才能成功。
操作訪問級別資源類型條件關鍵字關聯操作
arms:ListEnvPodMonitorslist
  • Environment
    acs:arms:{#regionId}:{#accountId}:environment/{#environmentId}

請求參數

名稱類型必填描述示例值
RegionIdstring

地域 ID。

cn-hangzhou
EnvironmentIdstring

環境 ID。

env-xxxxx

返回參數

名稱類型描述示例值
object

Schema of Response

RequestIdstring

Id of the request

4C518054-852F-4023-ABC1-4AF95FF7****
Codeinteger

狀態碼。200 表示成功。

200
Dataarray<object>

操作結果信息。

Monitoringobject

返回結構體。

RegionIdstring

地域 ID。

cn-beijing
EnvironmentIdstring

環境 ID。

env-xxxxx
Namespacestring

命名空間。

arms-prom
PodMonitorNamestring

PodMonitor 名稱。

pm1
ConfigYamlstring

yaml 配置串。

參見補充說明。
Statusstring

狀態。

run
CreationTimestampstring

創建時間(時間戳)。

2011-01-02T11:34:22Z
AddonNamestring

歸屬的組件名。

mysql
AddonReleaseNamestring

歸屬的組件實例名。

mysql1
AddonVersionstring

歸屬的組件版本。

1.0.5
Endpointsarray<object>

podmonitor 的端點列表。

Endpointobject

端點列表。

Portstring

對外端口。

9182
TargetPortinteger

目標端口。

3306
Pathstring

采集路徑。

/metrics
Intervalstring

采集時間間隔。

30s
MatchedTargetCountinteger

PodMonitor.Endpoint 匹配出的 target(即 pod)數量。

1
Messagestring

返回結果的提示信息。

success

示例

正常返回示例

JSON格式

{
  "RequestId": "4C518054-852F-4023-ABC1-4AF95FF7****",
  "Code": 200,
  "Data": [
    {
      "RegionId": "cn-beijing",
      "EnvironmentId": "env-xxxxx",
      "Namespace": "arms-prom",
      "PodMonitorName": "pm1",
      "ConfigYaml": "參見補充說明。",
      "Status": "run",
      "CreationTimestamp": "2011-01-02T11:34:22Z",
      "AddonName": "mysql",
      "AddonReleaseName": "mysql1",
      "AddonVersion": "1.0.5",
      "Endpoints": [
        {
          "Port": "9182",
          "TargetPort": 3306,
          "Path": "/metrics",
          "Interval": "30s",
          "MatchedTargetCount": 1
        }
      ]
    }
  ],
  "Message": "success"
}

錯誤碼

訪問錯誤中心查看更多錯誤碼。

變更歷史

變更時間變更內容概要操作
暫無變更歷史

ConfigYaml 示例:

apiVersion: monitoring.coreos.com/v1
kind: PodMonitor
metadata:
  name: arms-admin-pm1
  namespace: arms-prom
  annotations:
    arms.prometheus.io/discovery: 'true'
spec:
  selector:
    matchLabels:
      app: arms-prometheus-ack-arms-prometheus
      release: arms-prometheus
  namespaceSelector:
    any: true    
  podMetricsEndpoints:
  - interval: 30s
    targetPort: 9335
    path: /metrics
  - interval: 10s
    targetPort: 9335
    path: /metrics1