File tree 2 files changed +2
-0
lines changed
oap-server/analyzer/meter-analyzer/src/main/java/org/apache/skywalking/oap/meter/analyzer
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 83
83
* BanyanDB: Separate the storage configuration to an independent file: ` bydb.yaml ` .
84
84
* Bump Armeria to 1.32.0 and some transitive dependencies.
85
85
* Skip persisting metrics/record data that have been expired.
86
+ * Fix the issue of missing Last Ping data.
86
87
87
88
#### UI
88
89
Original file line number Diff line number Diff line change @@ -291,6 +291,7 @@ private void generateTraffic(MeterEntity entity) {
291
291
endpointTraffic .setName (entity .getEndpointName ());
292
292
endpointTraffic .setServiceId (entity .serviceId ());
293
293
endpointTraffic .setTimeBucket (TimeBucket .getMinuteTimeBucket (System .currentTimeMillis ()));
294
+ endpointTraffic .setLastPingTimestamp (TimeBucket .getMinuteTimeBucket (System .currentTimeMillis ()));
294
295
MetricsStreamProcessor .getInstance ().in (endpointTraffic );
295
296
}
296
297
}
You can’t perform that action at this time.
0 commit comments