inspect
Resets a context.
context::inspect name:string
Description
Section titled “Description”The context::inspect
operator shows details about a specified context.
name: string
Section titled “name: string”The name of the context to inspect.
Examples
Section titled “Examples”Inspect a context
Section titled “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
Section titled “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