Do not allocate for each metrics submission (#2146)
This commit is contained in:
@@ -13,6 +13,7 @@ pub struct Counter {
|
|||||||
/// last accumulated value logged
|
/// last accumulated value logged
|
||||||
pub lastlog: AtomicUsize,
|
pub lastlog: AtomicUsize,
|
||||||
pub lograte: AtomicUsize,
|
pub lograte: AtomicUsize,
|
||||||
|
pub point: Option<influxdb::Point>,
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! create_counter {
|
macro_rules! create_counter {
|
||||||
@@ -23,6 +24,7 @@ macro_rules! create_counter {
|
|||||||
times: AtomicUsize::new(0),
|
times: AtomicUsize::new(0),
|
||||||
lastlog: AtomicUsize::new(0),
|
lastlog: AtomicUsize::new(0),
|
||||||
lograte: AtomicUsize::new($lograte),
|
lograte: AtomicUsize::new($lograte),
|
||||||
|
point: None,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -45,6 +47,12 @@ macro_rules! inc_new_counter_info {
|
|||||||
macro_rules! inc_new_counter {
|
macro_rules! inc_new_counter {
|
||||||
($name:expr, $count:expr, $level:expr, $lograte:expr) => {{
|
($name:expr, $count:expr, $level:expr, $lograte:expr) => {{
|
||||||
static mut INC_NEW_COUNTER: Counter = create_counter!($name, $lograte);
|
static mut INC_NEW_COUNTER: Counter = create_counter!($name, $lograte);
|
||||||
|
static INIT_HOOK: std::sync::Once = std::sync::ONCE_INIT;
|
||||||
|
unsafe {
|
||||||
|
INIT_HOOK.call_once(|| {
|
||||||
|
INC_NEW_COUNTER.init();
|
||||||
|
});
|
||||||
|
}
|
||||||
inc_counter!(INC_NEW_COUNTER, $level, $count);
|
inc_counter!(INC_NEW_COUNTER, $level, $count);
|
||||||
}};
|
}};
|
||||||
}
|
}
|
||||||
@@ -60,6 +68,13 @@ impl Counter {
|
|||||||
v
|
v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
pub fn init(&mut self) {
|
||||||
|
self.point = Some(
|
||||||
|
influxdb::Point::new(&format!("counter-{}", self.name))
|
||||||
|
.add_field("count", influxdb::Value::Integer(0))
|
||||||
|
.to_owned(),
|
||||||
|
);
|
||||||
|
}
|
||||||
pub fn inc(&mut self, level: log::Level, events: usize) {
|
pub fn inc(&mut self, level: log::Level, events: usize) {
|
||||||
let counts = self.counts.fetch_add(events, Ordering::Relaxed);
|
let counts = self.counts.fetch_add(events, Ordering::Relaxed);
|
||||||
let times = self.times.fetch_add(1, Ordering::Relaxed);
|
let times = self.times.fetch_add(1, Ordering::Relaxed);
|
||||||
@@ -83,14 +98,16 @@ impl Counter {
|
|||||||
.lastlog
|
.lastlog
|
||||||
.compare_and_swap(lastlog, counts, Ordering::Relaxed);
|
.compare_and_swap(lastlog, counts, Ordering::Relaxed);
|
||||||
if prev == lastlog {
|
if prev == lastlog {
|
||||||
submit(
|
if let Some(ref mut point) = self.point {
|
||||||
influxdb::Point::new(&format!("counter-{}", self.name))
|
point
|
||||||
.add_field(
|
.fields
|
||||||
"count",
|
.entry("count".to_string())
|
||||||
influxdb::Value::Integer(counts as i64 - lastlog as i64),
|
.and_modify(|v| *v = influxdb::Value::Integer(counts as i64 - lastlog as i64))
|
||||||
)
|
.or_insert(influxdb::Value::Integer(0));
|
||||||
.to_owned(),
|
}
|
||||||
);
|
if let Some(ref mut point) = self.point {
|
||||||
|
submit(point.to_owned());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user