Files
OpenSearch-Docs-Cn/_dashboards/reporting-cli/rep-cli-env-var.md
T
Alice Williams 1dd560977b Adds Reporting CLI documentation (#2170)
* add files back from lost local files

Signed-off-by: Alice Williams <[email protected]>

* nest reporting CLI under main Reporting page

Signed-off-by: Alice Williams <[email protected]>

* rough draft examples for AWS Lambda and Cron

Signed-off-by: Alice Williams <[email protected]>

* better title for cron job report example

Signed-off-by: Alice Williams <[email protected]>

* for more details from tech reviewer

Signed-off-by: Alice Williams <[email protected]>

* for better cron job usage description

Signed-off-by: Alice Williams <[email protected]>

* for more details

Signed-off-by: Alice Williams <[email protected]>

* remove needs info markers and add links to events doc

Signed-off-by: Alice Williams <[email protected]>

* more info

Signed-off-by: Alice Williams <[email protected]>

* more details from demonstration

Signed-off-by: Alice Williams <[email protected]>

* remove reporting directory to keep both parallel in left nav

Signed-off-by: Alice Williams <[email protected]>

* small addition

Signed-off-by: Alice Williams <[email protected]>

* for two configuration settings in the function

Signed-off-by: Alice Williams <[email protected]>

* more details from eng meeting adding to the steps

Signed-off-by: Alice Williams <[email protected]>

* more details from eng meeting adding to the steps

Signed-off-by: Alice Williams <[email protected]>

* for more details

Signed-off-by: Alice Williams <[email protected]>

* for additional steps to create and test the lambda function

Signed-off-by: Alice Williams <[email protected]>

* for scheduling reports with lambda

Signed-off-by: Alice Williams <[email protected]>

* merge redundant set of steps together

Signed-off-by: Alice Williams <[email protected]>

* for tech review comments

Signed-off-by: Alice Williams <[email protected]>

* to add download correct title and link

Signed-off-by: Alice Williams <[email protected]>

* for reporting directory to nest new cli page

Signed-off-by: Alice Williams <[email protected]>

* un-nest reporting directory

Signed-off-by: Alice Williams <[email protected]>

* to remove reporting directory - will nest with other page in separate PR

Signed-off-by: Alice Williams <[email protected]>

* tech review comments and some reorg

Signed-off-by: Alice Williams <[email protected]>

* for tech review comments

Signed-off-by: Alice Williams <[email protected]>

* to minor changes

Signed-off-by: Alice Williams <[email protected]>

* more info about crontab sequence

Signed-off-by: Alice Williams <[email protected]>

* cron updates

Signed-off-by: Alice Williams <[email protected]>

* for cron syntax

Signed-off-by: Alice Williams <[email protected]>

* small updates to lambda proc

Signed-off-by: Alice Williams <[email protected]>

* for final writer checklist

Signed-off-by: Alice Williams <[email protected]>

* cron link update

Signed-off-by: Alice Williams <[email protected]>

* format fix

Signed-off-by: Alice Williams <[email protected]>

* for doc review cron & lambda sections

Signed-off-by: Alice Williams <[email protected]>

* for cron reference to man page

Signed-off-by: Alice Williams <[email protected]>

* add internal link to cron ref

Signed-off-by: Alice Williams <[email protected]>

* reorg single topic into 7 pages

Signed-off-by: Alice Williams <[email protected]>

* minor update

Signed-off-by: Alice Williams <[email protected]>

* link to set ses permissions

Signed-off-by: Alice Williams <[email protected]>

* for tech review meeting updates

Signed-off-by: Alice Williams <[email protected]>

* small update

Signed-off-by: Alice Williams <[email protected]>

* npm download command name changed to remove opensearch prepended name

Signed-off-by: Alice Williams <[email protected]>

* for new download via artifacts hub

Signed-off-by: Alice Williams <[email protected]>

* for new download instructions

Signed-off-by: Alice Williams <[email protected]>

* small fix signature file

Signed-off-by: Alice Williams <[email protected]>

* typo

Signed-off-by: Alice Williams <[email protected]>

* for cleaner image

Signed-off-by: Alice Williams <[email protected]>

* remove image for push commands we won't use

Signed-off-by: Alice Williams <[email protected]>

---------

Signed-off-by: Alice Williams <[email protected]>
2023-02-08 17:52:19 -08:00

4.6 KiB

layout, title, nav_order, parent
layout title nav_order parent
default Using environment variables with the Reporting CLI 35 Creating reports with the Reporting CLI

Using environment variables with the Reporting CLI

Instead of explicitly providing values in the command line, you can save them as environment variables. The Reporting CLI reads environment variables from the current directory inside the project.

To set the environment variables in Linux, use the following command:

export NAME=VALUE

Each line should use the format NAME=VALUE. Each line that starts with a hashtag (#) is considered to be a comment. Quotation marks (") don't get any special handling.

Values from the command line argument have higher priority than the environment file. For example, if you add the file name as test in the .env file and also add the --filename report command option, the generated report's name will be report. {: .note }

Example: Requesting a PNG report with environment variables set

The following command requests a report with basic authentication in PNG format:

opensearch-reporting-cli --url https://localhost:5601/app/dashboards#/view/7adfa750-4c81-11e8-b3d7-01146121b73d --format png --auth basic --credentials admin:admin

Upon success, the report will download to the current directory.

Using Amazon SES to request an email with a report attachment

To use Amazon SES as the email transport mechanism, the following prerequisites apply:

{
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "ses:SendRawEmail",
      "Resource": "*"
    }
  ]
}

