Skip to main content

CloudZero UCA Tools

Project description

CloudZero UCA Tools

Utilities for generating, transforming and transmitting unit cost analytics (UCA) data to the CloudZero API. Visit our UCA documentation to learn more about CloudZero and our enhanced unit cost analytics capabilities.

Features

  • Transmit UCA v1.2 data to CloudZero (using the CloudZero UCA API)
  • Generate UCA v1.2 data
  • Transform ELB/ALB and CloudFront logs into UCA data (Coming Soon!)

Installation

  $ pip install --user cloudzero-uca-tools

Usage

CloudZero UCA tools exist to produce UCA events that can then be transmitted to the CloudZero API for analysis and processing. To use the CloudZero API, you should first obtain an API key from https://app.cloudzero.com/organization/api-keys

Data Transmission

UCA data transmission allows you easily send UCA data directly to the CloudZero API without having to write code. Prepare an input file with one or more correctly formatted JSON UCA records as quickly send it to the CloudZero API.

Help

$ uca transmit --help
Usage: uca transmit [OPTIONS]

Options:
  -s, --source TEXT         Source data, in text or gzip + text format,
                            supports file:// or s3:// paths  [required]
  -t, --transform TEXT      Optional transformation script using jq
                            (https://stedolan.github.io/jq/). Used when the
                            source data needs modification or cleanup. See
                            README.md for supported formats and usage
                            instructions
  -k, --api-key TEXT        API Key to use
  -o, --output TEXT         Instead of sending events to the API, append the
                            events to an output file
  -c, --configuration TEXT  UCA configuration file (JSON)
  -dry, --dry-run           Perform a dry run, read and transform the data but
                            do not send it to the API
  --help                    Show this message and exit.

Examples

Using JQ Transforms

CloudZero UCA tools can use JQ scripts to transform the source data on the fly before transmission. This is helpful when you have minor or even major changes you want to make to the data quickly and it would be more complicated or impossible to alter the input data (for example an existing system is producing UCA data in an older format).

Example JQ Script

The following script requires the id field to be present (records missing this field will be skipped), followed by setting the target field using a metadata and cost-context field, followed by setting the cost-context to a constant value and then deleting the metadata and uca fields

select(.id != "")
| .target = {"tag:environment": [.metadata.environment], "feature": [.["cost-context"]] }
| .["cost-context"] = "cost-per-title"
| del(.metadata, .uca)
Example Input:
{
  "uca": "v1.3",
  "timestamp": "2021-05-25 13:00:00+0000",
  "granularity": "HOURLY",
  "cost-context": "rosebud",
  "id": "frank",
  "target": {},
  "telemetry-stream": "test-data",
  "value": "1073641",
  "metadata": {
    "environment": "production"
  }
}
Example Transformed Output:
{
  "timestamp": "2021-05-25 13:00:00",
  "granularity": "HOURLY",
  "cost-context": "Cost-Per-Customer",
  "id": "frank",
  "target": {
    "tag:environment": ["production"],
    "feature": ["rosebud"]
  },
  "telemetry-stream": "test-data",
  "value": "1073641"
}

Data Generation

UCA data generation is useful when you need to account for static assets and cost allocations that need to be accounted for to fill gaps in your UCA data or for testing purposes.

Help

$ uca generate --help
Usage: uca generate [OPTIONS]

Options:
  -s, --start TEXT          start datetime <YYYY-MM-DD HH:MM:SS>
  -e, --end TEXT            End datetime <YYYY-MM-DD HH:MM:SS>
  --today                   Generate events for the current day
  -c, --configuration TEXT  UCA configuration file (JSON)  [required]
  -d, --data TEXT           Input UCA data (CSV)  [required]
  -o, --output TEXT         Instead of sending events to the API, append the
                            events to an output file
  -k, --api-key TEXT        API Key to use
  -dry, --dry-run           Perform a dry run, read and transform the data but
                            do not send it to the API
  --help                    Show this message and exit.

Examples

Generate UCA data between 2021-03-13 and 2021-04-07 using data/configuration.json and data/data.csv as input. Perform only a dry run and do not send the results to the CloudZero API

$ uca generate -s 2021-03-13 -e 2021-04-07 -c data/configuration.json -d data/data.csv --dry-run

Configuration File

The generate configuration file is a JSON formatted definition of the UCA template you wish to use and the settings that should be applied when injecting data. You can learn more here about the UCA format and our UCA Telemetry API.

{
  "template": {
    "timestamp": "$timestamp",                  # Timestamp will be replaced automatically
    "granularity": "DAILY",                     # Granularity can be HOURLY or DAILY
    "cost-context": "Cost-Per-Fake-Customer",   # You can have up to 5 telemetry streams per context
    "id": "$unit_id",                           # Will be replaced using data from your data CSV
    "target": {},                               # Use {} to map to all spend or use a combination of tags and keywords to get more specific
    "telemetry-stream": "test-data",            # Unique name for this telemetry stream          
    "value": "$unit_value"                      # Will be replaced using generated data or data from your data CSV
  },
  "settings": {
    "version": "v1.2",                          # Currently only v1.2 is supported
    "mode": "exact",                            # Can be exact, random, jitter or allocation
    "jitter": 15,                               # if mode is jitter, this value defines the range
    "allocation": 100000                        # if mode is allocation, this value defines the total amount to be allocated
    "api_key": "<YOUR API KEY HERE>"            # Also can be provided at runtime via the CLI. Get an API key at https://app.cloudzero.com/organization/api-keys
  }
}

Data CSV

The data CSV defines the input data you wish to feed into the template. This tool will produce matching UCA records for all rows in your data CSV for each hour or day as defined. The following example has 13 "customers" and can be used as input for all configuration modes.

    unit_id,unit_value,unit_allocation
    Sunbank,37,8.5574
    SoftwareCorp,17,0.4091
    "Parts, Inc.",140,10.9955
    Transport Co.,25,6.3033
    "WeShipit, Inc.",124,23.7549
    CapitalTwo,90,1.5231
    Bank of Sokovia,43,0.1198
    Makers,9,1.0767
    StateEx,40,3.5057
    Flitter,15,22.9554
    Pets2you,78,6.3358
    Hooli,23,4.3294
    Massive Dynamic,42,10.1339

Example output

Together this configuration and data will produce UCA events similar to the following:

{'timestamp': '2021-03-22 00:00:00+00:00', 'granularity': 'DAILY', 'cost-context': 'Cost-Per-Fake-Customer', 'id': 'StateEx', 'target': {}, 'telemetry-stream': 'test-data', 'value': '40.0000'}
{'timestamp': '2021-04-01 00:00:00+00:00', 'granularity': 'DAILY', 'cost-context': 'Cost-Per-Fake-Customer', 'id': 'Hooli', 'target': {}, 'telemetry-stream': 'test-data', 'value': '23.0000'}
{'timestamp': '2021-04-01 00:00:00+00:00', 'granularity': 'DAILY', 'cost-context': 'Cost-Per-Fake-Customer', 'id': 'Sunbank', 'target': {}, 'telemetry-stream': 'test-data', 'value': '37.0000'}
{'timestamp': '2021-04-06 00:00:00+00:00', 'granularity': 'DAILY', 'cost-context': 'Cost-Per-Fake-Customer', 'id': 'Transport Co.', 'target': {}, 'telemetry-stream': 'test-data', 'value': '25.0000'}
{'timestamp': '2021-03-19 00:00:00+00:00', 'granularity': 'DAILY', 'cost-context': 'Cost-Per-Fake-Customer', 'id': 'StateEx', 'target': {}, 'telemetry-stream': 'test-data', 'value': '40.0000'}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloudzero-uca-tools-0.1.2.zip (29.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page