Add monitoring for lwm2m and snmp transports
This commit is contained in:
parent
b9c73a283c
commit
36eef98264
@ -949,9 +949,19 @@
|
|||||||
"selected": false,
|
"selected": false,
|
||||||
"text": "tb-coap-transport",
|
"text": "tb-coap-transport",
|
||||||
"value": "tb-coap-transport"
|
"value": "tb-coap-transport"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"selected": false,
|
||||||
|
"text": "tb-lwm2m-transport",
|
||||||
|
"value": "tb-lwm2m-transport"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"selected": false,
|
||||||
|
"text": "tb-snmp-transport",
|
||||||
|
"value": "tb-snmp-transport"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"query": "tb-core1,tb-core2,tb-rule-engine1,tb-rule-engine2,tb-mqtt-transport1,tb-mqtt-transport2,tb-http-transport1,tb-http-transport2,tb-coap-transport",
|
"query": "tb-core1,tb-core2,tb-rule-engine1,tb-rule-engine2,tb-mqtt-transport1,tb-mqtt-transport2,tb-http-transport1,tb-http-transport2,tb-coap-transport,tb-lwm2m-transport,tb-snmp-transport",
|
||||||
"queryValue": "",
|
"queryValue": "",
|
||||||
"skipUrlSync": false,
|
"skipUrlSync": false,
|
||||||
"type": "custom"
|
"type": "custom"
|
||||||
|
|||||||
@ -70,7 +70,7 @@ scrape_configs:
|
|||||||
metrics_path: /actuator/prometheus
|
metrics_path: /actuator/prometheus
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: [ 'tb-http-transport1:8081' ]
|
- targets: [ 'tb-http-transport1:8081' ]
|
||||||
-
|
|
||||||
- job_name: 'tb-http-transport2'
|
- job_name: 'tb-http-transport2'
|
||||||
metrics_path: /actuator/prometheus
|
metrics_path: /actuator/prometheus
|
||||||
static_configs:
|
static_configs:
|
||||||
@ -81,3 +81,12 @@ scrape_configs:
|
|||||||
static_configs:
|
static_configs:
|
||||||
- targets: [ 'tb-coap-transport:8081' ]
|
- targets: [ 'tb-coap-transport:8081' ]
|
||||||
|
|
||||||
|
- job_name: 'tb-lwm2m-transport'
|
||||||
|
metrics_path: /actuator/prometheus
|
||||||
|
static_configs:
|
||||||
|
- targets: [ 'tb-lwm2m-transport:8081' ]
|
||||||
|
|
||||||
|
- job_name: 'tb-snmp-transport'
|
||||||
|
metrics_path: /actuator/prometheus
|
||||||
|
static_configs:
|
||||||
|
- targets: [ 'tb-snmp-transport:8081' ]
|
||||||
|
|||||||
@ -4,3 +4,9 @@ ZOOKEEPER_URL=zookeeper:2181
|
|||||||
LWM2M_BIND_ADDRESS=0.0.0.0
|
LWM2M_BIND_ADDRESS=0.0.0.0
|
||||||
LWM2M_BIND_PORT=5685
|
LWM2M_BIND_PORT=5685
|
||||||
LWM2M_TIMEOUT=10000
|
LWM2M_TIMEOUT=10000
|
||||||
|
|
||||||
|
METRICS_ENABLED=true
|
||||||
|
METRICS_ENDPOINTS_EXPOSE=prometheus
|
||||||
|
WEB_APPLICATION_ENABLE=true
|
||||||
|
WEB_APPLICATION_TYPE=servlet
|
||||||
|
HTTP_BIND_PORT=8081
|
||||||
|
|||||||
@ -1,2 +1,8 @@
|
|||||||
ZOOKEEPER_ENABLED=true
|
ZOOKEEPER_ENABLED=true
|
||||||
ZOOKEEPER_URL=zookeeper:2181
|
ZOOKEEPER_URL=zookeeper:2181
|
||||||
|
|
||||||
|
METRICS_ENABLED=true
|
||||||
|
METRICS_ENDPOINTS_EXPOSE=prometheus
|
||||||
|
WEB_APPLICATION_ENABLE=true
|
||||||
|
WEB_APPLICATION_TYPE=servlet
|
||||||
|
HTTP_BIND_PORT=8081
|
||||||
|
|||||||
@ -14,6 +14,17 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# If you enabled process metrics you should also enable 'web-environment'.
|
||||||
|
spring.main.web-environment: "${WEB_APPLICATION_ENABLE:false}"
|
||||||
|
# If you enabled process metrics you should set 'web-application-type' to 'servlet' value.
|
||||||
|
spring.main.web-application-type: "${WEB_APPLICATION_TYPE:none}"
|
||||||
|
|
||||||
|
server:
|
||||||
|
# Server bind address (has no effect if web-environment is disabled).
|
||||||
|
address: "${HTTP_BIND_ADDRESS:0.0.0.0}"
|
||||||
|
# Server bind port (has no effect if web-environment is disabled).
|
||||||
|
port: "${HTTP_BIND_PORT:8083}"
|
||||||
|
|
||||||
# Zookeeper connection parameters. Used for service discovery.
|
# Zookeeper connection parameters. Used for service discovery.
|
||||||
zk:
|
zk:
|
||||||
# Enable/disable zookeeper discovery service.
|
# Enable/disable zookeeper discovery service.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user