The following command requests an email with the report attached:

opensearch-reporting-cli --url https://localhost:5601/app/dashboards#/view/7adfa750-4c81-11e8-b3d7-01146121b73d --transport ses --from <sender_email_id> --to <recipient_email_id>

The following command uses default values for all other options. You can also set OPENSEARCH_FROM, OPENSEARCH_TO, and OPENSEARCH_TRANSPORT in your .env file and use the following command:

opensearch-reporting-cli --url https://localhost:5601/app/dashboards#/view/7adfa750-4c81-11e8-b3d7-01146121b73d

To modify the body of your email, you can edit the index.hbs file.

Example: Sending a report to an email address with SMTP

To send a report to an email address with SMTP transport, you need to set the options OPENSEARCH_SMTP_HOST, OPENSEARCH_SMTP_PORT, OPENSEARCH_SMTP_USER, OPENSEARCH_SMTP_PASSWORD, and OPENSEARCH_SMTP_SECURE in your .env file.

Once the transport options are set in your .env file, you can send the email using the following command:

opensearch-reporting-cli --url https://localhost:5601/app/dashboards#/view/7adfa750-4c81-11e8-b3d7-01146121b73d --transport smtp --from <sender_email_id> --to <recipient_email_id>

You can choose to set options using either your .env file or the command line argument values in any combination. Make sure to specify all required values to avoid errors.

To modify the body of your email, you can edit the index.hbs file.

Limitations

The following limitations apply to environment variable usage with the Reporting CLI:

  • Supported platforms are Windows x86, Windows x64, Mac Intel, Mac ARM, Linux x86, and Linux x64.

    For any other platform, users can take advantage of the CHROMIUM_PATH environment variable to use custom Chromium.

  • If a URL contains an exclamation point (!), then the history expansion needs to be disabled temporarily. Depending on which shell you are using, you can disable history expansion using one of the following commands:

    • For bash, use set +H.
    • For zsh, use setopt nobanghist.

    Alternatively, you can add a URL value as an environment variable using this format: URL="<url-with-!>".

  • All command options only accept lowercase letters.

Troubleshooting

To resolve MessageRejected: Email address is not verified, see Why am I getting a 400 "message rejected" error with the message "Email address is not verified" from Amazon SES? in the AWS Knowledge Center.