ProcessingPolicy

ProcessingPolicy - Create

Adds a new Processing Policy.

POST

https://api-server-host-name/configapi/{pool_UUID}/{logpoint_identifier}/ProcessingPolicy

Parameters

Field
Label in UI
Type
Description

enrich_policy

Enrichment Policy

String

Existing Enrichment Policy id or None(exact). Use the value of the id parameter from EnrichmentPolicy - List API to obtain Enrichment Policy id. Mandatory Field

norm_policy

Normalization Policy

String

Existing Normalization Policy name or None(exact). Use the value of the name parameter from NormalizationPolicy - List API to obtain the value of Normalization Policy name. Mandatory Field

policy_name

Policy Name

String

Processing Policy name. Mandatory Field

routing_policy

Routing Policy

String

Existing Routing Policy id or None (exact). Use the value of the id parameter from RoutingPolicy - List API to obtain Routing Policy id. Mandatory Field

Request Example

{
    "data": {
        "enrich_policy": "57591a2cd8aaa41bfef54888",
        "norm_policy": "_logpoint",
        "policy_name": "policyName",
        "routing_policy": "586cc3edd8aaa406f6fdc8e3"
    }
}

Success Response

ProcessingPolicy - Edit

Edits the Processing Policy with given ID.

PUT

Parameters

Field
Label in UI
Type
Description

enrich_policy

Enrichment Policy

String

Existing Enrichment Policy id or None(exact). Use the value of the id parameter from EnrichmentPolicy - List API to obtain Enrichment Policy id. Mandatory Field

id

-

String

Existing Processing Policy id. Mandatory Field

norm_policy

Normalization Policy

String

Existing Normalization Policy name or None(exact). Use the value of the name parameter from NormalizationPolicy - List API to obtain the value of Normalization Policy name. Mandatory Field

policy_name

Policy Name

String

Processing Policy name. Mandatory Field

routing_policy

Routing Policy

String

Existing Routing Policy id or None (exact). Use the value of the id parameter from RoutingPolicy - List API to obtain Routing Policy id. Mandatory Field

Request Example

Success Response

ProcessingPolicy - Get

Fetches the Processing Policy with given ID.

GET

Parameters

Field
Label in UI
Type
Description

id

-

String

Existing Processing Policy id. Use the value of the id parameter of the required Processing Policy from ProcessingPolicy - List API.

Success Response

ProcessingPolicy - List

Lists all Processing Policies.

GET

Success Response

ProcessingPolicy - Trash

Deletes the Processing Policy with given ID.

DELETE

Parameters

Field
Label in UI
Type
Description

id

-

String

Existing Processing Policy id. Use the value of the id parameter of the Processing Policy to be deleted from ProcessingPolicy - List API. Mandatory Field

Success Response

Last updated

Was this helpful?