config show
Command
The config show
command shows the specified configuration.
Usageβ
config show <id>
Parametersβ
Parameter | Description | Required? | Default Value |
---|---|---|---|
id | Configuration identifier | βοΈ |
Examplesβ
> configs show fix.core
βfixcore:
β # API related properties.
β api:
β # TCP host(s) to bind on (default: ['localhost'])
β web_hosts:
β - 'localhost'
β # TCP port to bind on (default: 8900)
β web_port: 8900
β # Web path root (default: /).
β # This should only be required, if you are running a proxy server, that is not able to handle a sub-path.
β web_path: '/'
β # The url to the time series database. This path will be served under /tsdb/.
β tsdb_proxy_url: null
β # The directory where the UI is installed. This directory will be served under
β ui_path: null
β # The certificate configuration for this server.
β host_certificate:
β # The common name of the certificate
β common_name: 'some.engineering'
β # Include loopback in certificate
β include_loopback: true
β # List of DNS names to include in CSR
β san_dns_names: []
β # List of IP addresses to include in CSR
β san_ip_addresses: []
β # CLI related properties.
β cli:
β # Use this graph for CLI actions, if no graph is specified explicitly.
β default_graph: 'fix'
β # Use this graph section by default, if no section is specified.
β # Relative paths will be interpreted with respect to this section.
β default_section: 'reported'
β # Properties for updating the graph.
β graph_update:
β # Max waiting time to complete a merge graph action.
β merge_max_wait_time_seconds: 3600
β # If a graph update takes longer than this duration, the update is aborted.
β abort_after_seconds: 14401
β # Runtime related properties.
β runtime:
β # Enable debug logging and exception tracing.
β debug: false
β # Log level (default: info)
β log_level: 'info'
β # PlantUML server URI for UML image rendering.
β plantuml_server: 'http://plantuml.fixinventory.org:8080'
β # Start the collect workflow, when the first handling actor connects to the system.
β start_collect_on_subscriber_connect: false
β # Help us improving Fix Inventory by collecting usage metrics.
β # See https://inventory.fix.security/docs/reference/telemetry for more information.
β # This data is anonymous. No personally identifiable information is captured or stored.
β usage_metrics: true
β # Workflow related properties.
β workflows:
β collect_and_cleanup:
β # Cron expression as schedule for the workflow to run.
β schedule: '0 * * * *'