Skip to content

Commit 372c1fb

Browse files
committed
fix setup
1 parent 3252df1 commit 372c1fb

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can use it to collect DNS queries and responses and to log to syslog or a js
1616

1717
## Table of contents
1818
* [Installation](#installation)
19-
* [Exectute pdns logger](#exectute-pdns-logger)
19+
* [Execute pdns logger](#execute-pdns-logger)
2020
* [Startup options](#startup-options)
2121
* [Output JSON format](#output-json-format)
2222
* [Systemd service file configuration](#systemd-service-file-configuration)
@@ -32,7 +32,7 @@ Only Python3 is supported.
3232
pip install pdns_logger
3333
```
3434

35-
After installation, you will have 'pdns_logger' binary available
35+
After installation, you will have `pdns logger` binary available
3636

3737
## Execute pdns logger
3838

@@ -178,7 +178,9 @@ outgoingProtobufServer("10.0.0.97:50001", {logQueries=true,
178178

179179
Restart the recursor.
180180

181-
## JSON remote tcp configuration
181+
## Logstash configuration
182+
183+
With `pdns logger`, you can send DNS logs to a JSON remote collector like logstash.
182184

183185
vim /etc/logstash/conf.d/pdns-logger.conf
184186

@@ -205,6 +207,10 @@ output {
205207
}
206208
```
207209

210+
Configure your `pdns logger` and restart-it.
211+
212+
Finally, you can have some dashboards on your DNS servers .
213+
208214
![kibana dashboard 1](https://github.com/dmachard/pdns_logger/blob/master/imgs/kibana_dashboard_1.png)
209215

210216
![kibana dashboard 2](https://github.com/dmachard/pdns_logger/blob/master/imgs/kibana_dashboard_2.png)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python
22

33
import setuptools
4-
from dnstap_receiver import __version__
4+
from pdns_logger import __version__
55

66
with open("README.md", "r") as fh:
77
LONG_DESCRIPTION = fh.read()

0 commit comments

Comments
 (0)