Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/vendor/github.com/digitalocean/godo
Sandeep Sukhani d765921735
revendor cortex to latest master (#3771)
4 years ago
..
.gitignore Service discovery refactor (#2761) 5 years ago
.whitesource Service discovery refactor (#2761) 5 years ago
1-click.go Service discovery refactor (#2761) 5 years ago
CHANGELOG.md revendor cortex to latest master (#3771) 4 years ago
CONTRIBUTING.md Update cortex to 1 6 (#3131) 4 years ago
LICENSE.txt Service discovery refactor (#2761) 5 years ago
README.md Revendor/cortex (#3446) 4 years ago
account.go Service discovery refactor (#2761) 5 years ago
action.go Service discovery refactor (#2761) 5 years ago
apps.gen.go Revendor/cortex (#3446) 4 years ago
apps.go revendor cortex to latest master (#3771) 4 years ago
balance.go Service discovery refactor (#2761) 5 years ago
billing_history.go Service discovery refactor (#2761) 5 years ago
cdn.go Service discovery refactor (#2761) 5 years ago
certificates.go Service discovery refactor (#2761) 5 years ago
databases.go revendor cortex to latest master (#3771) 4 years ago
doc.go Service discovery refactor (#2761) 5 years ago
domains.go Update cortex to 1 6 (#3131) 4 years ago
droplet_actions.go Service discovery refactor (#2761) 5 years ago
droplets.go Update cortex to 1.8 (#3627) 4 years ago
errors.go Service discovery refactor (#2761) 5 years ago
firewalls.go Update cortex to 1 6 (#3131) 4 years ago
floating_ips.go Update cortex to 1 6 (#3131) 4 years ago
floating_ips_actions.go Service discovery refactor (#2761) 5 years ago
go.mod Service discovery refactor (#2761) 5 years ago
go.sum Service discovery refactor (#2761) 5 years ago
godo.go revendor cortex to latest master (#3771) 4 years ago
image_actions.go Service discovery refactor (#2761) 5 years ago
images.go update vendored cortex and add new replace overrides (#3256) 4 years ago
invoices.go Update cortex to 1 6 (#3131) 4 years ago
keys.go Service discovery refactor (#2761) 5 years ago
kubernetes.go revendor cortex to latest master (#3771) 4 years ago
links.go Service discovery refactor (#2761) 5 years ago
load_balancers.go Update cortex to 1 6 (#3131) 4 years ago
meta.go Service discovery refactor (#2761) 5 years ago
projects.go Update cortex to 1 6 (#3131) 4 years ago
regions.go Service discovery refactor (#2761) 5 years ago
registry.go Revendor/cortex (#3446) 4 years ago
sizes.go Update cortex to 1.8 (#3627) 4 years ago
snapshots.go Service discovery refactor (#2761) 5 years ago
storage.go Update cortex to 1 6 (#3131) 4 years ago
storage_actions.go Service discovery refactor (#2761) 5 years ago
strings.go Update cortex to 1 6 (#3131) 4 years ago
tags.go Service discovery refactor (#2761) 5 years ago
timestamp.go Service discovery refactor (#2761) 5 years ago
vpcs.go revendor cortex to latest master (#3771) 4 years ago

README.md

Godo

Build Status GoDoc

Godo is a Go client library for accessing the DigitalOcean V2 API.

You can view the client API docs here: http://godoc.org/github.com/digitalocean/godo

You can view DigitalOcean API docs here: https://developers.digitalocean.com/documentation/v2/

Install

go get github.com/digitalocean/godo@vX.Y.Z

where X.Y.Z is the version you need.

or

go get github.com/digitalocean/godo

for non Go modules usage or latest version.

Usage

import "github.com/digitalocean/godo"

Create a new DigitalOcean client, then use the exposed services to access different parts of the DigitalOcean API.

Authentication

Currently, Personal Access Token (PAT) is the only method of authenticating with the API. You can manage your tokens at the DigitalOcean Control Panel Applications Page.

You can then use your token to create a new client:

package main

import (
    "github.com/digitalocean/godo"
)

func main() {
    client := godo.NewFromToken("my-digitalocean-api-token")
}

If you need to provide a context.Context to your new client, you should use godo.NewClient to manually construct a client instead.

Examples

To create a new Droplet:

dropletName := "super-cool-droplet"

createRequest := &godo.DropletCreateRequest{
    Name:   dropletName,
    Region: "nyc3",
    Size:   "s-1vcpu-1gb",
    Image: godo.DropletCreateImage{
        Slug: "ubuntu-20-04-x64",
    },
}

ctx := context.TODO()

newDroplet, _, err := client.Droplets.Create(ctx, createRequest)

if err != nil {
    fmt.Printf("Something bad happened: %s\n\n", err)
    return err
}

Pagination

If a list of items is paginated by the API, you must request pages individually. For example, to fetch all Droplets:

func DropletList(ctx context.Context, client *godo.Client) ([]godo.Droplet, error) {
    // create a list to hold our droplets
    list := []godo.Droplet{}

    // create options. initially, these will be blank
    opt := &godo.ListOptions{}
    for {
        droplets, resp, err := client.Droplets.List(ctx, opt)
        if err != nil {
            return nil, err
        }

        // append the current page's droplets to our list
        list = append(list, droplets...)

        // if we are at the last page, break out the for loop
        if resp.Links == nil || resp.Links.IsLastPage() {
            break
        }

        page, err := resp.Links.CurrentPage()
        if err != nil {
            return nil, err
        }

        // set the page we want for the next request
        opt.Page = page + 1
    }

    return list, nil
}

Versioning

Each version of the client is tagged and the version is updated accordingly.

To see the list of past versions, run git tag.

Documentation

For a comprehensive list of examples, check out the API documentation.

For details on all the functionality in this library, see the GoDoc documentation.

Contributing

We love pull requests! Please see the contribution guidelines.