Hi,
there is a way to automate telegraf installation ? Are you provide scripts to deploy telegraf from github ?
regards.
Hi,
there is a way to automate telegraf installation ? Are you provide scripts to deploy telegraf from github ?
regards.
Using chef you can add the repo
apt_repository 'influxdb' do
uri "https://repos.influxdata.com/#{node['platform']}"
distribution node['lsb']['codename']
components ['stable']
arch node['architecture']
key 'https://repos.influxdata.com/influxdb.key'
end
and install the package
package 'telelgraf' do
action :install
version '1.2.3'
end