Following new indicators: ``` service_instance_resp_time= from(ServiceInstance.latency).longAvg(); ...
endpoint_avg = from(Endpoint.latency).longAvg(); .... instance_jvm_memory_heap = from(ServiceInstanceJVMMemory.used).filter(heapStatus == true).longAvg(); instance_jvm_memory_noheap = from(ServiceInstanceJVMMemory.used).filter(heapStatus == false).longAvg(); instance_jvm_memory_heap_max = from(ServiceInstanceJVMMemory.max).filter(heapStatus == true).longAvg(); instance_jvm_memory_noheap_max = from(ServiceInstanceJVMMemory.max).filter(heapStatus == false).longAvg(); ``` [ Full content available at: https://github.com/apache/incubator-skywalking/pull/1721 ] This message was relayed via gitbox.apache.org for [email protected]
