Skip to content

Commit

Permalink
Move fields under each protocol in packetbeat (elastic#2898)
Browse files Browse the repository at this point in the history
This should simplify the extension of packetbeat with further protocols and make it more modular.

This change requires elastic#2897
  • Loading branch information
ruflin authored and Steffen Siering committed Nov 3, 2016
1 parent 5547060 commit f9bd1d3
Show file tree
Hide file tree
Showing 17 changed files with 2,307 additions and 508 deletions.
7 changes: 6 additions & 1 deletion packetbeat/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ before-build:

# Collects all dependencies and then calls update
.PHONY: collect
collect: update
collect: fields update

.PHONY: fields
fields:
cat etc/fields_base.yml > etc/fields.yml
cat protos/*/_meta/fields.yml >> etc/fields.yml

.PHONY: benchmark
benchmark:
Expand Down
2 changes: 1 addition & 1 deletion packetbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ type: geo_point

example: 40.715, -74.011

DEPRECATED. Please use `client_geoip` instead. The GeoIP location of the `real_ip` IP address or of the `client_ip` address if the `real_ip` is disabled. The field is a string containing the latitude and longitude separated by a comma.
DEPRECATED. Please use `client_geoip` instead. The GeoIP location of the `real_ip` IP address or of the `client_ip` address if the `real_ip` is disabled. The field is a string containing the latitude and longitude separated by a comma.


[float]
Expand Down
Loading

0 comments on commit f9bd1d3

Please sign in to comment.