-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added hba unused line handling in logparser
- Loading branch information
1 parent
fab674b
commit 2496cee
Showing
22 changed files
with
1,466 additions
and
26 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
newdbs | ||
teestingdbs |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Allow any user on the local system to connect to any database with | ||
# any database user name using Unix-domain sockets (the default for local | ||
# connections). | ||
# | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
local all all trust | ||
|
||
# The same using local loopback TCP/IP connections. | ||
# | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all 192.168.1.1/24 trust | ||
|
||
# The same as the previous line, but using a separate netmask column | ||
# | ||
# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD | ||
host all user4 192.168.0.1 255.255.255.0 trust | ||
host all all 192.168.0.1 255.255.255.0 trust | ||
# host all all all trust | ||
|
||
# The same over IPv6. | ||
# | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all ::1/128 trust | ||
|
||
# The same using a host name (would typically cover both IPv4 and IPv6). | ||
# | ||
# TYPE DATABASE USER ADDRESS METHOD | ||
host all all localhost trust |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
user0 | ||
user1 | ||
user2 | ||
user3 | ||
user4 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package model | ||
|
||
type HBAFIleRules struct { | ||
LineNumber int `json:"line_number"` | ||
Database string `json:"database"` | ||
UserName string `json:"user_name"` | ||
Address string `json:"address"` | ||
NetMask string `json:"netmask"` | ||
} |
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
Oops, something went wrong.