mufiye commented on issue #10341:
URL: https://github.com/apache/skywalking/issues/10341#issuecomment-1435948684

   > What is the issue? If the source(from otel) is delta, then use SUM to 
build data per min/hour/day is correct. The recent AWS s3 monitoring is using 
this way.
   
   My issue is that the skywalking oap can not receive counter data of airflow. 
I think the reason is the delta counter data will not be received. The relative 
code is shown below. Did I misunderstand this part of the code?
   ```java
           if (metric.hasSum()) {
   
               final Sum sum = metric.getSum();
   
               if (sum
   
                   .getAggregationTemporality() != 
AGGREGATION_TEMPORALITY_CUMULATIVE) {
   
                   return Stream.empty();
   
               }
   ```


-- 
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]

Reply via email to