[ https://issues.apache.org/jira/browse/FLUME-3092?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16013012#comment-16013012 ]
ASF subversion and git services commented on FLUME-3092: -------------------------------------------------------- Commit fdc53f338931b96addf06f3f2be59da128656ec0 in flume's branch refs/heads/trunk from [~denes] [ https://git-wip-us.apache.org/repos/asf?p=flume.git;h=fdc53f3 ] FLUME-3092. Extend the FileChannel's monitoring metrics This patch adds the following new metrics to the FileChannel's counters: - eventPutErrorCount: incremented if an IOException occurs during put operation. - eventTakeErrorCount: incremented if an IOException or CorruptEventException occurs during take operation. - checkpointWriteErrorCount: incremented if an exception occurs during checkpoint write. - unhealthy: this flag represents whether the channel has started successfully (i.e. the replay ran without any problem), so the channel is capable for normal operation - closed flag: the numeric representation (1: closed, 0: open) of the negated open flag. Closes #131. Reviewers: Attila Simon, Mike Percy (Denes Arvay via Mike Percy) > Extend the FileChannel's monitoring metrics > ------------------------------------------- > > Key: FLUME-3092 > URL: https://issues.apache.org/jira/browse/FLUME-3092 > Project: Flume > Issue Type: Improvement > Components: File Channel > Affects Versions: 1.7.0 > Reporter: Denes Arvay > Assignee: Denes Arvay > > There are already several generic metrics (e.g. {{eventPutAttemptCount}} and > {{eventPutSuccessCount}}) which can be used to create compound metrics for > monitoring the FileChannel's health. > Some monitoring system's aren't capable to calculate such derived metrics, > though, so I recommend to add the following extra counters to represent if a > channel operation failed or the channel is in an unhealthy state. > - {{eventPutErrorCount}}: incremented if an {{IOException}} occurs during > {{put}} operation. > - {{eventTakeErrorCount}}: incremented if an {{IOException}} or > {{CorruptEventException}} occurs during {{take}} operation. > - {{checkpointWriteErrorCount}}: incremented if an exception occurs during > checkpoint write. > - {{unhealthy}}: this flag represents whether the channel has started > successfully (i.e. the replay ran without any problem). This is similar to > the already existing {{open}} flag except that the latter is initially false > and is set to {{true}} if the initialization (including the log replay) is > successfully done. The {{unhealthy}}, in contrary, is {{false}} by default > and is set to {{true}} if there is an error during startup. > Beside these flags I'd also introduce a {{closed}} flag which is the numeric > representation (1: closed, 0: open) of the negated (already existing) > {{open}} flag. -- This message was sent by Atlassian JIRA (v6.3.15#6346)