File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,8 @@ considered private to the library.
107
107
108
108
The name of the plugin is descriptive, as whether it reports data
109
109
for a single machine (` RRD_LOCAL_DOMAIN ` ) or multiple
110
- (` RRD_INTER_DOMAIN ` ). The second parameter of ` rrd_sample ` is typically
111
- NULL. If it isn't, it us used to obtain a timestamp instead of using
112
- time(3).
110
+ (` RRD_INTER_DOMAIN ` ). The second parameter of ` rrd_sample ` is deprecated
111
+ and will be ignored (and should be NULL).
113
112
114
113
When a plugin is opened, the file at ` path ` is being created and it is
115
114
removed when the plugin is closed.
Original file line number Diff line number Diff line change @@ -218,6 +218,14 @@ json_for_plugin(RRD_PLUGIN * plugin)
218
218
}
219
219
return root_json ;
220
220
}
221
+
222
+ double get_timestamp ()
223
+ {
224
+ struct timeval tp ;
225
+ gettimeofday (& tp , NULL );
226
+ return (double ) tp .tv_sec + (double ) tp .tv_usec / 1e6 ;
227
+ }
228
+
221
229
/*
222
230
* initialise the buffer that we update and write out to a file. Once
223
231
* initialised, it is kept up to date by sample().
@@ -263,7 +271,7 @@ initialise(RRD_PLUGIN * plugin)
263
271
memcpy (& header -> rrd_magic , MAGIC , MAGIC_SIZE );
264
272
header -> rrd_checksum_value = htonl (0x01234567 );
265
273
header -> rrd_header_datasources = htonl (plugin -> n );
266
- header -> rrd_timestamp = htonll (( uint64_t ) time ( NULL ));
274
+ header -> rrd_timestamp = htonll (get_timestamp ( ));
267
275
if (header -> rrd_timestamp == -1 ) {
268
276
free (plugin -> buf );
269
277
plugin -> buf_size = 0 ;
@@ -450,7 +458,7 @@ rrd_sample(RRD_PLUGIN * plugin, time_t(*t) (time_t *))
450
458
* update timestamp, calculate crc
451
459
*/
452
460
453
- header -> rrd_timestamp = htonll (( uint64_t ) ( t ? t ( NULL ) : time ( NULL ) ));
461
+ header -> rrd_timestamp = htonll (get_timestamp ( ));
454
462
uint32_t crc = crc32 (0L , Z_NULL , 0 );
455
463
crc = crc32 (crc ,
456
464
(unsigned char * )& header -> rrd_timestamp ,
Original file line number Diff line number Diff line change 23
23
24
24
25
25
#include <stdint.h>
26
- #include <time.h>
26
+ #include <sys/ time.h>
27
27
28
28
#define RRD_MAX_SOURCES 16
29
29
@@ -131,8 +131,6 @@ int rrd_del_src(RRD_PLUGIN * plugin, RRD_SOURCE * source);
131
131
* calling rrd_sample(plugin) triggers that all data sources are sampled
132
132
* and the results are reported to the RRD daemon. This function needs
133
133
* to be called every 5 seconds by the client. The second parameter is
134
- * typically NULL. If it isn't, it will be used instead of time(3) to
135
- * obtain the time stamp that is written to the RRD file. This can be
136
- * used to create RRD files that don't depend on the current time.
134
+ * deprecated and will be ignored (and should be NULL).
137
135
*/
138
136
int rrd_sample (RRD_PLUGIN * plugin , time_t (* t )(time_t * ));
You can’t perform that action at this time.
0 commit comments