<<

Bugzilla::App::Command::report_ping

NAME

Bugzilla::App::Command::report_ping - Send a report ping to a URL';

SYNOPSIS

  Usage: APPLICATION report_ping

    ./bugzilla.pl report_ping --base-url=http://example.com/path

  Options:
    -h, --help               Print a brief help message and exits.
    -u, --base-url           URL to send the JSON documents to.
    -r, --rows num           (Optional) Number of requests to send at once. Default: 10.
    -p, --page num           (Optional) Page to start on. Default: 1
    --since str              (Optional) Typically the date of the last run.
    --since-db               (Optional) Store and retrieve the last run timestamp from the DB.
    --class word             (Optional) Report class to use. Default: Simple
    --test                   Validate the JSON documents against the JSON schema.
    --dump-schema            Print the JSON schema.

DESCRIPTION

send a report ping to a URL.

ATTRIBUTES

Bugzilla::App::Command::report_ping inherits all attributes from Mojolicious::Command and implements the following new ones.

description

  my $description = $report_ping->description;
  $rereport r      = $re$port_ping->description('Foo');

Short description of this command, used for the command list.

usage

  my $usage = $report_ping->usage;
  $report_ping  = $report_ping->usage('Foo');

Usage information for this command, used for the help screen.

METHODS

Bugzilla::App::Command::report_ping inherits all methods from Mojolicious::Command and implements the following new ones.

run

  $report_ping->run(@ARGV);

Run this command.

<<