​
Select Service
ves-io-schema-app_setting-API-Get
Published April 5, 2023 | Last modified June 26, 2025
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: "291"
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: "2025-06-26T23:54:47.884092Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
labels: {}
tenant: acmecorp
uid: 0855527d-c0f3-4920-a459-10a6c900db58
Copied!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build336959812_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/app_settings/app-setting?response_format=0'
Copied!
curl response:
HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 26 Jun 2025 23:54:47 GMT
Vary: Accept-Encoding
{
"create_form": null,
"replace_form": null,
"resource_version": "291",
"metadata": {
"name": "app-setting",
"namespace": "documentation",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "0855527d-c0f3-4920-a459-10a6c900db58",
"creation_timestamp": "2025-06-26T23:54:47.884092Z",
"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": [
]
}
Copied!