Class: PlatformAPI::LogDrain

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

Log drains provide a way to forward your Heroku logs to an external syslog server for long-term archiving. This external service must be configured to receive syslog packets from Heroku, whereupon its URL can be added to an app using this API. Some addons will add a log drain when they are provisioned to an app. These drains can only be removed by removing the add-on.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ LogDrain

Returns a new instance of LogDrain.



1351
1352
1353
# File 'lib/platform-api/client.rb', line 1351

def initialize(client)
  @client = client
end

Instance Method Details

#create(app_id_or_app_name, body) ⇒ Object

Create a new log drain.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • body:

    the object to pass as the request payload



1359
1360
1361
# File 'lib/platform-api/client.rb', line 1359

def create(app_id_or_app_name, body)
  @client.log_drain.create(app_id_or_app_name, body)
end

#delete(app_id_or_app_name, log_drain_id_or_log_drain_url) ⇒ Object

Delete an existing log drain. Log drains added by add-ons can only be removed by removing the add-on.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • log_drain_id_or_log_drain_url:

    unique identifier of this log drain or url associated with the log drain



1367
1368
1369
# File 'lib/platform-api/client.rb', line 1367

def delete(app_id_or_app_name, log_drain_id_or_log_drain_url)
  @client.log_drain.delete(app_id_or_app_name, log_drain_id_or_log_drain_url)
end

#info(app_id_or_app_name, log_drain_id_or_log_drain_url) ⇒ Object

Info for existing log drain.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app

  • log_drain_id_or_log_drain_url:

    unique identifier of this log drain or url associated with the log drain



1375
1376
1377
# File 'lib/platform-api/client.rb', line 1375

def info(app_id_or_app_name, log_drain_id_or_log_drain_url)
  @client.log_drain.info(app_id_or_app_name, log_drain_id_or_log_drain_url)
end

#list(app_id_or_app_name) ⇒ Object

List existing log drains.

Parameters:

  • app_id_or_app_name:

    unique identifier of app or unique name of app



1382
1383
1384
# File 'lib/platform-api/client.rb', line 1382

def list(app_id_or_app_name)
  @client.log_drain.list(app_id_or_app_name)
end