inspect
Resets a context.
context::inspect name:string
Description
The context::inspect
operator shows details about a specified context.
name: string
The name of the context to inspect.
Examples
Inspect a context
Add data to the lookup table:
from {x:1, y:"a"},
{x:2, y:"b"}
context::update "ctx", key=x, value=y
Retrieve the lookup table contents:
context::inspect "ctx"
{key: 2, value: "b"}
{key: 1, value: "a"}
See Also
context::create_bloom_filter
,
context::create_geoip
,
context::create_lookup_table
,
context::enrich
,
context::erase
,
context::list
,
context::load
,
context::remove
,
context::reset
,
context::save
,
context::update