mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
27 lines
534 B
JavaScript
27 lines
534 B
JavaScript
define([],
|
|
function() {
|
|
'use strict';
|
|
|
|
return {
|
|
create: function() {
|
|
return {
|
|
title: "",
|
|
tags: [],
|
|
style: "dark",
|
|
timezone: 'browser',
|
|
editable: true,
|
|
failover: false,
|
|
panel_hints: true,
|
|
rows: [],
|
|
pulldowns: [ { type: 'templating' }, { type: 'annotations' } ],
|
|
nav: [ { type: 'timepicker' } ],
|
|
time: {from: 'now-6h', to: 'now'},
|
|
templating: {
|
|
list: []
|
|
},
|
|
refresh: '10s',
|
|
};
|
|
}
|
|
};
|
|
});
|