database report input date wrong
Description
Environment
Acceptance / Success Criteria
Lucidchart Diagrams
Activity

dj he February 15, 2012 at 1:22 AM
Hi Donald,
If you don't mind, I have two questions here regarding to database report:
(1) For node availability report, I also find something strange. This year node Availability is all 100%, although this month one is not. It doesn't make sense either, does it?
I have captured SQL statements from report.log for both reports. Those look similar except for the time range, which looks OK as well:
This month:
EXTRACT( epoch from ( 'Wed Feb 1 00:00:00 +0800 2012'::TIMESTAMP +
CAST( EXTRACT( DAY FROM 'Wed Feb 15 00:00:00 +0800 2012'::TIMESTAMP) ||
' days' as interval ) - 'Wed Feb 1 00:00:00 +0800 2012'::TIMESTAMP ) ) AS avail_total,
This year:
EXTRACT( epoch from ( 'Sun Jan 1 00:00:00 +0800 2012'::TIMESTAMP +
CAST( EXTRACT( DAY FROM 'Wed Feb 15 00:00:00 +0800 2012'::TIMESTAMP) ||
' days' as interval ) - 'Sun Jan 1 00:00:00 +0800 2012'::TIMESTAMP ) ) AS avail_total,
However, for this year, the result set of column duration_tally and average_duration are all 0; while for this month they have values. For the value of avail_total, both are 1296000.
How do you explain this? Pls take note one thing: my testing NMS was installed this month.
(2) The second one is about snmp interface availability: the report gives me negative percentage. Does it make sense? I have yet to study its SQL query.
Thx.
Best Regards
dj

dj he February 14, 2012 at 11:21 PM
It happens to many report sub-report templates. Is it right to change all of them?

Donald Desloge February 14, 2012 at 12:02 PM
I found out where it comes from and why just using the START_TIME would solve the issue. Turns out that the START_TIME_STRING uses a SimpleDateFormat object to format the date into a SQL friendly timestamp. In doing so it uses the following template.
"EEE MMM F HH:mm:ss Z yyyy"
The problem with that format is that the F stands for "Day of Week in Month" and not the actual "Day in Month". Change it to the following template and it should resolve the matter.
"EEE MMM d HH:mm:ss Z yyyy"
I will go ahead and update the report accordingly. Thanks again.

dj he February 14, 2012 at 12:55 AM
In SQL statement of the report template, replacing DS_START_TIME_STRING with DS_START_TIME will solve my problem. The side effect is hour and minute inputs no longer work.

dj he February 14, 2012 at 12:27 AM
The html input box "Report Time Range in Days" and drop-down list hour and minute work, but not the input box "Start Date".
the start date of database report, for example, "Availability by node", given to SQL statement is wrong.
On the web UI, I typed in "2012-02-12", however, in the report.log, the debug info shows
2012-02-13 16:32:41,074 DEBUG [13858055@qtp-27666092-4] JRJdbcQueryExecuter: SQL query string: SELECT
'Sun Feb 2 16:00:00 +0800 2012'::TIMESTAMP AS start,
'Sun Feb 2 16:00:00 +0800 2012'::TIMESTAMP + '1 Days'::INTERVAL AS end
Pls verify. I am using version 1.8.17.