2022-12-28 15:04:45 +00:00
|
|
|
package Travelynx::Command::influxdb;
|
|
|
|
|
2023-06-24 16:36:59 +00:00
|
|
|
# Copyright (C) 2022 Birthe Friesel
|
2022-12-28 15:04:45 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
use Mojo::Base 'Mojolicious::Command';
|
|
|
|
|
|
|
|
use DateTime;
|
|
|
|
|
|
|
|
has description => 'Generate statistics for InfluxDB';
|
|
|
|
|
|
|
|
has usage => sub { shift->extract_usage };
|
|
|
|
|
|
|
|
sub query_to_influx {
|
|
|
|
my ( $label, $value ) = @_;
|
|
|
|
|
|
|
|
if ( defined $value ) {
|
|
|
|
return sprintf( '%s=%f', $label, $value );
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
my $db = $self->app->pg->db;
|
|
|
|
|
|
|
|
my $now = DateTime->now( time_zone => 'Europe/Berlin' );
|
|
|
|
my $active = $now->clone->subtract( months => 1 );
|
|
|
|
|
2023-01-02 05:20:07 +00:00
|
|
|
my @stats;
|
|
|
|
my @traewelling;
|
2022-12-28 15:04:45 +00:00
|
|
|
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
|
|
|
'pending_user_count',
|
|
|
|
$db->select( 'users', 'count(*) as count', { status => 0 } )
|
|
|
|
->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
|
|
|
'reg_user_count',
|
|
|
|
$db->select( 'users', 'count(*) as count', { status => 1 } )
|
|
|
|
->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
|
|
|
'active_user_count',
|
|
|
|
$db->select(
|
|
|
|
'users',
|
|
|
|
'count(*) as count',
|
|
|
|
{
|
|
|
|
status => 1,
|
|
|
|
last_seen => { '>', $active }
|
|
|
|
}
|
|
|
|
)->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
|
|
|
'checked_in_count',
|
|
|
|
$db->select( 'in_transit', 'count(*) as count' )->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
2022-12-28 16:41:17 +00:00
|
|
|
'checkin_count',
|
|
|
|
$db->select( 'journeys', 'count(*) as count' )->hash->{count}
|
2022-12-28 15:04:45 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
|
|
|
'polyline_count',
|
|
|
|
$db->select( 'polylines', 'count(*) as count' )->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@traewelling,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
2023-01-02 05:20:07 +00:00
|
|
|
'pull_user_count',
|
2022-12-28 15:04:45 +00:00
|
|
|
$db->select(
|
|
|
|
'traewelling',
|
|
|
|
'count(*) as count',
|
|
|
|
{ pull_sync => 1 }
|
|
|
|
)->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@traewelling,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
2023-01-02 05:20:07 +00:00
|
|
|
'push_user_count',
|
2022-12-28 15:04:45 +00:00
|
|
|
$db->select(
|
|
|
|
'traewelling',
|
|
|
|
'count(*) as count',
|
|
|
|
{ push_sync => 1 }
|
|
|
|
)->hash->{count}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
push(
|
2023-01-02 05:20:07 +00:00
|
|
|
@stats,
|
2022-12-28 15:04:45 +00:00
|
|
|
query_to_influx(
|
|
|
|
'polyline_ratio',
|
|
|
|
$db->query(
|
|
|
|
'select (select count(polyline_id) from journeys)::float / (select count(*) from polylines) as ratio'
|
|
|
|
)->hash->{ratio}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2023-01-02 05:20:07 +00:00
|
|
|
if ( $self->app->config->{influxdb}->{url} ) {
|
|
|
|
$self->app->ua->post_p(
|
|
|
|
$self->app->config->{influxdb}->{url},
|
|
|
|
'stats ' . join( ',', @stats )
|
|
|
|
)->wait;
|
|
|
|
$self->app->ua->post_p(
|
|
|
|
$self->app->config->{influxdb}->{url},
|
|
|
|
'traewelling ' . join( ',', @traewelling )
|
|
|
|
)->wait;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$self->app->log->warn(
|
|
|
|
"influxdb command called, but no influxdb url has been configured");
|
|
|
|
}
|
|
|
|
|
2022-12-28 15:04:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
__END__
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2023-01-02 05:20:07 +00:00
|
|
|
Usage: index.pl influxdb
|
2022-12-28 15:04:45 +00:00
|
|
|
|
2023-01-02 05:20:07 +00:00
|
|
|
Write statistics to InfluxDB
|