No commit activity in last 3 years
No release in over 3 years
Capistrano v3 task for reporting deploys to InfluxDB
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

capistrano-influx

Simple Capistrano 3 plugin to report deploys to influxdb.

Usage

Gem install (or bundle):

gem install capistrano-influxdb

Add to Capfile:

require 'capistrano/influxdb'

set :influxdb_connection, {
  host: 'influxdb.example.com',
  port: 8086,
  username: 'myuser',
  password: 'mypass',
}

set :influxdb_database, 'deploys'
set :influxdb_series,   'capistrano'