pg-yang commented on issue #9677:
URL: https://github.com/apache/skywalking/issues/9677#issuecomment-1263377951
The metrics which contains route , node face to specific node(or upstream
), else other to all node
```
# HELP apisix_bandwidth Total bandwidth in bytes consumed per service in
APISIX
# TYPE apisix_bandwidth counter
apisix_bandwidth{type="egress",route="",service="",consumer="",node=""} 678
apisix_bandwidth{type="egress",route="routes#1",service="1",consumer="",node="127.0.0.1"}
678
apisix_bandwidth{type="ingress",route="",service="",consumer="",node=""} 627
apisix_bandwidth{type="ingress",route="routes#1",service="1",consumer="",node="127.0.0.1"}
252
```
If we only collect metrics from apisix aspect (skip metrics which don't
contain `route` ,`node` ) , the result would be incomplete .
If group metrics by `type ` `route ` `node ` , the label would be too
many , the number would be `typeNumer*routeNumber*nodeNumer `
So I mapping node to instance , route to endpoint .
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]