Merge pull request #11181 from irynamatveieva/fix/time-series-node-name

Timeseries node: change name
This commit is contained in:
Viacheslav Klimov 2024-08-01 13:57:02 +03:00 committed by GitHub
commit cb7542abdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,10 +43,10 @@ import static org.thingsboard.server.common.data.msg.TbMsgType.POST_TELEMETRY_RE
@Slf4j
@RuleNode(
type = ComponentType.ACTION,
name = "save timeseries",
name = "save time series",
configClazz = TbMsgTimeseriesNodeConfiguration.class,
nodeDescription = "Saves timeseries data",
nodeDetails = "Saves timeseries telemetry data based on configurable TTL parameter. Expects messages with 'POST_TELEMETRY_REQUEST' message type. " +
nodeDescription = "Saves time series data",
nodeDetails = "Saves time series telemetry data based on configurable TTL parameter. Expects messages with 'POST_TELEMETRY_REQUEST' message type. " +
"Timestamp in milliseconds will be taken from metadata.ts, otherwise 'now' message timestamp will be applied. " +
"Allows stopping updating values for incoming keys in the latest ts_kv table if 'skipLatestPersistence' is set to true.\n " +
"<br/>" +