* allowed see RRDTool's <code>rrdfetch</code> man page.<p>
* @return An array of two longs representing starting and ending timestamp in seconds since epoch.
* @throws RrdException Thrown if any input time specification is invalid.
*/
public static long[] getTimestamps(final String atStyleTimeSpec1, final String atStyleTimeSpec2) throws RrdException {
final TimeSpec timeSpec1 = new TimeParser(atStyleTimeSpec1).parse();
final TimeSpec timeSpec2 = new TimeParser(atStyleTimeSpec2).parse();
return TimeSpec.getTimestamps(timeSpec1, timeSpec2);
}