2025-01-22 15:43:59 +02:00
|
|
|
<!--
|
|
|
|
|
|
2025-02-25 09:39:16 +02:00
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
2025-01-22 15:43:59 +02:00
|
|
|
|
|
|
|
|
Licensed 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.
|
|
|
|
|
|
|
|
|
|
-->
|
2025-02-24 18:43:19 +02:00
|
|
|
<section [formGroup]="processingForm" class="tb-form-panel no-border no-padding">
|
2025-02-07 12:15:32 +02:00
|
|
|
<tb-example-hint
|
|
|
|
|
[hintText]="'rule-node-config.save-time-series.advanced-settings-hint'"
|
2025-02-28 15:16:13 +02:00
|
|
|
[popupHelpLink]="timeseries ? 'rulenode/save_timeseries_node_advanced' : null"
|
2025-02-07 12:15:32 +02:00
|
|
|
>
|
|
|
|
|
</tb-example-hint>
|
2025-03-03 11:00:34 +02:00
|
|
|
<tb-advanced-processing-setting-row *ngIf="timeseries"
|
2025-01-22 15:43:59 +02:00
|
|
|
formControlName="timeseries"
|
|
|
|
|
title="{{ 'rule-node-config.save-time-series.time-series' | translate }}"
|
2025-02-24 18:43:19 +02:00
|
|
|
></tb-advanced-processing-setting-row>
|
2025-03-03 11:00:34 +02:00
|
|
|
<tb-advanced-processing-setting-row *ngIf="attribute"
|
|
|
|
|
formControlName="attribute"
|
|
|
|
|
title="{{ 'rule-node-config.save-attribute.attribute' | translate }}"
|
|
|
|
|
></tb-advanced-processing-setting-row>
|
|
|
|
|
<tb-advanced-processing-setting-row *ngIf="latest"
|
2025-01-22 15:43:59 +02:00
|
|
|
formControlName="latest"
|
|
|
|
|
title="{{ 'rule-node-config.save-time-series.latest' | translate }}"
|
2025-02-24 18:43:19 +02:00
|
|
|
></tb-advanced-processing-setting-row>
|
2025-03-03 11:00:34 +02:00
|
|
|
<tb-advanced-processing-setting-row *ngIf="webSockets"
|
2025-01-22 15:43:59 +02:00
|
|
|
formControlName="webSockets"
|
|
|
|
|
title="{{ 'rule-node-config.save-time-series.web-sockets' | translate }}"
|
2025-02-24 18:43:19 +02:00
|
|
|
></tb-advanced-processing-setting-row>
|
2025-03-03 11:00:34 +02:00
|
|
|
<tb-advanced-processing-setting-row *ngIf="calculatedFields"
|
2025-02-24 18:43:19 +02:00
|
|
|
formControlName="calculatedFields"
|
|
|
|
|
title="{{ 'rule-node-config.save-time-series.calculated-fields' | translate }}"
|
|
|
|
|
></tb-advanced-processing-setting-row>
|
2025-01-22 15:43:59 +02:00
|
|
|
</section>
|