This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<strong>Warning!</strong> The journal utilization is exceeding the maximum size defined.
<ahref={jsRoutes.controllers.SystemController.index().url}> Click here</a> for more information.<br/>
</span>;
}
content=(
<div>
<p>Incoming messages are written to the disk journal to ensure they are kept safe in case of a server failure. The journal also helps keeping Graylog working if any of the outputs is too slow to keep up with the message rate
or whenever there is a peak in incoming messages. It makes sure that Graylog does not buffer all of those messages in main memory and avoids overly long garbage collection pauses that way.
<strong>{numeral(this.state.entriesUncommitted).format('0,0')} unprocessed messages</strong> are currently in the journal, in {this.state.segments} segments.<br/>
<strong>{numeral(this.state.append).format('0,0')} messages</strong> have been appended in the last second,
<strong>{numeral(this.state.read).format('0,0')} messages</strong> have been read in the last second.
</Col>
</Row>
</div>
);
}else{
content=(<span>The disk journal is disabled for this node.</span>);
}
return(<div>
<h2><iclassName="fa fa-hdd-o"></i> Disk Journal</h2>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters