-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
433 additions
and
280 deletions.
There are no files selected for viewing
21 changes: 11 additions & 10 deletions
21
doc/code_snippets/snippets/config/instances.enabled/audit_log/config.yaml
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
audit_log: | ||
to: file | ||
file: 'audit_tarantool.log' | ||
filter: [ user_create,data_operations,ddl,custom ] | ||
format: json | ||
spaces: [ bands ] | ||
extract_key: true | ||
|
||
groups: | ||
group001: | ||
iproto: | ||
listen: | ||
- uri: '127.0.0.1:3301' | ||
replicasets: | ||
replicaset001: | ||
instances: | ||
instance001: | ||
audit_log: | ||
to: file | ||
file: 'audit_tarantool.log' | ||
filter: [ user_create,data_operations,ddl ] | ||
format: json | ||
spaces: [ bands ] | ||
extract_key: true | ||
iproto: | ||
listen: | ||
- uri: '127.0.0.1:3301' |
51 changes: 51 additions & 0 deletions
51
doc/code_snippets/snippets/config/instances.enabled/audit_log/myapp.lua
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,51 @@ | ||
-- myapp.lua -- | ||
|
||
-- Create space | ||
function create_space() | ||
box.schema.space.create('Bands') | ||
box.space.bands:format({ | ||
{ name = 'id', type = 'unsigned' }, | ||
{ name = 'band_name', type = 'string' }, | ||
{ name = 'year', type = 'unsigned' } | ||
}) | ||
box.space.bands:create_index('primary', { type = "tree", parts = { 'id' } }) | ||
box.space.bands:create_index('secondary', { type = "tree", parts = { 'band_name' } }) | ||
box.schema.user.grant('guest', 'read,write,execute', 'universe') | ||
end | ||
-- Insert data | ||
function load_data() | ||
box.space.bands:insert { 1, 'Roxette', 1986 } | ||
box.space.bands:insert { 2, 'Scorpions', 1965 } | ||
end | ||
|
||
local audit = require('audit') | ||
-- Log message string | ||
audit.log('Hello, Alice!') | ||
-- Log format string and arguments | ||
audit.log('Hello, %s!', 'Bob') | ||
-- Log table with audit log field values | ||
audit.log({ type = 'custom_hello', description = 'Hello, World!' }) | ||
audit.log({ type = 'custom_farewell', user = 'eve', module = 'custom', description = 'Farewell, Eve!' }) | ||
-- Create a new log module | ||
local my_audit = audit.new({ type = 'custom_hello', module = 'my_module' }) | ||
my_audit:log('Hello, Alice!') | ||
my_audit:log({ tag = 'admin', description = 'Hello, Bob!' }) | ||
|
||
-- Log 'Hello!' message with the VERBOSE severity level | ||
audit.log({ severity = 'VERBOSE', description = 'Hello!' }) | ||
|
||
-- Log 'Hello!' message with a shortcut helper function | ||
audit.verbose('Hello!') | ||
|
||
-- Like audit.log(), a shortcut helper function accepts a table of options | ||
audit.verbose({ description = 'Hello!' }) | ||
|
||
-- Severity levels are available for custom loggers | ||
local my_logger = audit.new({ module = 'my_module' }) | ||
my_logger:log({ severity = 'ALARM', description = 'Alarm' }) | ||
my_logger:alarm('Alarm') | ||
|
||
-- Overwrite session_type and remote fields | ||
audit.log({ type = 'custom_hello', description = 'Hello!', | ||
session_type = 'my_session', remote = 'my_remote' }) | ||
-- End |
15 changes: 7 additions & 8 deletions
15
doc/code_snippets/snippets/config/instances.enabled/audit_log_pipe/config.yaml
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
audit_log: | ||
to: pipe | ||
pipe: '| cronolog audit_tarantool.log' | ||
|
||
groups: | ||
group001: | ||
iproto: | ||
listen: | ||
- uri: '127.0.0.1:3301' | ||
replicasets: | ||
replicaset001: | ||
instances: | ||
instance001: | ||
audit_log: | ||
to: pipe | ||
pipe: 'cronolog audit_tarantool.log' | ||
format: json | ||
extract_key: false | ||
iproto: | ||
listen: | ||
- uri: '127.0.0.1:3301' |
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.