Add `Service`, `ServiceInstance`, `Endpoint` dashboard forwarder to Kubernetes Topologies. (#12604)
This commit is contained in:
parent
638c44679b
commit
a9d6f2ab85
|
|
@ -77,6 +77,7 @@
|
|||
* Add a loading view for initialization page.
|
||||
* Fix a bug for selectors when clicking the refresh icon.
|
||||
* Fix health check to OAP backend.
|
||||
* Add `Service`, `ServiceInstance`, `Endpoint` dashboard forwarder to Kubernetes Topologies.
|
||||
|
||||
#### Documentation
|
||||
|
||||
|
|
|
|||
|
|
@ -94,9 +94,17 @@
|
|||
},
|
||||
"linkDashboard": "K8S-Service-Relation",
|
||||
"nodeDashboard": [
|
||||
{
|
||||
"scope": "Service",
|
||||
"dashboard": "K8S-Service-Service"
|
||||
},
|
||||
{
|
||||
"scope": "Endpoint",
|
||||
"dashboard": "K8S-Endpoint"
|
||||
},
|
||||
{
|
||||
"scope": "ServiceInstance",
|
||||
"dashboard": "K8S-Service-Pods"
|
||||
}
|
||||
],
|
||||
"nodeMetrics": [],
|
||||
|
|
|
|||
|
|
@ -214,7 +214,20 @@
|
|||
"showDepth": true
|
||||
},
|
||||
"linkDashboard": "K8S-Service-Relation",
|
||||
"nodeDashboard": [],
|
||||
"nodeDashboard": [
|
||||
{
|
||||
"scope": "Service",
|
||||
"dashboard": "K8S-Service-Service"
|
||||
},
|
||||
{
|
||||
"scope": "Endpoint",
|
||||
"dashboard": "K8S-Endpoint"
|
||||
},
|
||||
{
|
||||
"scope": "ServiceInstance",
|
||||
"dashboard": "K8S-Service-Pods"
|
||||
}
|
||||
],
|
||||
"nodeMetrics": [],
|
||||
"linkServerExpressions": [
|
||||
"avg(kubernetes_service_relation_server_write_package_size)/60",
|
||||
|
|
|
|||
Loading…
Reference in New Issue