ves-io-schema-app_setting-API-Get
On This Page:
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:
metadata:
annotations: {}
labels: {}
name: app-setting
namespace: documentation
referringObjects: []
resourceVersion: "227"
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: "2022-07-28T12:09:35.086339432Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
labels: {}
tenant: acmecorp
uid: 6f07f34d-2c26-49b7-9a1c-b5bcb7ad9adb
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build1372770011_b001_apidocs.test/host=docker-desktop' '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, 28 Jul 2022 12:09:35 GMT
Vary: Accept-Encoding
X-Volterra-Response-Fields-Deprecated: object
{
"object": null,
"create_form": null,
"replace_form": null,
"resource_version": "227",
"metadata": {
"name": "app-setting",
"namespace": "documentation",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "6f07f34d-2c26-49b7-9a1c-b5bcb7ad9adb",
"creation_timestamp": "2022-07-28T12:09:35.086339432Z",
"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": [
]
}