grafana/public/test/mocks/dashboard-mock.js

27 lines
534 B
JavaScript
Raw Normal View History

2014-03-22 07:45:02 -05:00
define([],
function() {
'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' } ],
time: {from: 'now-6h', to: 'now'},
templating: {
list: []
2014-07-07 12:04:22 -05:00
},
refresh: '10s',
};
2014-03-22 07:45:02 -05:00
}
};
2014-03-22 07:45:02 -05:00
});