config


Description

This table contains configuration information for all collectors. It is parent table that is partitioned over zone schema.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
id serial 10 nextval('zone.config_id_seq'::regclass)

Unique identifier for config record

collector_id int4 10 null
collector.id fk_zconfig_collector R

Collector Id for this config record. It maps to system.collector.id

zone_id int4 10 null
zone.id fk_zconfig_zone R

Zone Id for the config record

key text 2147483647 null

Key represents collector configuration information. Each key is unique for a given collector_id and zone_id record. For specific scantype, the key is represented as . For example pathDiscovery.udp or snmpDiscovery.enabled

value text 2147483647 null

Configuration value for a given key, within a collector and zone

Table contained 2 rows

Indexes

Constraint Name Type Sort Column(s)
pk_zconfig Primary key Asc id
idx_config_collector_id Performance Asc collector_id
idx_config_collectorid_key Performance Asc/Asc collector_id + key
uk_zconfig Must be unique Asc/Asc/Asc collector_id + zone_id + key

Relationships