220.9. Timer
micrometer:timer:metricname[?options]
220.9.1. オプション
名前 | デフォルト | 説明 |
---|---|---|
action | - | 開始または停止 |
action
または無効な値が指定されていない場合、タイマーの更新なしで警告がログに記録されます。すでに実行中のタイマーでアクション start
が呼び出された場合、または未知のタイマーで stop
が呼び出された場合、何も更新されず、警告がログに記録されます。
// measure time spent in route "direct:calculate" from("direct:in") .to("micrometer:timer:simple.timer?action=start") .to("direct:calculate") .to("micrometer:timer:simple.timer?action=stop");
Timer.Sample
オブジェクトは、異なる Metrics コンポーネントの呼び出し間で Exchange プロパティーとして格納されます。
action
は MicrometerTimerAction
型の結果を返す Simple
式として評価されます。
220.9.2. ヘッダー
camel-metrics
と同様に、特定の Message ヘッダーを使用して、Micrometer エンドポイント URI で指定されたアクション値をオーバーライドできます。
名前 | 説明 | 想定されるタイプ |
---|---|---|
CamelMetricsTimerAction | URI のタイマーアクションをオーバーライドする |
|
// sets timer action using header from("direct:in") .setHeader(MicrometerConstants.HEADER_TIMER_ACTION, MicrometerTimerAction.start) .to("micrometer:timer:simple.timer") .to("direct:out");