*/
public FutureData<HistoricsStatus> status(DateTime start, DateTime end, String... sources) {
FutureData<HistoricsStatus> future = new FutureData<>();
URI uri = newParams().forURL(config.newAPIEndpointURI(STATUS));
POST request = config.http()
.POST(uri, new PageReader(newRequestCallback(future, new HistoricsStatus(), config)))
.form("start", MILLISECONDS.toSeconds(start.getMillis()))
.form("end", MILLISECONDS.toSeconds(end.getMillis()));
if (sources != null && sources.length > 0) {
StringBuilder b = new StringBuilder();
for (String source : sources) {