Compare commits

..

No commits in common. "ca43d6b9a562f5119114d62674aecbde057374b3" and "3ed80f4b687f95d20a88b86efee5b7a71a6105f7" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "paramod"
version = "__VERSION__"
edition = "2024"
edition = "2021"
[dependencies]
serde_yaml = "0.9"

View File

@ -1,6 +1,6 @@
# Build Stage
FROM rust:1.85 as builder
FROM rust:1.81 as builder
WORKDIR /usr/src/app

View File

@ -31,7 +31,7 @@ pub fn start_influx_thread(config: Arc<Mutex<AppConfig>>, values: Arc<Mutex<Modb
if should_write(&config, name, "input_register") {
let point = WriteQuery::new(Timestamp::from(Utc::now()), measurement.clone())
.add_field(name, *v)
// .add_tag("type", "input_register")
.add_tag("type", "input_register")
.add_tag("location", location.as_str())
.to_owned();
points.push(point);
@ -44,7 +44,7 @@ pub fn start_influx_thread(config: Arc<Mutex<AppConfig>>, values: Arc<Mutex<Modb
if should_write(&config, name, "holding_register") {
let point = WriteQuery::new(Timestamp::from(Utc::now()), measurement.clone())
.add_field(name, *v)
// .add_tag("type", "holding_register")
.add_tag("type", "holding_register")
.add_tag("location", location.as_str())
.to_owned();
points.push(point);
@ -57,7 +57,7 @@ pub fn start_influx_thread(config: Arc<Mutex<AppConfig>>, values: Arc<Mutex<Modb
if should_write(&config, name, "coils") {
let point = WriteQuery::new(Timestamp::from(Utc::now()), measurement.clone())
.add_field(name, *v)
// .add_tag("type", "coils")
.add_tag("type", "coils")
.add_tag("location", location.as_str())
.to_owned();
points.push(point);