summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b005b32)
raw | patch | inline | side by side (parent: b005b32)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 8 Jun 2008 16:25:45 +0000 (16:25 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 8 Jun 2008 16:25:45 +0000 (16:25 +0000) |
* exposes the rpn expression in the 'cdef' element for DST_CDEF data source types
* exposes the heartbeat, min, and max only to the other data source types
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@1410 a5681a0c-68f1-0310-ab6d-d61299d08faa
* exposes the heartbeat, min, and max only to the other data source types
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@1410 a5681a0c-68f1-0310-ab6d-d61299d08faa
program/bindings/python/rrdtoolmodule.c | patch | blob | history |
index 6f5b36c50e70aebf3027695a89a23e4b6e8a1520..497059d2792245fc1e10ec2d0754a1ea96733f7a 100644 (file)
#include "Python.h"
#include "rrd.h"
#include "rrd_extra.h"
+#include "rrd_rpncalc.h"
static PyObject *ErrorObject;
extern int optind;
DICTSET_STR(d, "ds_name", rrd.ds_def[i].ds_nam);
DICTSET_STR(d, "type", rrd.ds_def[i].dst);
- DICTSET_CNT(d, "minimal_heartbeat", rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt);
- DICTSET_VAL(d, "min", rrd.ds_def[i].par[DS_min_val].u_val);
- DICTSET_VAL(d, "max", rrd.ds_def[i].par[DS_max_val].u_val);
+
+ switch(dst_conv(rrd.ds_def[i].dst)) {
+ case DST_CDEF:
+ {
+ char *buffer = NULL;
+ rpn_compact2str((rpn_cdefds_t *) &(rrd.ds_def[i].par[DS_cdef]),
+ rrd.ds_def, &buffer);
+ DICTSET_STR(d, "cdef", buffer);
+ }
+ break;
+ default:
+ DICTSET_CNT(d, "minimal_heartbeat", rrd.ds_def[i].par[DS_mrhb_cnt].u_cnt);
+ DICTSET_VAL(d, "min", rrd.ds_def[i].par[DS_min_val].u_val);
+ DICTSET_VAL(d, "max", rrd.ds_def[i].par[DS_max_val].u_val);
+ break;
+ }
DICTSET_STR(d, "last_ds", rrd.pdp_prep[i].last_ds);
DICTSET_VAL(d, "value", rrd.pdp_prep[i].scratch[PDP_val].u_val);
DICTSET_CNT(d, "unknown_sec", rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt);