application.yml 2.3 KB
Newer Older
wu-sheng's avatar
wu-sheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

P
peng-yongsheng 已提交
17 18 19 20
#cluster:
#  zookeeper:
#    hostPort: localhost:2181
#    sessionTimeout: 100000
21 22 23
naming:
  jetty:
    host: localhost
wu-sheng's avatar
wu-sheng 已提交
24
    port: 10800
25
    contextPath: /
彭勇升 pengys 已提交
26 27 28
cache:
#  guava:
  caffeine:
29 30 31
remote:
  gRPC:
    host: localhost
wu-sheng's avatar
wu-sheng 已提交
32
    port: 11800
33
agent_gRPC:
34 35 36
  gRPC:
    host: localhost
    port: 11800
37
    #Set these two setting to open ssl
38 39
    #sslCertChainFile: $path
    #sslPrivateKeyFile: $path
40 41 42

    #Set your own token to active auth
    #authentication: xxxxxx
43
agent_jetty:
44 45 46
  jetty:
    host: localhost
    port: 12800
47
    contextPath: /
P
peng-yongsheng 已提交
48 49 50 51 52
analysis_register:
  default:
analysis_jvm:
  default:
analysis_segment_parser:
53
  default:
54 55 56
    bufferFilePath: ../buffer/
    bufferOffsetMaxFileSize: 10M
    bufferSegmentMaxFileSize: 500M
57 58 59 60
ui:
  jetty:
    host: localhost
    port: 12800
61
    contextPath: /
62
storage:
63
  elasticsearch:
64 65 66 67 68
    clusterName: CollectorDBCluster
    clusterTransportSniffer: true
    clusterNodes: localhost:9300
    indexShardsNumber: 2
    indexReplicasNumber: 0
彭勇升 pengys 已提交
69
    highPerformanceMode: true
70 71 72
    ttl: 7
#storage:
#  h2:
73 74
#    url: jdbc:h2:~/memorydb
#    userName: sa
75 76
configuration:
  default:
77
#     namespace: xxxxx
78
# alarm threshold
79 80 81 82 83 84
    applicationApdexThreshold: 2000
    serviceErrorRateThreshold: 10.00
    serviceAverageResponseTimeThreshold: 2000
    instanceErrorRateThreshold: 10.00
    instanceAverageResponseTimeThreshold: 2000
    applicationErrorRateThreshold: 10.00
85 86 87 88
    applicationAverageResponseTimeThreshold: 2000
# thermodynamic
    thermodynamicResponseTimeStep: 50
    thermodynamicCountOfResponseTimeSteps: 40