Index: trunk/udpprofile/Makefile |
— | — | @@ -10,9 +10,9 @@ |
11 | 11 | |
12 | 12 | all: collector exporter |
13 | 13 | |
14 | | -collector: collector.h collector.c export.c |
| 14 | +collector: collector.c export.c |
15 | 15 | |
16 | | -exporter: export.c collector.h exporter.c |
| 16 | +exporter: export.c exporter.c |
17 | 17 | |
18 | 18 | #export: collector.h export.c |
19 | 19 | |
Index: trunk/udpprofile/debian/changelog |
— | — | @@ -1,3 +1,9 @@ |
| 2 | +udpprofile (1.3-1) lucid-wikimedia; urgency=low |
| 3 | + |
| 4 | + * Added automatic aggregation across DBs to collector |
| 5 | + |
| 6 | + -- Tim Starling <tstarling@wikimedia.org> Thu, 16 Feb 2012 14:46:14 +1100 |
| 7 | + |
2 | 8 | udpprofile (1.2-2) lucid-wikimedia; urgency=low |
3 | 9 | |
4 | 10 | * exception handing in profiler-to-carbon, for when collector has no data |
Index: trunk/udpprofile/export.c |
— | — | @@ -17,6 +17,8 @@ |
18 | 18 | #include <db.h> |
19 | 19 | #include "collector.h" |
20 | 20 | |
| 21 | +DB *db; |
| 22 | + |
21 | 23 | void dumpData(FILE *fd) { |
22 | 24 | DBT key,data; |
23 | 25 | DBC *c; |