The Ubuntu Insights Client is the component responsible for handling all local Ubuntu Insights actions. This component includes a command-line interface, a Go and C API, as well as the source for the ubuntu-insights deb package.
Ubuntu Insights caches all collected data locally, and will only attempt to upload insights reports following a minimum period (1 week by default). It checks for consent both at the time of collection and at the time of upload. If consent was not given at either of those two points, then the information is not sent to the server. Once a report has been uploaded, it is removed from the local cache folder, and the data that was sent is written to the uploaded folder.
By default, Ubuntu Insights will only collect once per collection period.
To execute the interactive command-line interface manually, use ubuntu-insights.
See here
Consent Files: ~/.config/ubuntu-insights
Reports Cache: ~/.cache/ubuntu-insights
ubuntu-insights [command]
Available Commands:
collect Collect system information
completion Generate the autocompletion script for the specified shell
consent Manage or get user consent state
help Help about any command
upload Upload metrics to the Ubuntu Insights server
Flags:
--config string use a specific configuration file
--consent-dir string the base directory of the consent state files
-h, --help help for ubuntu-insights
--insights-dir string the base directory of the insights report cache
-v, --verbose count issue INFO (-v), DEBUG (-vv)
--version version for ubuntu-insights
Manage or get user consent state for data collection and upload
ubuntu-insights consent [sources](optional arguments) [flags]
Flags:
-h, --help help for consent
-s, --state string the consent state to set (true or false)
Global Flags:
--config string use a specific configuration file
--consent-dir string the base directory of the consent state files
-v, --verbose count issue INFO (-v), DEBUG (-vv)
To get the platform consent state (linux/windows/darwin depending on your platform) using the default consent directory:
foo@bar:~$ ubuntu-insights consent
linux: falseTo set the consent state for the source wsl_setup:
foo@bar:~$ ubuntu-insights consent wsl_setup -s true
wsl_setup: trueCollect system information and metrics and store it locally.
If source is not provided, then the source is assumed to be the currently detected platform. Additionally, there should be no source-metrics-path provided. If source is provided, then the source-metrics-path should be provided as well.
ubuntu-insights collect [source] [source-metrics-path](required if source provided) [flags]
Flags:
-d, --dry-run perform a dry-run where a report is collected, but not written to disk
-f, --force force a collection, override the report if there are any conflicts (consent is still respected)
-h, --help help for collect
-p, --period uint the minimum period between 2 collection periods for validation purposes in seconds (default 1)
Global Flags:
--config string use a specific configuration file
--consent-dir string the base directory of the consent state files
--insights-dir string the base directory of the insights report cache
-v, --verbose count issue INFO (-v), DEBUG (-vv)
Upload metrics to the Ubuntu Insights server.
If no sources are provided, all detected sources at the configured reports directory will be uploaded. If consent is not given for a source, an opt-out notification will be sent regardless of the locally cached insights report's contents.
ubuntu-insights upload [sources](optional arguments) [flags]
Flags:
-d, --dry-run go through the motions of doing an upload, but do not communicate with the server, send the payload, or modify local files
-f, --force force an upload, ignoring min age and clashes between the collected file and a file in the uploaded folder, replacing the clashing uploaded report if it exists (doesn't ignore consent)
-h, --help help for upload
--min-age uint the minimum age (in seconds) of a report before the uploader will attempt to upload it (default 604800)
-r, --retry enable a limited number of retries for failed uploads
Global Flags:
--config string use a specific configuration file
--consent-dir string the base directory of the consent state files
--insights-dir string the base directory of the insights report cache
-v, --verbose count issue INFO (-v), DEBUG (-vv)
Hidden commands
These commands are hidden from help, and should primarily be used by the system or for debugging.
Generate the autocompletion script for ubuntu-insights for the specified shell.
ubuntu-insights completion [shell]