
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
github.com/vsco/datadog
CLI for Datadog API
$ go get github.com/vsco/datadog
Ensure $GOPATH/bin
is in your $PATH
in order to use the binary.
In order to successfully use this tool, you will have to provide it a datadog API key and application key. Visit your DatadogHQ account settings to generate a new application key.
Once you have these values, you have two options for configuration: environment variables or a configuration file.
For environment variables, assign your API key to DATADOG_API_KEY
and
your application key to DATADOG_APP_KEY
.
For configuration files, put your API key and app key in a file like:
{
"api_key": "YOUR_API_KEY",
"app_key": "YOUR_APP_KEY"
}
The default location for this file is ~/.datadogrc
, but you may put it
anywhere and tell the CLI about it via a flag: -config=path/to/your/file
.
It will expand only tildes at the beginning of paths as in the default.
$ datadog TYPE NAME VALUE
This CLI accepts with two types: increment
and gauge
. They send
a counter
or gauge
metric to Datadog, respectively.
The name of the metric is identical to the statsd metric name, e.g.
vsco.my_metric
.
The value must be a float.
$ datadog increment vsco.my_metric 100
increment
can be shortened to incr
or i
, and one may use counter
or
c
as an alias.
$ datadog gauge vsco.my_metric 100
gauge
can be shortened to g
.
This code is licensed under the MIT License, with credit to Visual Supply Co (VSCO). See LICENSE for more.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.