2014-03-22 07:45:02 -05:00
|
|
|
define([],
|
|
|
|
function() {
|
2014-04-06 03:47:14 -05:00
|
|
|
'use strict';
|
2014-03-22 07:45:02 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
create: function() {
|
|
|
|
return {
|
2014-07-07 12:04:22 -05:00
|
|
|
title: "",
|
|
|
|
tags: [],
|
|
|
|
style: "dark",
|
|
|
|
timezone: 'browser',
|
|
|
|
editable: true,
|
|
|
|
failover: false,
|
|
|
|
panel_hints: true,
|
|
|
|
rows: [],
|
|
|
|
pulldowns: [ { type: 'templating' }, { type: 'annotations' } ],
|
|
|
|
nav: [ { type: 'timepicker' } ],
|
2015-12-04 03:32:23 -06:00
|
|
|
time: {from: 'now-6h', to: 'now'},
|
2014-08-05 03:15:27 -05:00
|
|
|
templating: {
|
|
|
|
list: []
|
2014-07-07 12:04:22 -05:00
|
|
|
},
|
2014-08-27 10:58:49 -05:00
|
|
|
refresh: '10s',
|
2014-04-06 03:47:14 -05:00
|
|
|
};
|
2014-03-22 07:45:02 -05:00
|
|
|
}
|
2014-04-06 03:47:14 -05:00
|
|
|
};
|
2014-03-22 07:45:02 -05:00
|
|
|
});
|