View Source TelemetryDeployex (TelemetryDeployex v0.1.0-rc3)

A reporter that sends the events and metrics to DeployEx application

References:

Summary

Types

@type option() ::
  {:name, String.t()} | {:device, atom()} | {:metrics, [Telemetry.Metrics.t()]}
@type options() :: [option()]

Functions

@spec child_spec(options()) :: Supervisor.child_spec()

Reporter's child spec.

This function allows you to start the reporter under a supervisor like this:

children = [
  {TelemetryDeployex, options}
]

See start_link/1 for a list of available options.

@spec start_link(options()) :: GenServer.on_start()