Skip to main content

Security ContentExabeam Security Content in the Common Information Model

Event Template

Event templates are used to display fields associated with an event in the UI. The sample below shows the structure of a VpnLoginTemplate event, and below it the template. The template is used to display the fields associated with the vpn-login event in the UI. It includes fields such as time, user, account, src_ip, src_host, source, and more.

VPN login event in a Smart Timeline.
VpnLoginTemplate {
    rows = [
        {        
        columns = [
            {
            label = "TIME"
            value = "time|event.time"
            },
            {
            label = "USER"
            value = "user|event.user"
            },
            {
            label = "ACCOUNT"
            value = "user|event.account"
            icon = "AccountSwitch"
            }
        ]
        },
        {
        columns = [
            {
            label = "SOURCE IP"
            value = "asset|event.src_ip"
            },
            {
            label = "SOURCE HOST"
            value = "asset|event.src_host"
            },
            {
            label = "SOURCE"
            value = "default|event.source"
            }
        ]
        },
        {
        columns = [
            {
            label = "COUNTRY"
            value = "location.country|event.getvalue('country_code', src_ip)"
            },
            {
            label = "ISP"
            value = "location.isp|event.getvalue('isp', src_ip)"
            },
            {
            label = "VPN ASSIGNED IP"
            value = "default|event.src_translated_ip"
            }
        ]
        },
        {
        columns = [
            {
            label = "VPN SERVER"
            value = "default|event.dest_host"
            },
            {
            label = "VPN SERVER IP"
            value = "default|event.dest_ip"
            }
        ]
        },
        {
        columns = [
            {
            label = "VPN VENDOR"
            value = "default|event.vendor"
            },
            {
            label = "VPN REALM"
            value = "default|event.realm"
            },
            {
            label = "OS"
            value = "default|event.os"
            }
        ]
        }
    ]
}