An open API service indexing awesome lists of open source software.

https://github.com/derniercri/warpex

Warp10 client for Elixir
https://github.com/derniercri/warpex

elixir iot timeseries warp10

Last synced: about 1 year ago
JSON representation

Warp10 client for Elixir

Awesome Lists containing this project

README

          

# Warpex

[![Build Status](https://travis-ci.org/derniercri/warpex.svg?branch=master)](https://travis-ci.org/derniercri/warpex)

Warpex is a Warp10 client for Elixir.

## Usage

Add it to your applications and dependencies in `mix.exs`:

```elixir
def application do
[applications: [:warpex]]
end

def deps do
[{:warpex, "~> 1.2"}]
end
```

Configure it in `config.exs`:

```elixir
config :warpex,
address: "http://localhost", # defaults to System.get_env("WARP10_ADDRESS"),
read_key: "xxxxx", # defaults to System.get_env("WARP10_READ_KEY")
write_key: "xxxxx", # defaults to System.get_env("WARP10_WRITE_KEY")
httpoison_opts: [timeout: 5000] # defaults to []
```

And then call functions like:

```elixir
{status, response} = Warpex.update(
[%{
"labels" => "label1=anything,label2=anotherthing",
"latlon" => "50.683299992233515:2.8832999244332314",
"elev" => "214748",
"name" => "metric.1.memory_available",
"val" => 12,
"ts" => 1521969018754000
}])
```

```elixir
"'#{Warpex.get_token(:read)}' // Put your token on the stack
'token' STORE // Store it in a variable
[ $token '~sensor.#{sensor.id}.*' { } #{start} #{delta} ] FETCH
[ SWAP bucketizer.mean 0 0 1 ] BUCKETIZE"
|> Warpex.exec_warpscript()
```

```elixir
{status, response} = Warpex.fetch("~metric.1.*{}", start, stop)
```

`status` is either `:ok` or `:error`.

`response` is the raw response from Warp10 as text