Skip to content

Commit

Permalink
Support influxdbv2 in custom metric drain
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelaossa committed Aug 21, 2023
1 parent 47c8453 commit eb9d8e5
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Commands:
aptible metric_drain:create:datadog HANDLE --api_key DATADOG_API_KEY --site DATADOG_SITE --environment ENVIRONMENT # Create a Datadog Metric Drain
aptible metric_drain:create:influxdb HANDLE --db DATABASE_HANDLE --environment ENVIRONMENT # Create an InfluxDB Metric Drain
aptible metric_drain:create:influxdb:custom HANDLE --username USERNAME --password PASSWORD --url URL_INCLUDING_PORT --db INFLUX_DATABASE_NAME --environment ENVIRONMENT # Create an InfluxDB Metric Drain
aptible metric_drain:create:influxdb:customv2 HANDLE --org ORGANIZATION --token INFLUX_TOKEN --url URL_INCLUDING_PORT --bucket INFLUX_BUCKET_NAME --environment ENVIRONMENT # Create an InfluxDB v2 Metric Drain
aptible metric_drain:deprovision HANDLE --environment ENVIRONMENT # Deprovisions a Metric Drain
aptible metric_drain:list # List all Metric Drains
aptible operation:cancel OPERATION_ID # Cancel a running operation
Expand Down
29 changes: 29 additions & 0 deletions lib/aptible/cli/subcommands/metric_drain.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,35 @@ def self.included(thor)
create_metric_drain(account, opts)
end

desc 'metric_drain:create:influxdb:customv2 HANDLE '\
'--org ORGANIZATION --token INFLUX_TOKEN ' \
'--url URL_INCLUDING_PORT ' \
'--bucket INFLUX_BUCKET_NAME ' \
'--environment ENVIRONMENT',
'Create an InfluxDB v2 Metric Drain'
option :bucket, type: :string
option :org, type: :string
option :token, type: :string
option :url, type: :string
option :environment
define_method 'metric_drain:create:influxdb:customv2' do |handle|
account = ensure_environment(options)

config = {
address: options[:url],
org: options[:org],
authToken: options[:token],
bucket: options[:bucket]
}
opts = {
handle: handle,
drain_configuration: config,
drain_type: :influxdb2
}

create_metric_drain(account, opts)
end

desc 'metric_drain:create:datadog HANDLE '\
'--api_key DATADOG_API_KEY '\
'--site DATADOG_SITE ' \
Expand Down
28 changes: 27 additions & 1 deletion spec/aptible/cli/subcommands/metric_drain_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def expect_provision_metric_drain(create_opts, provision_opts = {})
end

context 'influxdb:custom' do
it 'creates a new InfluxDB metric drain' do
it 'creates a new InfluxDB v1 metric drain' do
opts = {
handle: 'test-influxdb-custom',
drain_type: :influxdb,
Expand All @@ -111,6 +111,32 @@ def expect_provision_metric_drain(create_opts, provision_opts = {})
end
end

context 'influxdb:customv2' do
it 'creates a new InfluxDB v2 metric drain' do
opts = {
handle: 'test-influxdb2-custom',
drain_type: :influxdb2,
drain_configuration: {
address: 'https://test.foo.com:443',
org: 'foobar',
authToken: 'bar',
bucket: 'foo'
}
}
expect_provision_metric_drain(opts)

subject.options = {
environment: account.handle,
bucket: 'foo',
token: 'bar',
org: 'foobar',
url: 'https://test.foo.com:443'
}
subject.send('metric_drain:create:influxdb:customv2',
'test-influxdb2-custom')
end
end

context 'datadog' do
it 'creates a new Datadog metric drain' do
opts = {
Expand Down

0 comments on commit eb9d8e5

Please sign in to comment.