dominikriemer commented on code in PR #1306: URL: https://github.com/apache/streampipes/pull/1306#discussion_r1111667357
########## streampipes-extensions/streampipes-processors-filters-jvm/src/main/resources/org.apache.streampipes.processors.filters.jvm.sdt/strings.en: ########## @@ -0,0 +1,34 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +org.apache.streampipes.processors.filters.jvm.sdt.title = Swinging Door Trending (SDT) Filter Processor +org.apache.streampipes.processors.filters.jvm.sdt.description = The Swinging Door Trending (SDT) Filter Processor can extract and forward the characteristic events of the original stream. In general, this filter can also be used to reduce the frequency of original data in a lossy way. + +sdt-timestamp-field.title = Timestamp Field +sdt-timestamp-field.description = Specifies the timestamp field name where the SDT algorithm should be applied on. + +sdt-value-field.title = Value Field +sdt-value-field.description = Specifies the value field name where the SDT algorithm should be applied on. + +sdt-compression-deviation.title = Compression Deviation +sdt-compression-deviation.description = Compression Deviation is the most important parameter in SDT that represents the maximum difference between the current sample and the current linear trend. Compression Deviation needs to be greater than 0 to perform compression. + +sdt-compression-min-interval.title = Compression Minimum Time Interval +sdt-compression-min-interval.description = Compression Minimum Time Interval is a parameter measures the time distance between two stored data points, which is used for noisy reduction. If the time interval between the current point and the last stored point is less than or equal to its value, current point will NOT be stored regardless of compression deviation. The default value is 0 with time unit ms. + +sdt-compression-max-interval.title = Compression Maximum Time Interval +sdt-compression-max-interval.description = Compression Maximum Time Interval is a parameter measure the time distance between two stored data points. If the time interval between the current point and the last stored point is greater than or equal to its value, current point will be stored regardless of compression deviation. The default value is 9,223,372,036,854,775,807(Long.MAX_VALUE) with time unit ms. Review Comment: I really like the detailed description. I'll have a look at the UI to see if we can improve the presentation of long descriptions. -- 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: dev-unsubscr...@streampipes.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org