12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- Blocks {
- ProbeDesc {
- Name: "StartupProbe"
- Provider: "LWTRACE_EXAMPLE_PROVIDER"
- }
- Action {
- PrintToStderrAction { }
- }
- }
- Blocks {
- ProbeDesc { Name: "IterationProbe" Provider: "LWTRACE_EXAMPLE_PROVIDER" }
- Action {
- LogAction {
- LogTimestamp: true
- MaxRecords: 2
- }
- }
- }
- Blocks {
- ProbeDesc { Name: "ByrefDurationProbe" Provider: "LWTRACE_EXAMPLE_PROVIDER" }
- Action {
- LogAction {
- LogTimestamp: true
- MaxRecords: 1
- }
- }
- Action {
- PrintToStderrAction { }
- }
- }
- Blocks {
- ProbeDesc { Name: "DurationProbe" Provider: "LWTRACE_EXAMPLE_PROVIDER" }
- Action {
- LogAction {
- LogTimestamp: true
- MaxRecords: 1
- }
- }
- Action {
- PrintToStderrAction { }
- }
- }
- Blocks {
- ProbeDesc { Name: "ResultProbe" Provider: "LWTRACE_EXAMPLE_PROVIDER" }
- Action {
- PrintToStderrAction { }
- }
- Action {
- LogAction { LogTimestamp: true }
- }
- }
- Blocks {
- ProbeDesc { Name: "AfterInputProbe" Provider: "LWTRACE_EXAMPLE_PROVIDER" }
- Action {
- StatementAction {
- Type: ST_MOD
- Argument { Variable: "nMod2" }
- Argument { Param: "n" }
- Argument { Value: "2" }
- }
- }
- }
- Blocks {
- ProbeDesc { Name: "AfterInputProbe" Provider: "LWTRACE_EXAMPLE_PROVIDER" }
- Predicate {
- Operators {
- Type: OT_EQ
- Argument { Variable: "nMod2" }
- Argument { Value: "0" }
- }
- }
- Action { LogAction { } }
- }
|