Skip to content

Latest commit

 

History

History
201 lines (146 loc) · 9.3 KB

CONTRIBUTING.md

File metadata and controls

201 lines (146 loc) · 9.3 KB

How to Contribute

We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow.

Contributor License Agreement

Contributions to this project must be accompanied by a Contributor License Agreement (CLA). You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of the project. Head over to https://cla.developers.google.com/ to see your current agreements on file or to sign a new one.

You generally only need to submit a CLA once, so if you've already submitted one (even if it was for a different project), you probably don't need to do it again.

Code reviews

All submissions, including submissions by project members, require review. We use GitHub Pull Requests (PRs) for this purpose. Consult GitHub Help for more information on using Pull Requests.

Community Guidelines

This project follows Google's Open Source Community Guidelines.

Contributing guidelines

Development environment

  1. To prepare for development, you need to fork this repository and work on your own branch so that you can later submit your changes as a GitHub Pull Request.

  2. Once you have forked the repo on GitHub, clone it locally and create a Python virtual environment to work in:

    git clone github.com/google/slo-generator
    cd slo-generator
    python3 -m venv venv/
    source venv/bin/activate
  3. Install slo-generator locally in development mode, with all the extra packages as well as pre-commit hooks in order to speed up and simplify the development workflow:

    make develop
  4. Start making changes.

  5. Commit your changes locally, in small chunks with meaningful commit messages to simplify the code reviewing process later on.

    Note that pre-commit hooks are installed during make develop and automatically executed by git on every git commit operation. These checks are responsible for making sure your changes are linted and well-formatted, in order to match the rest of the codebase and simplify the code reviews. You will be warned after issuing git commit if at least one of the staged files does not comply. You can also run the checks manually on the staged files at any time with:

    $ pre-commit run
    trim trailing whitespace.................................................Passed
    fix end of files.........................................................Passed
    check yaml...............................................................Passed
    check for added large files..............................................Passed
    autoflake................................................................Passed
    flake8...................................................................Passed
    black....................................................................Passed
    isort....................................................................Passed
    pylint...................................................................Passed

    If any error is reported, your commit gets canceled and you can start working on fixing the issues. If a formatting error gets reported, run make format to automatically organize the imports and reformat the code with isort and black. Also make sure to fix any errors returned by linters or static analyzers such as flake8, pylint, mypy or pytype. Then try git commit-ting your changes again.

    Ignoring these pre-commit warnings is not recommended. The Continuous Integration (CI) pipelines will run the exact same checks (and more!) when your commits get pushed. The checks will fail there and prevent you from merging your changes to the master branch anyway. So fail fast, fail early, fail often and fix as many errors as possible on your local development machine. Code reviews will be more enjoyable for everyone!

  6. Push your changes when all the pre-commit checks complete successfully.

  7. Create a Pull Request (PR) and ask for a review.

Notes:

  • IDEs such as Visual Studio Code and PyCharm can help with linting and reformatting. For example, Visual Studio Code can be configured to run isort and black automatically on every file save. Just add these lines to your settings.json file, as documented in this article:

        "editor.formatOnSave": true,
        "python.formatting.provider": "black",
        "[python]": {
            "editor.codeActionsOnSave": {
                "source.organizeImports": true  // isort
            }
        },
  • pyenv can be used to easily switch between multiple versions of Python. For example, you might want to create multiple virtual environments like venv3.9.14 and venv3.10.7 to confirm a syntax or feature is supported by all Python versions, while keeping the environments isolated from each other.

Testing environment

Unit tests are located in the tests/unit folder.

To run all the tests, run make in the base directory.

You can also select which test to run, and do other things:

make unit          # run unit tests only
make lint          # lint code only (with flake8, pylint, mypy and pytype)
make format        # format code only (with isort and black)
make docker_test   # build Docker image and run tests within Docker container
make docker_build  # build Docker image only
make info          # see current slo-generator version

Adding support for a new backend or exporter

The slo-generator tool is designed to be modular as it moves forward. Users, customers and Google folks should be able to easily add the metrics backend or the exporter of their choosing.

New backend

To add a new backend, one must:

  • Add a new file named slo-generator/backends/<backend>.py
  • Write a new Python class called <Name>Backend (CamlCase)
  • Test it with a sample config
  • Add some unit tests
  • Make sure all tests pass
  • Submit a PR

Example with a fake Cat backend:

  • Add a new backend file:

    touch slo-generator/backends/cat.py
  • Fill the content of cat.py:

    from provider import CatClient
    
    class CatBackend:
      def __init__(self, **kwargs):
        # instantiate your client here, or do nothing if your backend
        # doesn't need it.
        url = kwargs['url']
        self.client = CatClient(url)
    
      def _fmt_query(query, **options):
        # format your query string as you need to
        return query
    
      def query(self, *args, **kwargs):
        # add code to query your backend here.
        return self.client.query(*args, **kwargs)
    
      @staticmethod
      def count(timeseries):
        # add code to count the number of events in the timeseries returned
        return 500
    
      def distribution_cut(self, timestamp, window, slo_config):
        # this should return a tuple `(good_event_count, bad_event_count)`
        valid_event_query = slo_config['measurement']['query_valid']
        valid_timeseries = self.query(valid_event_query, timestamp, window)
        # ...
        return (good_count, bad_count)
    
      def good_bad_ratio(self, timestamp, window, slo_config):
        # this should return a tuple `(good_event_count, bad_event_count)`
        good_event_query = kwargs['measurement']['query_good']
        bad_event_query = kwargs['measurement']['query_bad']
        good_timeseries = self.query(good_event_query, timestamp, window)
        bad_timeseries = self.query(bad_event_query, timestamp, window)
        good_count = Datadog.count(good_timeseries)
        bad_count = Datadog.count(bad_timeseries)
        return (good_count, bad_count)
    
      def query_sli(self, timestamp, window, slo_config):
        # this should return a float `SLI value`.
        my_sli_value = self.compute_random_stuff()
        return my_sli_value
  • Write a sample SLO configs (slo_cat_test_slo_ratio.yaml):

    service_name: cat
    feature_name: test
    slo_name: slo
    slo_description: Test Cat SLO
    backend:
      class: Cat
      method: good_bad_ratio # change to test another method
      url: cat.mycompany.com
      measurement:
        query_good: avg:system.disk.free{*}.rollup(avg, {window})
        query_valid: avg:system.disk.used{*}.rollup(avg, {window})
  • Run a live test with the SLO generator:

    slo-generator -f slo_cat_test_slo_ratio.yaml -b samples/error_budget_target.yaml
  • Create a directory samples/<backend> for your backend samples.

  • Add some YAML samples to show how to write SLO configs for your backend. Samples should be named slo_<service_name>_<feature_name>_<method>.yaml.

  • Add a unit test: in the tests/unit/test_compute.py, simply add a method called test_compute_<backend>. Take the other backends an example when writing the test.

  • Add documentation for your backend / exporter in a new file named docs/providers/cat.md.

  • Make sure all tests pass

  • Submit a PR

The steps above are similar for adding a new exporter, but the exporter code will go to the exporters/ directory and the unit test will be named test_export_<exporter>.