Changeset da6e5460a9074962d82313a6da2b190a8280b585
- Timestamp:
- 07/01/11 02:55:57
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1309488957 -0400
- git-parent:
[6433ed5710527810a2bffc7a4ac76f22ba764086]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1309488957 -0400
- Message:
check fire
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r924cc36 |
rda6e546 |
|
| 155 | 155 | |
|---|
| 156 | 156 | stratcon_jlog_streamer.o: @DTRACEHDR@ |
|---|
| | 157 | noit_check_tools.o: @DTRACEHDR@ |
|---|
| 157 | 158 | |
|---|
| 158 | 159 | stratcond_@DTRACEOBJ@: $(STRATCON_OBJS) |
|---|
| r1ff1395 |
rda6e546 |
|
| 14 | 14 | probe stream__checkpoint(int, char *, char *, char *, int, int); |
|---|
| 15 | 15 | }; |
|---|
| | 16 | |
|---|
| | 17 | provider noit_check { |
|---|
| | 18 | probe dispatch(char *, char *, char *, char *); |
|---|
| | 19 | }; |
|---|
| r09ecd28 |
rda6e546 |
|
| 32 | 32 | |
|---|
| 33 | 33 | #include "noit_defines.h" |
|---|
| | 34 | #include "dtrace_probes.h" |
|---|
| 34 | 35 | #include "noit_check_tools.h" |
|---|
| 35 | 36 | #include "noit_check_tools_shared.h" |
|---|
| … | … | |
| 52 | 53 | noit_check_schedule_next(rcl->self, &e->whence, rcl->check, now, |
|---|
| 53 | 54 | rcl->dispatch); |
|---|
| 54 | | if(NOIT_CHECK_RESOLVED(rcl->check)) |
|---|
| | 55 | if(NOIT_CHECK_RESOLVED(rcl->check)) { |
|---|
| | 56 | if(NOIT_CHECK_DISPATCH_ENABLED()) { |
|---|
| | 57 | char id[UUID_STR_LEN+1]; |
|---|
| | 58 | uuid_unparse_lower(rcl->check->checkid, id); |
|---|
| | 59 | NOIT_CHECK_DISPATCH(id, rcl->check->module, rcl->check->name, |
|---|
| | 60 | rcl->check->target); |
|---|
| | 61 | } |
|---|
| 55 | 62 | rcl->dispatch(rcl->self, rcl->check); |
|---|
| | 63 | } |
|---|
| 56 | 64 | else |
|---|
| 57 | 65 | noitL(noit_debug, "skipping %s`%s`%s, unresolved\n", |
|---|