-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker rules extension #307
Conversation
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87921" level="5"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Level 7
<if_sid>87900</if_sid> | ||
<field name="docker.status">^delete$</field> | ||
<description>Container $(docker.Actor.Attributes.name) deleted</description> | ||
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87919" level="3"> | ||
<rule id="87922" level="3"> | ||
<if_sid>87900</if_sid> | ||
<field name="docker.status">^attach$</field> | ||
<description>Container $(docker.Actor.Attributes.name) attached standard input, output and error</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attached local standard input, output, and error streams to container $(docker.Actor.Attributes.name)
<if_sid>87900</if_sid> | ||
<field name="docker.status">^attach$</field> | ||
<description>Container $(docker.Actor.Attributes.name) attached standard input, output and error</description> | ||
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87920" level="3"> | ||
<rule id="87923" level="5"> | ||
<if_sid>87900</if_sid> | ||
<field name="docker.status">^export$</field> | ||
<description>Container $(docker.Actor.Attributes.name) exported its filesystem</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filesystem of container $(docker.Actor.Attributes.name) exported
<if_sid>87900</if_sid> | ||
<field name="docker.status">^kill$|^die$</field> | ||
<description>Container $(docker.Actor.Attributes.name) received the action: $(docker.status)</description> | ||
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87922" level="3"> | ||
<rule id="87925" level="3"> | ||
<if_sid>87900</if_sid> | ||
<field name="docker.status">^update$</field> | ||
<description>Container $(docker.Actor.Attributes.name) updated its configuration</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Configuration of container $(docker.Actor.Attributes.name) updated
<if_sid>87900</if_sid> | ||
<field name="docker.status">^update$</field> | ||
<description>Container $(docker.Actor.Attributes.name) updated its configuration</description> | ||
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87923" level="3"> | ||
<rule id="87926" level="3"> | ||
<if_sid>87900</if_sid> | ||
<field name="docker.status">^top$</field> | ||
<description>Container $(docker.Actor.Attributes.name) displayed its running processes</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Running processes of container $(docker.Actor.Attributes.name) displayed
<rule id="87950" level="3"> | ||
<if_sid>87945</if_sid> | ||
<field name="docker.Action">^create$</field> | ||
<description>Plugin $(docker.Actor.Attributes.name) was created</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Plugin $(docker.Actor.Attributes.name) created
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87951" level="3"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Level 0
<options>no_full_log</options> | ||
</rule> | ||
|
||
<rule id="87957" level="3"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Level 0
<rule id="87960" level="5"> | ||
<if_sid>87957</if_sid> | ||
<field name="docker.Action">^remove$</field> | ||
<description>Service $(docker.Actor.Attributes.name) was deleted</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Service $(docker.Actor.Attributes.name) deleted
<rule id="87961" level="3"> | ||
<if_sid>87900</if_sid> | ||
<field name="docker.status">^push$</field> | ||
<description>The image $(docker.Actor.Attributes.name) was pushed</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Image $(docker.Actor.Attributes.name) pushed
Two more changes:
|
Change the description of network rules. When managing containers with the default network configuration, the following alert is shown:
Omit the network name or the type of the network. |
GJ @cristgl ! |
This PR adds some more rules for Docker commands.
Related issue: #294