Replies: 1 comment
-
Official doc about the new dashboards |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Virtual Cache
Virtual cache represents the cache nodes detected by server agents' plugins. The performance
metrics of the cache are also from the Cache client-side perspective.
For example, Redis plugins in the Java agent could detect the latency of command
As a result, SkyWalking would show traffic, latency, success rate, and sampled slow operations(write/read) powered by backend analysis capabilities in this dashboard.
The cache operation span should have
cache.type
, value = The type of cache system , e.g. rediscache.op
, value = the operation of command , indicates the command is used forwrite
orread
operationcache.command
, value = the cache command , e.g. get,set,delcache.key
, value = the cache keyVirtual Message Queue (MQ)
Virtual MQ represents the MQ nodes detected by server agents' plugins. The performance
metrics of the MQ are also from the MQ client-side perspective.
For example, Kafka plugins in the Java agent could detect the transmission latency of message
As a result, SkyWalking would show message count, transmission latency, success rate powered by backend analysis capabilities in this dashboard.
The MQ operation span should have
mq.queue
, value = MQ queue namemq.topic
, value = MQ queue topic , it's optional as some MQ don't have topic concept.transmission.latency
, value = Transmission latency from consumer to producerBeta Was this translation helpful? Give feedback.
All reactions