ves-io-schema-app_setting-API-Get

Examples of getting app_setting

Usecase:

Get app_setting for current namespace

Request using vesctl:

vesctl configuration get app_setting app-setting --namespace documentation

vesctl yaml response:

          deletedReferredObjects: []
disabledReferredObjects: []
metadata:
  annotations: {}
  labels: {}
  name: app-setting
  namespace: documentation
referringObjects: []
resourceVersion: "187"
spec:
  anomalyTypes: []
  appTypeRefs: []
  appTypeSettings:
  - appTypeRef:
    - kind: app_type
      name: bookinfo
      namespace: shared
      tenant: acmecorp
    timeseriesAnalysesSetting:
      metricSelectors:
      - metric:
        - REQUEST_RATE
        metricsSource: VIRTUAL_HOSTS
status: []
systemMetadata:
  creationTimestamp: "2024-03-21T14:04:33.589354Z"
  creatorClass: examplesvc
  creatorId: examplesvc
  finalizers: []
  labels: {}
  tenant: acmecorp
  uid: 61599982-9106-40d8-a672-49a3865edb15

        

Request using curl:

          curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build3109416560_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/app_settings/app-setting?response_format=0'
        

curl response:

          HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 21 Mar 2024 14:04:33 GMT
Vary: Accept-Encoding

{
  "create_form": null,
  "replace_form": null,
  "resource_version": "187",
  "metadata": {
    "name": "app-setting",
    "namespace": "documentation",
    "labels": {
    },
    "annotations": {
    },
    "description": "",
    "disable": false
  },
  "system_metadata": {
    "uid": "61599982-9106-40d8-a672-49a3865edb15",
    "creation_timestamp": "2024-03-21T14:04:33.589354Z",
    "deletion_timestamp": null,
    "modification_timestamp": null,
    "initializers": null,
    "finalizers": [
    ],
    "tenant": "acmecorp",
    "creator_class": "examplesvc",
    "creator_id": "examplesvc",
    "object_index": 0,
    "owner_view": null,
    "labels": {
    }
  },
  "spec": {
    "app_type_refs": [
    ],
    "anomaly_types": [
    ],
    "app_type_settings": [
      {
        "app_type_ref": [
          {
            "kind": "app_type",
            "uid": "",
            "tenant": "acmecorp",
            "namespace": "shared",
            "name": "bookinfo"
          }
        ],
        "timeseries_analyses_setting": {
          "metric_selectors": [
            {
              "metrics_source": "VIRTUAL_HOSTS",
              "metric": [
                "REQUEST_RATE"
              ]
            }
          ]
        },
        "business_logic_markup_setting": null,
        "user_behavior_analysis_setting": null
      }
    ]
  },
  "status": [
  ],
  "referring_objects": [
  ],
  "deleted_referred_objects": [
  ],
  "disabled_referred_objects": [
  ]
}