Skip to content

Commit

Permalink
[WebUI] Rename Throughput time intervals
Browse files Browse the repository at this point in the history
<hourly|daily|weekly|monthly> -> <by day|by week|by month|by year>
  • Loading branch information
moisseev committed Aug 30, 2019
1 parent 35c422b commit 3c7505e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions interface/index.html
Expand Up @@ -126,10 +126,10 @@ <h5>Throughput</h5>
<form id="graph_controls" action="#">
Dataset:
<select id="selData" class="form-control">
<option value="hourly" selected>Hourly</option>
<option value="daily">Daily</option>
<option value="weekly">Weekly</option>
<option value="monthly">Monthly</option>
<option value="day" selected>By day</option>
<option value="week">By week</option>
<option value="month">By month</option>
<option value="year">By year</option>
</select>
Y-scale:
<select id="selYScale" class="form-control">
Expand Down
4 changes: 2 additions & 2 deletions interface/js/app/rspamd.js
Expand Up @@ -105,8 +105,8 @@ function ($, D3pie, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_
tab_graph.draw(ui, graphs, tables, neighbours, checked_server, selData);

var autoRefresh = {
hourly: 60000,
daily: 300000
day: 60000,
week: 300000
};
timer_id.throughput = Visibility.every(autoRefresh[selData] || 3600000, function () {
tab_graph.draw(ui, graphs, tables, neighbours, checked_server, selData);
Expand Down
26 changes: 13 additions & 13 deletions src/controller.c
Expand Up @@ -1201,7 +1201,7 @@ rspamd_controller_graph_point (gulong t, gulong step,

/*
* Graph command handler:
* request: /graph?type=<hourly|daily|weekly|monthly>
* request: /graph?type=<day|week|month|year>
* headers: Password
* reply: json [
* { label: "Foo", data: 11 },
Expand All @@ -1223,10 +1223,10 @@ rspamd_controller_handle_graph (
gdouble *acc;
ucl_object_t *res, *elt[METRIC_ACTION_MAX];
enum {
rra_hourly = 0,
rra_daily,
rra_weekly,
rra_monthly,
rra_day = 0,
rra_week,
rra_month,
rra_year,
rra_invalid
} rra_num = rra_invalid;
/* How many points are we going to send to display */
Expand Down Expand Up @@ -1260,17 +1260,17 @@ rspamd_controller_handle_graph (
return 0;
}

if (value->len == 6 && rspamd_lc_cmp (value->begin, "hourly", value->len) == 0) {
rra_num = rra_hourly;
if (value->len == 3 && rspamd_lc_cmp (value->begin, "day", value->len) == 0) {
rra_num = rra_day;
}
else if (value->len == 5 && rspamd_lc_cmp (value->begin, "daily", value->len) == 0) {
rra_num = rra_daily;
else if (value->len == 4 && rspamd_lc_cmp (value->begin, "week", value->len) == 0) {
rra_num = rra_week;
}
else if (value->len == 6 && rspamd_lc_cmp (value->begin, "weekly", value->len) == 0) {
rra_num = rra_weekly;
else if (value->len == 5 && rspamd_lc_cmp (value->begin, "month", value->len) == 0) {
rra_num = rra_month;
}
else if (value->len == 7 && rspamd_lc_cmp (value->begin, "monthly", value->len) == 0) {
rra_num = rra_monthly;
else if (value->len == 4 && rspamd_lc_cmp (value->begin, "year", value->len) == 0) {
rra_num = rra_year;
}

g_hash_table_unref (query);
Expand Down

0 comments on commit 3c7505e

Please sign in to comment.