Analytics

analytics 模板是一个汇报给 Apigee 分析系统的请求。Apigee Adapter for Istio 网站中包含了相关的用法、概念等内容。要获取更多相关信息或产品支持,请联系 Apigee

配置样例:

  1. apiVersion: config.istio.io/v1alpha2
  2. kind: analytics
  3. metadata:
  4. name: apigee
  5. namespace: istio-system
  6. spec:
  7. api_key: request.api_key | request.headers["x-api-key"] | ""
  8. api_proxy: api.service | destination.service | ""
  9. response_status_code: response.code | 0
  10. client_ip: source.ip | ip("0.0.0.0")
  11. request_verb: request.method | ""
  12. request_uri: request.path | ""
  13. request_path: request.path | ""
  14. useragent: request.useragent | ""
  15. client_received_start_timestamp: request.time
  16. client_received_end_timestamp: request.time
  17. target_sent_start_timestamp: request.time
  18. target_sent_end_timestamp: request.time
  19. target_received_start_timestamp: response.time
  20. target_received_end_timestamp: response.time
  21. client_sent_start_timestamp: response.time
  22. client_sent_end_timestamp: response.time
  23. api_claims: # from jwt
  24. json_claims: request.auth.raw_claims | ""

模板

该模板向 Apigee 分析引擎提供 Istio 的遥测数据。

字段类型说明
apiProxystringProxy 的名称,通常是 Istio API 或者服务名称
responseStatusCodeint64HTTP 响应码
clientIpstring客户端 IP 地址
requestVerbstringHTTP 请求方法
requestUristringHTTP 请求 URI
requestPathstringHTTP 请求路径
useragentstringHTTP user agent Header
clientReceiveStartTimestampeistio.policy.v1beta1.TimeStampapi_proxy 开始接收请求的时间戳
clientReceivedEndTimestampistio.policy.v1beta1.TimeStampapi_proxy 完成接收请求的时间戳
clientSentStartTimestampistio.policy.v1beta1.TimeStampapi_proxy 开始向目标发送请求的时间戳
clientSentEndTimestampistio.policy.v1beta1.TimeStampapi_proxy 完成向目标发送请求的时间戳
targetSentStartTimestampistio.policy.v1beta1.TimeStampapi_proxy 开始请求目标的时间戳
targetSentEndTimestampistio.policy.v1beta1.TimeStampapi_proxy 完成目标请求的时间戳
targetReceivedStartTimestampistio.policy.v1beta1.TimeStampapi_proxy 开始从目标接收响应的时间戳
targetReceivedEndTimestampistio.policy.v1beta1.TimeStampapi_proxy 完成从目标接收响应的时间戳
apiClaimsmap<string, string>JWT 声明,用于在需要的情况下进行请求的认证。使用 json_claims 来传递所有声明
apiKeystringAPI Key,用于在需要的情况下进行请求的认证