Coder Social home page Coder Social logo

awscost's Introduction

AWS Cost (Golang)

GoDoc License: MIT Release Build Status Codecov Coverage Go Report Card Code Climate BCH compliance

awscost is library to get AWS estimate billing costs. This library probides two ways to get costs.

  • ClowdWatch API
  • CostExplorer API

Quick Usage

import (
	"fmt"
	"time"

	"github.com/evalphobia/awscost/costexplorer"
)

func main() {
	endDate := time.Now().AddDate(0, 0, -1)

	// costs, err := cloudwatch.FetchDailyCost(endDate)
	costs, err := costexplorer.FetchDailyCost(endDate)
	if err != nil {
		return panic(err)
	}

	// set date to show it on the report
	costs.SetDate(endDate)
	text := costs.FormatAsOutputReport()

	// show cost data
	fmt.Println(text)

	// post cost data to slack channel
	err = sendCostToSlack(text)
	if err != nil {
		return panic(err)
	}
}

Environment variables

Name Description
AWSCOST_LANG Supported languages are en, ja. See the language file

awscost's People

Contributors

evalphobia avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

cloudxo

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.