Compare commits
2 Commits
3ed80f4b68
...
ca43d6b9a5
| Author | SHA1 | Date | |
|---|---|---|---|
| ca43d6b9a5 | |||
| 68140a0c45 |
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "paramod"
|
||||
version = "__VERSION__"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
serde_yaml = "0.9"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
|
||||
# Build Stage
|
||||
FROM rust:1.81 as builder
|
||||
FROM rust:1.85 as builder
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user