Fix build warnings

This commit is contained in:
Daniel Thayer 2012-07-25 17:40:21 -05:00
parent f2a0afad3c
commit c3aba199f6
2 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@ export {
const index_prefix = "bro" &redef; const index_prefix = "bro" &redef;
## The ES type prefix comes before the name of the related log. ## The ES type prefix comes before the name of the related log.
## e.g. prefix = "bro_" would create types of bro_dns, bro_software, etc. ## e.g. prefix = "bro\_" would create types of bro_dns, bro_software, etc.
const type_prefix = "" &redef; const type_prefix = "" &redef;
## The time before an ElasticSearch transfer will timeout. ## The time before an ElasticSearch transfer will timeout.

View file

@ -6,13 +6,13 @@ export {
## An elasticsearch specific rotation interval. ## An elasticsearch specific rotation interval.
const rotation_interval = 24hr &redef; const rotation_interval = 24hr &redef;
## Optionally ignore any :bro:enum:`Log::ID` from being sent to ## Optionally ignore any :bro:type:`Log::ID` from being sent to
## ElasticSearch with this script. ## ElasticSearch with this script.
const excluded_log_ids: set[string] = set("Communication::LOG") &redef; const excluded_log_ids: set[string] = set("Communication::LOG") &redef;
## If you want to explicitly only send certain :bro:enum:`Log::ID` ## If you want to explicitly only send certain :bro:type:`Log::ID`
## streams, add them to this set. If the set remains empty, all will ## streams, add them to this set. If the set remains empty, all will
## be sent. The :bro:id:`excluded_log_ids` option will remain in ## be sent. The :bro:id:`LogElasticSearch::excluded_log_ids` option will remain in
## effect as well. ## effect as well.
const send_logs: set[string] = set() &redef; const send_logs: set[string] = set() &redef;
} }