Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / aai / components / aai-traversal / resources / config / aaiconfig.properties
1 {{/*
2 #
3 # ============LICENSE_START=======================================================
4 # org.onap.aai
5 # ================================================================================
6 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 # Modifications Copyright © 2020 Orange
8 # Modifications Copyright © 2023 Nordix Foundation
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #    http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 #
23 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
24 #
25 */}}
26
27 aai.config.checktime=1000
28
29 # this could come from siteconfig.pl?
30 aai.config.nodename=AutomaticallyOverwritten
31 aai.server.url.base=http://aai.{{ include "common.namespace" . }}/aai/
32 aai.server.url=http://aai.{{ include "common.namespace" . }}/aai/{{ .Values.global.config.schema.version.api.default }}/
33 aai.global.callback.url=http://aai.{{ include "common.namespace" . }}/aai/
34
35 {{ if or (.Values.global.config.basic.auth.enabled) ( include "common.onServiceMesh" .) }}
36 aai.tools.enableBasicAuth=true
37 aai.tools.username={{ .Values.global.config.basic.auth.username }}
38 aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
39 {{ end }}
40
41 aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
42 aai.notificationEvent.default.status=UNPROCESSED
43 aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
44 aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
45 aai.notificationEvent.default.sourceName=aai
46 aai.notificationEvent.default.sequenceNumber=0
47 aai.notificationEvent.default.severity=NORMAL
48 aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
49 # This one lets us enable/disable resource-version checking on updates/deletes
50 aai.resourceversion.enableflag=true
51 aai.logging.maxStackTraceEntries=10
52 aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
53
54 # Used by Model-processing code
55 aai.model.delete.sleep.per.vtx.msec=500
56 aai.model.query.resultset.maxcount=50
57 aai.model.query.timeout.sec=90
58
59 aai.model.proc.max.levels=50
60 aai.edgeTag.proc.max.levels=50
61
62 aai.logging.trace.enabled=true
63 aai.logging.trace.logrequest=false
64 aai.logging.trace.logresponse=false
65
66 aai.transaction.logging=true
67 aai.transaction.logging.get=false
68 aai.transaction.logging.post=false
69
70 aai.realtime.clients={{ .Values.global.config.realtime.clients }}
71
72 #timeout for traversal enabled flag
73 aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }}
74
75 #timeout app specific
76 aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }}
77
78 #default timeout limit added for traversal if not overridden (in ms)
79 aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }}
80
81 #timeout for traversal dsl enabled flag
82 aai.traversal.dsl.timeoutenabled={{ .Values.config.dsl.timeout.enabled }}
83
84 #timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
85 aai.traversal.dsl.timeout.appspecific={{ .Values.config.dsl.timeout.appspecific | join "|" }}
86
87 #default timeout limit added for traversal dsl if not overridden (in ms)
88 aai.traversal.dsl.timeoutlimit={{ .Values.config.dsl.timeout.limit | int }}
89
90 # Threshold for margin of error (in ms) for resources_with_sot format to derive the most recent http method performed
91 aai.resource.formatter.threshold=10
92 aai.dsl.override={{ .Values.config.dslOverride }}