Skip to content

Commit 92de3bc

Browse files
authored
Update README
Zeekify
1 parent 6b695a6 commit 92de3bc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ This plugin should be considered experimental.
1313
Installation
1414
------------
1515

16-
After installing PostgreSQL, you can install the Bro PostgreSQL module
16+
After installing PostgreSQL, you can install the Zeek PostgreSQL module
1717
either using zkg, or manually via the command-line.
1818

1919
To install the plugin using zkg, use
2020

2121
```console
22-
# zkg install 0xxon/bro-postgresql
22+
# zkg install 0xxon/zeek-postgresql
2323
```
2424

2525
To install manually from the cloned repository, use::
@@ -56,11 +56,11 @@ This will write to a database named testdb into the table named conn. Note that
5656
the table will be automatically be created by the PostgreSQL plugin, if it does
5757
not yet exist. If a table with the specified name already exists, it is used;
5858
the existing columns have to be compatible with the column names and types that
59-
the Bro plugin expects.
59+
the Zeek plugin expects.
6060

6161
Data can be read from PostgreSQL using a script similar to:
6262

63-
```bro
63+
```zeek
6464
redef exit_only_after_terminate = T;
6565

6666
type InfoType: record {
@@ -87,18 +87,18 @@ event Input::end_of_data(name: string, source:string)
8787
}
8888
```
8989

90-
By default, the plugin connects to PostgreSQL as the user running Bro,
90+
By default, the plugin connects to PostgreSQL as the user running Zeek,
9191
without supplying any additional username or password.
9292

9393
Type mapping
9494
============
9595

96-
The writer automatically maps the Bro types to the following PostgreSQL data
96+
The writer automatically maps the Zeek types to the following PostgreSQL data
9797
types:
9898

9999
<table>
100100
<tr>
101-
<th>Bro type</th>
101+
<th>Zeek type</th>
102102
<th>PostgreSQL type</th>
103103
</tr><tr><td>Bool</td><td>boolean</td>
104104
</tr><tr><td>int</td><td>bigint</td>

0 commit comments

Comments
 (0)