2 |
16 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/org/all.js:
--------------------------------------------------------------------------------
1 | define([
2 | './org_users_ctrl',
3 | './profile_ctrl',
4 | './org_users_ctrl',
5 | './select_org_ctrl',
6 | './change_password_ctrl',
7 | './newOrgCtrl',
8 | './userInviteCtrl',
9 | './orgApiKeysCtrl',
10 | './orgDetailsCtrl',
11 | './prefs_control',
12 | ], function () {});
13 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/org/newOrgCtrl.js:
--------------------------------------------------------------------------------
1 | define([
2 | 'angular',
3 | 'app/core/config',
4 | ],
5 | function (angular, config) {
6 | 'use strict';
7 |
8 | var module = angular.module('grafana.controllers');
9 |
10 | module.controller('NewOrgCtrl', function($scope, $http, backendSrv, navModelSrv) {
11 |
12 | $scope.navModel = navModelSrv.getOrgNav(0);
13 | $scope.newOrg = {name: ''};
14 |
15 | $scope.createOrg = function() {
16 | backendSrv.post('/api/orgs/', $scope.newOrg).then(function(result) {
17 | backendSrv.post('/api/user/using/' + result.orgId).then(function() {
18 | window.location.href = config.appSubUrl + '/org';
19 | });
20 | });
21 | };
22 |
23 | });
24 | });
25 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/panel/all.js:
--------------------------------------------------------------------------------
1 | define([
2 | './panel_menu',
3 | './panel_directive',
4 | './solo_panel_ctrl',
5 | './query_ctrl',
6 | './panel_editor_tab',
7 | './query_editor_row',
8 | './query_troubleshooter',
9 | ], function () {});
10 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/panel/partials/soloPanel.html:
--------------------------------------------------------------------------------
1 |
5 |
6 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/panel/query_ctrl.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | import _ from 'lodash';
4 |
5 | export class QueryCtrl {
6 | target: any;
7 | datasource: any;
8 | panelCtrl: any;
9 | panel: any;
10 | hasRawMode: boolean;
11 | error: string;
12 | isLastQuery: boolean;
13 |
14 | constructor(public $scope, public $injector) {
15 | this.panel = this.panelCtrl.panel;
16 | this.isLastQuery = _.indexOf(this.panel.targets, this.target) === (this.panel.targets.length - 1);
17 | }
18 |
19 | refresh() {
20 | this.panelCtrl.refresh();
21 | }
22 |
23 | }
24 |
25 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/playlist/all.js:
--------------------------------------------------------------------------------
1 | define([
2 | './playlists_ctrl',
3 | './playlist_search',
4 | './playlist_srv',
5 | './playlist_edit_ctrl',
6 | './playlist_routes'
7 | ], function () {});
8 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/plugins/all.ts:
--------------------------------------------------------------------------------
1 | import './plugin_edit_ctrl';
2 | import './plugin_page_ctrl';
3 | import './plugin_list_ctrl';
4 | import './import_list/import_list';
5 | import './ds_edit_ctrl';
6 | import './ds_list_ctrl';
7 | import './datasource_srv';
8 | import './plugin_component';
9 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/plugins/partials/plugin_page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/snapshot/all.ts:
--------------------------------------------------------------------------------
1 | import './snapshot_ctrl';
2 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/features/templating/all.ts:
--------------------------------------------------------------------------------
1 | import './templateSrv';
2 | import './editor_ctrl';
3 |
4 | import {VariableSrv} from './variable_srv';
5 | import {IntervalVariable} from './interval_variable';
6 | import {QueryVariable} from './query_variable';
7 | import {DatasourceVariable} from './datasource_variable';
8 | import {CustomVariable} from './custom_variable';
9 | import {ConstantVariable} from './constant_variable';
10 | import {AdhocVariable} from './adhoc_variable';
11 |
12 | export {
13 | VariableSrv,
14 | IntervalVariable,
15 | QueryVariable,
16 | DatasourceVariable,
17 | CustomVariable,
18 | ConstantVariable,
19 | AdhocVariable,
20 | };
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/headers/common.d.ts:
--------------------------------------------------------------------------------
1 | declare var System: any;
2 |
3 | declare module 'eventemitter3' {
4 | var config: any;
5 | export default config;
6 | }
7 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/index.ts:
--------------------------------------------------------------------------------
1 | import app from './app';
2 | app.init();
3 |
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/partials/edit_json.html:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/partials/modal.html:
--------------------------------------------------------------------------------
1 |
5 |
10 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/app/testdata/datasource/module.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | import {TestDataDatasource} from './datasource';
4 | import {TestDataQueryCtrl} from './query_ctrl';
5 |
6 | class TestDataAnnotationsQueryCtrl {
7 | annotation: any;
8 |
9 | constructor() {
10 | }
11 |
12 | static template = '
test data
';
13 | }
14 |
15 |
16 | export {
17 | TestDataDatasource,
18 | TestDataDatasource as Datasource,
19 | TestDataQueryCtrl as QueryCtrl,
20 | TestDataAnnotationsQueryCtrl as AnnotationsQueryCtrl,
21 | };
22 |
23 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/app/testdata/datasource/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "Grafana TestDataDB",
4 | "id": "grafana-testdata-datasource",
5 |
6 | "metrics": true,
7 | "alerting": true,
8 | "annotations": true,
9 |
10 | "info": {
11 | "author": {
12 | "name": "Grafana Project",
13 | "url": "https://grafana.com"
14 | },
15 | "logos": {
16 | "small": "",
17 | "large": ""
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/app/testdata/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "app",
3 | "name": "Grafana TestData",
4 | "id": "testdata",
5 |
6 | "info": {
7 | "description": "Grafana test data app",
8 | "author": {
9 | "name": "Grafana Project",
10 | "url": "https://grafana.com"
11 | },
12 | "version": "1.0.17",
13 | "updated": "2016-09-26"
14 | },
15 |
16 | "includes": [
17 | {
18 | "type": "dashboard",
19 | "name": "TestData - Graph Last 1h",
20 | "path": "dashboards/graph_last_1h.json"
21 | },
22 | {
23 | "type": "dashboard",
24 | "name": "TestData - Alerts",
25 | "path": "dashboards/alerts.json"
26 | }
27 | ],
28 |
29 | "dependencies": {
30 | "grafanaVersion": "4.x.x"
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/README.md:
--------------------------------------------------------------------------------
1 | # CloudWatch Datasource - Native Plugin
2 |
3 | Grafana ships with **built in** support for CloudWatch. You just have to add it as a data source and you will be ready to build dashboards for you CloudWatch metrics.
4 |
5 | Read more about it here:
6 |
7 | [http://docs.grafana.org/datasources/cloudwatch/](http://docs.grafana.org/datasources/cloudwatch/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/datasource.d.ts:
--------------------------------------------------------------------------------
1 | declare var CloudWatchDatasource: any;
2 | export default CloudWatchDatasource;
3 |
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/img/amazon-web-services.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/img/amazon-web-services.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/module.ts:
--------------------------------------------------------------------------------
1 | import './query_parameter_ctrl';
2 |
3 | import CloudWatchDatasource from './datasource';
4 | import {CloudWatchQueryCtrl} from './query_ctrl';
5 | import {CloudWatchConfigCtrl} from './config_ctrl';
6 |
7 | class CloudWatchAnnotationsQueryCtrl {
8 | static templateUrl = 'partials/annotations.editor.html';
9 | }
10 |
11 | export {
12 | CloudWatchDatasource as Datasource,
13 | CloudWatchQueryCtrl as QueryCtrl,
14 | CloudWatchConfigCtrl as ConfigCtrl,
15 | CloudWatchAnnotationsQueryCtrl as AnnotationsQueryCtrl,
16 | };
17 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/partials/query.editor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "CloudWatch",
4 | "id": "cloudwatch",
5 |
6 | "metrics": true,
7 | "alerting": true,
8 | "annotations": true,
9 |
10 | "info": {
11 | "author": {
12 | "name": "Grafana Project",
13 | "url": "https://grafana.com"
14 | },
15 | "logos": {
16 | "small": "img/amazon-web-services.png",
17 | "large": "img/amazon-web-services.png"
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/cloudwatch/query_ctrl.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | import './query_parameter_ctrl';
4 | import {QueryCtrl} from 'app/plugins/sdk';
5 |
6 | export class CloudWatchQueryCtrl extends QueryCtrl {
7 | static templateUrl = 'partials/query.editor.html';
8 |
9 | aliasSyntax: string;
10 |
11 | /** @ngInject **/
12 | constructor($scope, $injector) {
13 | super($scope, $injector);
14 | this.aliasSyntax = '{{metric}} {{stat}} {{namespace}} {{region}} {{
}}';
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/elasticsearch/README.md:
--------------------------------------------------------------------------------
1 | # Elasticsearch Datasource - Native Plugin
2 |
3 | Grafana ships with **advanced support** for Elasticsearch. You can do many types of simple or complex elasticsearch queries to visualize logs or metrics stored in Elasticsearch. You can also annotate your graphs with log events stored in Elasticsearch.
4 |
5 | Read more about it here:
6 |
7 | [http://docs.grafana.org/datasources/elasticsearch/](http://docs.grafana.org/datasources/elasticsearch/)
8 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/elasticsearch/module.ts:
--------------------------------------------------------------------------------
1 | import {ElasticDatasource} from './datasource';
2 | import {ElasticQueryCtrl} from './query_ctrl';
3 | import {ElasticConfigCtrl} from './config_ctrl';
4 |
5 | class ElasticQueryOptionsCtrl {
6 | static templateUrl = 'partials/query.options.html';
7 | }
8 |
9 | class ElasticAnnotationsQueryCtrl {
10 | static templateUrl = 'partials/annotations.editor.html';
11 | }
12 |
13 | export {
14 | ElasticDatasource as Datasource,
15 | ElasticQueryCtrl as QueryCtrl,
16 | ElasticConfigCtrl as ConfigCtrl,
17 | ElasticQueryOptionsCtrl as QueryOptionsCtrl,
18 | ElasticAnnotationsQueryCtrl as AnnotationsQueryCtrl,
19 | };
20 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/elasticsearch/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "Elasticsearch",
4 | "id": "elasticsearch",
5 |
6 | "info": {
7 | "description": "Elasticsearch Data Source for Grafana",
8 | "author": {
9 | "name": "Grafana Project",
10 | "url": "https://grafana.com"
11 | },
12 | "keywords": ["elasticsearch"],
13 | "logos": {
14 | "small": "img/elasticsearch.svg",
15 | "large": "img/elasticsearch.svg"
16 | },
17 | "links": [
18 | {"name": "elastic.co", "url": "https://www.elastic.co/products/elasticsearch"}
19 | ],
20 | "version": "3.0.0"
21 | },
22 |
23 | "annotations": true,
24 | "metrics": true,
25 |
26 | "queryOptions": {
27 | "minInterval": true
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/elasticsearch/query_help.md:
--------------------------------------------------------------------------------
1 | #### Alias patterns
2 | - {{term fieldname}} = replaced with value of term group by
3 | - {{metric}} = replaced with metric name (ex. Average, Min, Max)
4 | - {{field}} = replaced with the metric field name
5 |
6 | #### Documentation links
7 |
8 | [Grafana's Elasticsearch Documentation](http://docs.grafana.org/features/datasources/elasticsearch)
9 |
10 | [Official Elasticsearch Documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html)
11 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/grafana-live/_plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "Grafana Live",
4 | "id": "grafana-live",
5 |
6 | "metrics": true
7 | }
8 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/grafana-live/module.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | import {GrafanaStreamDS} from './datasource';
4 | import {QueryCtrl} from 'app/plugins/sdk';
5 |
6 | class GrafanaQueryCtrl extends QueryCtrl {
7 | static templateUrl = 'partials/query.editor.html';
8 | }
9 |
10 | export {
11 | GrafanaStreamDS as Datasource,
12 | GrafanaQueryCtrl as QueryCtrl,
13 | };
14 |
15 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/grafana-live/partials/query.editor.html:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/grafana/README.md:
--------------------------------------------------------------------------------
1 | # Grafana Fake Data Datasource - Native Plugin
2 |
3 | This is the built in Fake Data Datasource that is used before any datasources are set up in your Grafana installation. It means you can create a graph without any data and still get an idea of what it would look like.
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/grafana/partials/query.editor.html:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/grafana/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "-- Grafana --",
4 | "id": "grafana",
5 |
6 | "builtIn": true,
7 | "annotations": true,
8 | "metrics": true
9 | }
10 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/README.md:
--------------------------------------------------------------------------------
1 | # Graphite Datasource - Native Plugin
2 |
3 | Grafana ships with **built in** support for Graphite (of course!).
4 |
5 | Grafana has an advanced Graphite query editor that lets you quickly navigate the metric space, add functions, change function parameters and much more. The editor can handle all types of graphite queries. It can even handle complex nested queries through the use of query references.
6 |
7 | Read more about it here:
8 |
9 | [http://docs.grafana.org/datasources/graphite/](http://docs.grafana.org/datasources/graphite/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/config_ctrl.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | export class GraphiteConfigCtrl {
4 | static templateUrl = 'public/app/plugins/datasource/graphite/partials/config.html';
5 | current: any;
6 |
7 | /** @ngInject */
8 | constructor($scope) {
9 | this.current.jsonData = this.current.jsonData || {};
10 | this.current.jsonData.graphiteVersion = this.current.jsonData.graphiteVersion || '0.9';
11 | }
12 |
13 | graphiteVersions = [
14 | {name: '0.9.x', value: '0.9'},
15 | {name: '1.0.x', value: '1.0'},
16 | {name: '1.1.x', value: '1.1'},
17 | ];
18 | }
19 |
20 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/gfunc.d.ts:
--------------------------------------------------------------------------------
1 | declare var test: any;
2 | export default test;
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/img/graphite_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/img/graphite_logo.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/module.ts:
--------------------------------------------------------------------------------
1 | import {GraphiteDatasource} from './datasource';
2 | import {GraphiteQueryCtrl} from './query_ctrl';
3 | import {GraphiteConfigCtrl} from './config_ctrl';
4 |
5 | class AnnotationsQueryCtrl {
6 | static templateUrl = 'partials/annotations.editor.html';
7 | }
8 |
9 | export {
10 | GraphiteDatasource as Datasource,
11 | GraphiteQueryCtrl as QueryCtrl,
12 | GraphiteConfigCtrl as ConfigCtrl,
13 | AnnotationsQueryCtrl as AnnotationsQueryCtrl,
14 | };
15 |
16 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/partials/annotations.editor.html:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/partials/config.html:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | Graphite details
7 |
8 |
19 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/graphite/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Graphite",
3 | "type": "datasource",
4 | "id": "graphite",
5 |
6 | "includes": [
7 | {"type": "dashboard", "name": "Graphite Carbon Metrics", "path": "dashboards/carbon_metrics.json"}
8 | ],
9 |
10 | "metrics": true,
11 | "alerting": true,
12 | "annotations": true,
13 |
14 | "queryOptions": {
15 | "maxDataPoints": true,
16 | "cacheTimeout": true
17 | },
18 |
19 | "info": {
20 | "author": {
21 | "name": "Grafana Project",
22 | "url": "https://grafana.com"
23 | },
24 | "logos": {
25 | "small": "img/graphite_logo.png",
26 | "large": "img/graphite_logo.png"
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/influxdb/influx_series.d.ts:
--------------------------------------------------------------------------------
1 | declare var test: any;
2 | export default test;
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/influxdb/module.ts:
--------------------------------------------------------------------------------
1 | import InfluxDatasource from './datasource';
2 | import {InfluxQueryCtrl} from './query_ctrl';
3 |
4 | class InfluxConfigCtrl {
5 | static templateUrl = 'partials/config.html';
6 | }
7 |
8 | class InfluxAnnotationsQueryCtrl {
9 | static templateUrl = 'partials/annotations.editor.html';
10 | }
11 |
12 | export {
13 | InfluxDatasource as Datasource,
14 | InfluxQueryCtrl as QueryCtrl,
15 | InfluxConfigCtrl as ConfigCtrl,
16 | InfluxAnnotationsQueryCtrl as AnnotationsQueryCtrl,
17 | };
18 |
19 |
20 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/influxdb/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "InfluxDB",
4 | "id": "influxdb",
5 |
6 | "defaultMatchFormat": "regex values",
7 | "metrics": true,
8 | "annotations": true,
9 | "alerting": true,
10 |
11 | "queryOptions": {
12 | "minInterval": true
13 | },
14 |
15 | "info": {
16 | "author": {
17 | "name": "Grafana Project",
18 | "url": "https://grafana.com"
19 | },
20 | "logos": {
21 | "small": "img/influxdb_logo.svg",
22 | "large": "img/influxdb_logo.svg"
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/influxdb/query_builder.d.ts:
--------------------------------------------------------------------------------
1 | declare var test: any;
2 | export default test;
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/mixed/README.md:
--------------------------------------------------------------------------------
1 | # Mixed Datasource - Native Plugin
2 |
3 | This is a **built in** datasource that allows you to mix different datasource on the same graph! You can enable this by selecting the built in -- Mixed -- data source. When selected this will allow you to specify data source on a per query basis. This will, for example, allow you to plot metrics from different Graphite servers on the same Graph or plot data from Elasticsearch alongside data from Prometheus. Mixing different data sources on the same graph works for any data source, even custom ones.
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/mixed/module.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | import {MixedDatasource} from './datasource';
4 | export {MixedDatasource, MixedDatasource as Datasource};
5 |
6 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/mixed/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "-- Mixed --",
4 | "id": "mixed",
5 |
6 | "builtIn": true,
7 | "mixed": true,
8 | "metrics": true,
9 |
10 | "queryOptions": {
11 | "minInterval": true
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/mysql/README.md:
--------------------------------------------------------------------------------
1 | # Grafana Fake Data Datasource - Native Plugin
2 |
3 | This is the built in Fake Data Datasource that is used before any datasources are set up in your Grafana installation. It means you can create a graph without any data and still get an idea of what it would look like.
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/mysql/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "MySQL",
4 | "id": "mysql",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/mysql_logo.svg",
13 | "large": "img/mysql_logo.svg"
14 | }
15 | },
16 |
17 | "alerting": true,
18 | "annotations": true,
19 | "metrics": true
20 | }
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/README.md:
--------------------------------------------------------------------------------
1 | # OpenTSDB Datasource - Native Plugin
2 |
3 | Grafana ships with **built in** support for OpenTSDB, a scalable, distributed time series database.
4 |
5 | Read more about it here:
6 |
7 | [http://docs.grafana.org/datasources/opentsdb/](http://docs.grafana.org/datasources/opentsdb/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/datasource.d.ts:
--------------------------------------------------------------------------------
1 | declare var OpenTsDatasource: any;
2 | export default OpenTsDatasource;
3 |
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/img/opentsdb_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/img/opentsdb_logo.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/module.ts:
--------------------------------------------------------------------------------
1 | import OpenTsDatasource from './datasource';
2 | import {OpenTsQueryCtrl} from './query_ctrl';
3 | import {OpenTsConfigCtrl} from './config_ctrl';
4 |
5 | class AnnotationsQueryCtrl {
6 | static templateUrl = 'partials/annotations.editor.html';
7 | }
8 |
9 | export {
10 | OpenTsDatasource as Datasource,
11 | OpenTsQueryCtrl as QueryCtrl,
12 | OpenTsConfigCtrl as ConfigCtrl,
13 | AnnotationsQueryCtrl as AnnotationsQueryCtrl
14 | };
15 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/partials/annotations.editor.html:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/opentsdb/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "OpenTSDB",
4 | "id": "opentsdb",
5 |
6 | "metrics": true,
7 | "defaultMatchFormat": "pipe",
8 | "annotations": true,
9 | "alerting": true,
10 |
11 | "info": {
12 | "author": {
13 | "name": "Grafana Project",
14 | "url": "https://grafana.com"
15 | },
16 | "logos": {
17 | "small": "img/opentsdb_logo.png",
18 | "large": "img/opentsdb_logo.png"
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/postgres/README.md:
--------------------------------------------------------------------------------
1 | # Grafana PostgreSQL Datasource - Native Plugin
2 |
3 | This is the built in PostgreSQL Datasource that is used to connect to PostgreSQL databases.
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/postgres/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "PostgreSQL",
4 | "id": "postgres",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/postgresql_logo.svg",
13 | "large": "img/postgresql_logo.svg"
14 | }
15 | },
16 |
17 | "alerting": true,
18 | "annotations": true,
19 | "metrics": true
20 | }
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/prometheus/README.md:
--------------------------------------------------------------------------------
1 | # Prometheus Datasource - Native Plugin
2 |
3 | Grafana ships with **built in** support for Prometheus, the open-source service monitoring system and time series database.
4 |
5 | Read more about it here:
6 |
7 | [http://docs.grafana.org/datasources/prometheus/](http://docs.grafana.org/datasources/prometheus/)
8 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/prometheus/metric_find_query.d.ts:
--------------------------------------------------------------------------------
1 | declare var test: any;
2 | export default test;
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/prometheus/module.ts:
--------------------------------------------------------------------------------
1 | import {PrometheusDatasource} from './datasource';
2 | import {PrometheusQueryCtrl} from './query_ctrl';
3 |
4 | class PrometheusConfigCtrl {
5 | static templateUrl = 'partials/config.html';
6 | }
7 |
8 | class PrometheusAnnotationsQueryCtrl {
9 | static templateUrl = 'partials/annotations.editor.html';
10 | }
11 |
12 | export {
13 | PrometheusDatasource as Datasource,
14 | PrometheusQueryCtrl as QueryCtrl,
15 | PrometheusConfigCtrl as ConfigCtrl,
16 | PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
17 | };
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/prometheus/partials/config.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
16 |
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/prometheus/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "datasource",
3 | "name": "Prometheus",
4 | "id": "prometheus",
5 |
6 | "includes": [
7 | {"type": "dashboard", "name": "Prometheus Stats", "path": "dashboards/prometheus_stats.json"},
8 | {"type": "dashboard", "name": "Grafana Stats", "path": "dashboards/grafana_stats.json"}
9 | ],
10 |
11 | "metrics": true,
12 | "alerting": true,
13 | "annotations": true,
14 |
15 | "info": {
16 | "author": {
17 | "name": "Grafana Project",
18 | "url": "https://grafana.com"
19 | },
20 | "logos": {
21 | "small": "img/prometheus_logo.svg",
22 | "large": "img/prometheus_logo.svg"
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/datasource/prometheus/snippets/prometheus.js:
--------------------------------------------------------------------------------
1 | // jshint ignore: start
2 | // jscs: disable
3 | ace.define("ace/snippets/prometheus",["require","exports","module"], function(require, exports, module) {
4 | "use strict";
5 |
6 | // exports.snippetText = "# rate\n\
7 | // snippet r\n\
8 | // rate(${1:metric}[${2:range}])\n\
9 | // ";
10 |
11 | exports.snippets = [
12 | {
13 | "content": "rate(${1:metric}[${2:range}])",
14 | "name": "rate()",
15 | "scope": "prometheus",
16 | "tabTrigger": "r"
17 | }
18 | ];
19 |
20 | exports.scope = "prometheus";
21 | });
22 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/alertlist/README.md:
--------------------------------------------------------------------------------
1 | # Alert List Panel - Native plugin
2 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/alertlist/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Alert List",
4 | "id": "alertlist",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-singlestat-panel.svg",
13 | "large": "img/icn-singlestat-panel.svg"
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/dashlist/README.md:
--------------------------------------------------------------------------------
1 | # Dashlist Panel - Native Plugin
2 |
3 | This Dashlist panel is **included** with Grafana.
4 |
5 | The dashboard list panel allows you to display dynamic links to other dashboards. The list can be configured to use starred dashboards, a search query and/or dashboard tags.
6 |
7 | Read more about it here:
8 |
9 | [http://docs.grafana.org/reference/dashlist/](http://docs.grafana.org/reference/dashlist/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/dashlist/module.html:
--------------------------------------------------------------------------------
1 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/dashlist/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Dashboard list",
4 | "id": "dashlist",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-dashlist-panel.svg",
13 | "large": "img/icn-dashlist-panel.svg"
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/gettingstarted/README.md:
--------------------------------------------------------------------------------
1 | # Plugin List Panel - Native Plugin
2 |
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/gettingstarted/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Getting Started",
4 | "id": "gettingstarted",
5 |
6 | "hideFromList": true,
7 |
8 | "info": {
9 | "author": {
10 | "name": "Grafana Project",
11 | "url": "https://grafana.com"
12 | },
13 | "logos": {
14 | "small": "img/icn-dashlist-panel.svg",
15 | "large": "img/icn-dashlist-panel.svg"
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/graph/README.md:
--------------------------------------------------------------------------------
1 | # Graph Panel - Native Plugin
2 |
3 | The Graph is the main graph panel and is **included** with Grafana. It provides a very rich set of graphing options.
4 |
5 | Read more about it here:
6 |
7 | [http://docs.grafana.org/reference/graph/](http://docs.grafana.org/reference/graph/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/graph/graph_tooltip.d.ts:
--------------------------------------------------------------------------------
1 | declare var GraphTooltip: any;
2 | export default GraphTooltip;
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/graph/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Graph",
4 | "id": "graph",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-graph-panel.svg",
13 | "large": "img/icn-graph-panel.svg"
14 | }
15 | }
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/graph/template.ts:
--------------------------------------------------------------------------------
1 | var template = `
2 |
3 |
4 |
5 |
6 | {{ctrl.dataWarning.title}}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | `;
19 |
20 | export default template;
21 |
22 |
23 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/heatmap/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/heatmap/README.md
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/heatmap/display_editor.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 | export class HeatmapDisplayEditorCtrl {
4 | panel: any;
5 | panelCtrl: any;
6 |
7 | /** @ngInject */
8 | constructor($scope) {
9 | $scope.editor = this;
10 | this.panelCtrl = $scope.ctrl;
11 | this.panel = this.panelCtrl.panel;
12 |
13 | this.panelCtrl.render();
14 | }
15 | }
16 |
17 | /** @ngInject */
18 | export function heatmapDisplayEditor() {
19 | 'use strict';
20 | return {
21 | restrict: 'E',
22 | scope: true,
23 | templateUrl: 'public/app/plugins/panel/heatmap/partials/display_editor.html',
24 | controller: HeatmapDisplayEditorCtrl,
25 | };
26 | }
27 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/heatmap/module.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {{ctrl.dataWarning.title}}
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/heatmap/module.ts:
--------------------------------------------------------------------------------
1 | import './color_legend';
2 | import {HeatmapCtrl} from './heatmap_ctrl';
3 |
4 | export {
5 | HeatmapCtrl as PanelCtrl
6 | };
7 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/heatmap/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Heatmap",
4 | "id": "heatmap",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-heatmap-panel.svg",
13 | "large": "img/icn-heatmap-panel.svg"
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/pluginlist/README.md:
--------------------------------------------------------------------------------
1 | # Plugin List Panel - Native Plugin
2 |
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/pluginlist/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Plugin list",
4 | "id": "pluginlist",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-dashlist-panel.svg",
13 | "large": "img/icn-dashlist-panel.svg"
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/singlestat/README.md:
--------------------------------------------------------------------------------
1 | # Singlestat Panel - Native Plugin
2 |
3 | The Singlestat Panel is **included** with Grafana.
4 |
5 | The Singlestat Panel allows you to show the one main summary stat of a SINGLE series. It reduces the series into a single number (by looking at the max, min, average, or sum of values in the series). Singlestat also provides thresholds to color the stat or the Panel background. It can also translate the single number into a text value, and show a sparkline summary of the series.
6 |
7 | Read more about it here:
8 |
9 | [http://docs.grafana.org/reference/singlestat/](http://docs.grafana.org/reference/singlestat/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/singlestat/module.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/singlestat/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Singlestat",
4 | "id": "singlestat",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-singlestat-panel.svg",
13 | "large": "img/icn-singlestat-panel.svg"
14 | }
15 | }
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/table/README.md:
--------------------------------------------------------------------------------
1 | # Table Panel - Native Plugin
2 |
3 | The Table Panel is **included** with Grafana.
4 |
5 | The table panel is very flexible, supporting both multiple modes for time series as well as for table, annotation and raw JSON data. It also provides date formatting and value formatting and coloring options.
6 |
7 | Check out the [Table Panel Showcase in the Grafana Playground](http://play.grafana.org/dashboard/db/table-panel-showcase) or read more about it here:
8 |
9 | [http://docs.grafana.org/reference/table_panel/](http://docs.grafana.org/reference/table_panel/)
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/table/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Table",
4 | "id": "table",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-table-panel.svg",
13 | "large": "img/icn-table-panel.svg"
14 | }
15 | }
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/text/README.md:
--------------------------------------------------------------------------------
1 | # Text Panel - Native Plugin
2 |
3 | The Text Panel is **included** with Grafana.
4 |
5 | The Text Panel is a very simple panel that displays text. The source text is written in the Markdown syntax meaning you can format the text. Read [GitHub's Mastering Markdown](https://guides.github.com/features/mastering-markdown/) to learn more.
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/text/module.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/text/plugin.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "panel",
3 | "name": "Text",
4 | "id": "text",
5 |
6 | "info": {
7 | "author": {
8 | "name": "Grafana Project",
9 | "url": "https://grafana.com"
10 | },
11 | "logos": {
12 | "small": "img/icn-text-panel.svg",
13 | "large": "img/icn-text-panel.svg"
14 | }
15 | }
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/unknown/module.html:
--------------------------------------------------------------------------------
1 |
2 | Unknown panel type: {{ctrl.panel.type}}
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/panel/unknown/module.ts:
--------------------------------------------------------------------------------
1 |
2 | import {PanelCtrl} from 'app/features/panel/panel_ctrl';
3 |
4 | export class UnknownPanelCtrl extends PanelCtrl {
5 | static templateUrl = 'public/app/plugins/panel/unknown/module.html';
6 |
7 | /** @ngInject */
8 | constructor($scope, $injector) {
9 | super($scope, $injector);
10 | }
11 | }
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/app/plugins/sdk.ts:
--------------------------------------------------------------------------------
1 | import {PanelCtrl} from 'app/features/panel/panel_ctrl';
2 | import {MetricsPanelCtrl} from 'app/features/panel/metrics_panel_ctrl';
3 | import {QueryCtrl} from 'app/features/panel/query_ctrl';
4 | import {alertTab} from 'app/features/alerting/alert_tab_ctrl';
5 | import {loadPluginCss} from 'app/features/plugins/plugin_loader';
6 |
7 | export {
8 | PanelCtrl,
9 | MetricsPanelCtrl,
10 | QueryCtrl,
11 | alertTab,
12 | loadPluginCss,
13 | };
14 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/build/dark.cb713f0c8ee22a18f86f.js:
--------------------------------------------------------------------------------
1 | webpackJsonp([7],{789:function(n,c){}},[789]);
2 | //# sourceMappingURL=dark.cb713f0c8ee22a18f86f.js.map
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/build/dark.cb713f0c8ee22a18f86f.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["webpack:///dark.cb713f0c8ee22a18f86f.js"],"names":["webpackJsonp","789","module","exports"],"mappings":"AAAAA,cAAc,IAERC,IACA,SAAUC,EAAQC,OAMrB","file":"dark.cb713f0c8ee22a18f86f.js","sourcesContent":["webpackJsonp([7],{\n\n/***/ 789:\n/***/ (function(module, exports) {\n\n// removed by extract-text-webpack-plugin\n\n/***/ })\n\n},[789]);\n\n\n// WEBPACK FOOTER //\n// dark.cb713f0c8ee22a18f86f.js"],"sourceRoot":""}
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/build/grafana.dark.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"grafana.dark.css","sourceRoot":""}
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/build/grafana.light.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":[],"names":[],"mappings":"","file":"grafana.light.css","sourceRoot":""}
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/build/light.3e01ac5b4f74b4cc68d5.js:
--------------------------------------------------------------------------------
1 | webpackJsonp([6],{790:function(n,c){}},[790]);
2 | //# sourceMappingURL=light.3e01ac5b4f74b4cc68d5.js.map
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/build/light.3e01ac5b4f74b4cc68d5.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["webpack:///light.3e01ac5b4f74b4cc68d5.js"],"names":["webpackJsonp","790","module","exports"],"mappings":"AAAAA,cAAc,IAERC,IACA,SAAUC,EAAQC,OAMrB","file":"light.3e01ac5b4f74b4cc68d5.js","sourcesContent":["webpackJsonp([6],{\n\n/***/ 790:\n/***/ (function(module, exports) {\n\n// removed by extract-text-webpack-plugin\n\n/***/ })\n\n},[790]);\n\n\n// WEBPACK FOOTER //\n// light.3e01ac5b4f74b4cc68d5.js"],"sourceRoot":""}
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/emails/README.md:
--------------------------------------------------------------------------------
1 |
2 | html files in this folder are generated from templates and build system in repo_root/emails
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/grafana-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/grafana-icons.eot
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/grafana-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/grafana-icons.ttf
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/grafana-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/grafana-icons.woff
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/59ZRklaO5bWGqF5A9baEERJtnKITppOI_IvcXXDNrsc.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/59ZRklaO5bWGqF5A9baEERJtnKITppOI_IvcXXDNrsc.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTRWV49_lSm1NYrwo-zkhivY.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTRWV49_lSm1NYrwo-zkhivY.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTT0LW-43aMEzIO6XUTLjad8.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTT0LW-43aMEzIO6XUTLjad8.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTZX5f-9o1vgP2EXwfjgl7AY.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTZX5f-9o1vgP2EXwfjgl7AY.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTa-j2U0lmluP9RWlSytm3ho.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTa-j2U0lmluP9RWlSytm3ho.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTaaRobkAwv3vxw3jMhVENGA.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTaaRobkAwv3vxw3jMhVENGA.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTf8zf_FOSsgRmwsS7Aa9k2w.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/DXI1ORHCpsQm3Vp6mXoaTf8zf_FOSsgRmwsS7Aa9k2w.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/K88pR3goAWT7BTt32Z01mxJtnKITppOI_IvcXXDNrsc.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/K88pR3goAWT7BTt32Z01mxJtnKITppOI_IvcXXDNrsc.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/LWCjsQkB6EMdfHrEVqA1KRJtnKITppOI_IvcXXDNrsc.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/LWCjsQkB6EMdfHrEVqA1KRJtnKITppOI_IvcXXDNrsc.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNShWV49_lSm1NYrwo-zkhivY.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNShWV49_lSm1NYrwo-zkhivY.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSj0LW-43aMEzIO6XUTLjad8.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSj0LW-43aMEzIO6XUTLjad8.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSpX5f-9o1vgP2EXwfjgl7AY.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSpX5f-9o1vgP2EXwfjgl7AY.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSq-j2U0lmluP9RWlSytm3ho.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSq-j2U0lmluP9RWlSytm3ho.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSqaRobkAwv3vxw3jMhVENGA.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSqaRobkAwv3vxw3jMhVENGA.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSugdm0LZdjqr5-oayXSOefg.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSugdm0LZdjqr5-oayXSOefg.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSv8zf_FOSsgRmwsS7Aa9k2w.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/MTP_ySUJH_bn48VBG8sNSv8zf_FOSsgRmwsS7Aa9k2w.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/RjgO7rYTmqiVp7vzi-Q5URJtnKITppOI_IvcXXDNrsc.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/RjgO7rYTmqiVp7vzi-Q5URJtnKITppOI_IvcXXDNrsc.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzBWV49_lSm1NYrwo-zkhivY.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzBWV49_lSm1NYrwo-zkhivY.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzD0LW-43aMEzIO6XUTLjad8.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzD0LW-43aMEzIO6XUTLjad8.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzJX5f-9o1vgP2EXwfjgl7AY.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzJX5f-9o1vgP2EXwfjgl7AY.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzK-j2U0lmluP9RWlSytm3ho.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzK-j2U0lmluP9RWlSytm3ho.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzKaRobkAwv3vxw3jMhVENGA.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzKaRobkAwv3vxw3jMhVENGA.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzOgdm0LZdjqr5-oayXSOefg.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzOgdm0LZdjqr5-oayXSOefg.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzP8zf_FOSsgRmwsS7Aa9k2w.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/k3k702ZOKiLJc3WVjuplzP8zf_FOSsgRmwsS7Aa9k2w.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/u-WUoqrET9fUeobQW7jkRRJtnKITppOI_IvcXXDNrsc.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/u-WUoqrET9fUeobQW7jkRRJtnKITppOI_IvcXXDNrsc.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBiYE0-AqJ3nfInTTiDXDjU4.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBiYE0-AqJ3nfInTTiDXDjU4.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBjTOQ_MqJVwkKsUn0wKzc2I.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBjTOQ_MqJVwkKsUn0wKzc2I.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBjUj_cnvWIuuBMVgbX098Mw.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBjUj_cnvWIuuBMVgbX098Mw.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBkbcKLIaa1LC45dFaAfauRA.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBkbcKLIaa1LC45dFaAfauRA.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBmo_sUJ8uO4YLWRInS22T3Y.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBmo_sUJ8uO4YLWRInS22T3Y.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBo4P5ICox8Kq3LLUNMylGO4.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBo4P5ICox8Kq3LLUNMylGO4.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBr6up8jxqWt8HVA3mDhkV_0.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xjAJXh38I15wypJXxuGMBr6up8jxqWt8HVA3mDhkV_0.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xozscpT2726on7jbcb_pAhJtnKITppOI_IvcXXDNrsc.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/fonts/opensans/xozscpT2726on7jbcb_pAhJtnKITppOI_IvcXXDNrsc.woff2
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/CopyQuery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/CopyQuery.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/alert_howto_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/alert_howto_new.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/angle_gradient_light_rev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/angle_gradient_light_rev.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/angle_gradient_rev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/angle_gradient_rev.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/background_tease.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/background_tease.jpg
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/check_radio_sheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/check_radio_sheet.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/checkbox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/checkbox.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/checkbox_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/checkbox_white.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/cubes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/cubes.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/envelope.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/envelope.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/fav32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/fav32.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/kibana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/kibana.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/light.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/load.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/load.gif
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/load_big.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/load_big.gif
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/logo_transparent_200x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/logo_transparent_200x.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/logo_transparent_200x75.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/logo_transparent_200x75.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/logo_transparent_400x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/logo_transparent_400x.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/mixed_styles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/mixed_styles.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/page_header_line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/page_header_line.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/small.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/transparent.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/user_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/axzxs2001/OcelotSample/d97ba93565d104ede6bf9502dd7463adbc34a3ec/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/img/user_profile.png
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /
3 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/_font_awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "./font-awesome/variables";
7 | @import "./font-awesome/mixins";
8 | @import "./font-awesome/path";
9 | @import "./font-awesome/core";
10 | @import "./font-awesome/larger";
11 | @import "./font-awesome/fixed-width";
12 | @import "./font-awesome/list";
13 | @import "./font-awesome/bordered-pulled";
14 | @import "./font-awesome/animated";
15 | @import "./font-awesome/rotated-flipped";
16 | @import "./font-awesome/stacked";
17 | @import "./font-awesome/icons";
18 | @import "./font-awesome/screen-reader";
19 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/_grid.scss:
--------------------------------------------------------------------------------
1 |
2 | // Container widths
3 | //
4 | // Set the container width, and override it for fixed navbars in media queries.
5 |
6 | .container {
7 | @include make-container();
8 | @include make-container-max-widths();
9 | }
10 |
11 | // Fluid container
12 | //
13 | // Utilizes the mixin meant for fixed width containers, but without any defined
14 | // width for fluid, full width layouts.
15 |
16 | .container-fluid {
17 | @include make-container();
18 | }
19 |
20 | // Row
21 | //
22 | // Rows contain and clear the floats of your columns.
23 |
24 | .row {
25 | @include make-row();
26 | }
27 |
28 | // Columns
29 | //
30 | // Common styles for small and large grid columns
31 |
32 | @include make-grid-columns();
33 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .#{$fa-css-prefix}-pull-left { float: left; }
11 | .#{$fa-css-prefix}-pull-right { float: right; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .#{$fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only(); }
5 | .sr-only-focusable { @include sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/base/font-awesome/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_footer.scss:
--------------------------------------------------------------------------------
1 | .page-dashboard .footer {
2 | display: none;
3 | }
4 |
5 | .footer {
6 | color: $footer-link-color;
7 | padding: 5rem 0 1rem 0;
8 | font-size: $font-size-xs;
9 | width: 98%; /* was causing horiz scrollbars - need to examine */
10 |
11 | a {
12 | color: $footer-link-color;
13 |
14 | &:hover {
15 | color: $footer-link-hover;
16 | }
17 | }
18 |
19 | ul {
20 | list-style: none;
21 | }
22 |
23 | li {
24 | display: inline-block;
25 | padding-right: 2px;
26 | &::after {
27 | content: ' | ';
28 | padding-left: 2px;
29 | }
30 | }
31 |
32 | li:last-child {
33 | &::after {
34 | padding-left: 0;
35 | content: '';
36 | }
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_icon-picker.scss:
--------------------------------------------------------------------------------
1 | .gf-icon-picker {
2 | width: 400px;
3 | height: 450px;
4 |
5 | .icon-filter {
6 | padding-bottom: 10px;
7 | margin: auto;
8 | width: 50%;
9 | }
10 |
11 | .icon-container {
12 | max-height: 350px;
13 | overflow: auto;
14 |
15 | .gf-event-icon {
16 | margin: 0.4rem;
17 | height: 1.5rem;
18 | }
19 | }
20 | }
21 |
22 | .gf-icon-picker-button {
23 | .gf-event-icon {
24 | height: 1.2rem;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_old_stuff.scss:
--------------------------------------------------------------------------------
1 |
2 | .editor-row {
3 | vertical-align: top;
4 | }
5 |
6 | .section {
7 | margin-right: 3rem;
8 | vertical-align: top;
9 | display: inline-block;
10 | }
11 |
12 | div.editor-option {
13 | vertical-align: top;
14 | display: inline-block;
15 | margin-right: 10px;
16 | }
17 |
18 | div.editor-option label {
19 | display: block;
20 | }
21 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_panel_alertlist.scss:
--------------------------------------------------------------------------------
1 | .panel-alert-list {
2 | overflow-y: auto;
3 | }
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_panel_dashlist.scss:
--------------------------------------------------------------------------------
1 | .dashlist-section-header {
2 | margin-bottom: $spacer;
3 | color: $text-color-weak;
4 | }
5 |
6 | .dashlist-section {
7 | margin-bottom: $spacer;
8 | }
9 |
10 | .dashlist-link {
11 | display: block;
12 | margin: 5px;
13 | padding: 7px;
14 | background-color: $tight-form-bg;
15 | .fa {
16 | float: right;
17 | padding-top: 3px;
18 | }
19 | .fa-star {
20 | color: $orange;
21 | }
22 |
23 | &:hover {
24 | background-color: $tight-form-func-bg;
25 | }
26 | }
27 |
28 |
29 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_panel_text.scss:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_query_part.scss:
--------------------------------------------------------------------------------
1 |
2 | .query-part {
3 | background-color: $input-bg !important;
4 |
5 | &.show-function-controls {
6 | padding-top: 5px;
7 | min-width: 100px;
8 | text-align: center;
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/components/_typeahead.scss:
--------------------------------------------------------------------------------
1 |
2 | // typeahead max height
3 | .typeahead {
4 | max-height: 300px;
5 | overflow-y: auto;
6 | }
7 |
8 | .typeahead strong {
9 | color: $yellow;
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/fonts.scss:
--------------------------------------------------------------------------------
1 | @import "base/fonts";
2 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/grafana.dark.scss:
--------------------------------------------------------------------------------
1 | @import "variables";
2 | @import "variables.dark";
3 | @import "grafana";
4 |
5 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/grafana.light.scss:
--------------------------------------------------------------------------------
1 | @import "variables";
2 | @import "variables.light";
3 | @import "grafana";
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/layout/_lists.scss:
--------------------------------------------------------------------------------
1 |
2 | .ui-list {
3 | margin: 0;
4 | padding: 0;
5 | list-style: none;
6 |
7 | > li {
8 | margin-bottom: 0.3125rem;
9 |
10 | &:last-child {
11 | margin-bottom: 0;
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/pages/_admin.scss:
--------------------------------------------------------------------------------
1 |
2 | .admin-settings-section {
3 | color: $variable;
4 | font-weight: bold;
5 | }
6 |
7 | td.admin-settings-key {
8 | padding-left: 20px;
9 | }
10 |
11 | .admin-list-table {
12 | margin-bottom: 20px;
13 | }
14 |
15 | .admin-list-paging {
16 | float: right;
17 | li {
18 | display: inline-block;
19 | padding-left: 10px;
20 | margin-bottom: 5px;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/pages/_signup.scss:
--------------------------------------------------------------------------------
1 | .signup-page-container {
2 | position: fixed;
3 | top: 0;
4 | left: 0;
5 | right: 0;
6 | bottom: 0;
7 | height: 100%;
8 | width: 100%;
9 | background-image: url(/img/background_tease.jpg);
10 |
11 | .signup-logo-container {
12 | width: 150px;
13 | margin: 0 auto;
14 | padding: 80px 0;
15 | }
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/pages/_styleguide.scss:
--------------------------------------------------------------------------------
1 | .style-guide-color-card {
2 | list-style: none;
3 | margin: 0;
4 | padding: $spacer;
5 | width: 100%;
6 | text-align: left;
7 | text-shadow: 0 0 8px #fff;
8 | color: $black;
9 | font-size: $font-size-sm;
10 | }
11 |
12 | .color-card-body-bg { background-color: $body-bg; }
13 | .color-card-page-bg { background-color: $page-bg; }
14 | .color-card-gray { background-color: $gray-1; }
15 |
16 | .style-guide-button-list {
17 | padding: $spacer;
18 | button {
19 | display: block;
20 | margin: 0 $spacer $spacer 0;
21 | }
22 | }
23 |
24 | .style-guide-icon-list {
25 | font-size: 1.8em;
26 | text-align: center;
27 | }
28 |
29 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/utils/_angular.scss:
--------------------------------------------------------------------------------
1 |
2 |
3 | [ng\:cloak], [ng-cloak], .ng-cloak {
4 | display: none !important;
5 | }
6 |
7 |
8 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/utils/_validation.scss:
--------------------------------------------------------------------------------
1 | input[type=text].ng-dirty.ng-invalid {
2 | }
3 |
4 | input.validation-error,
5 | input.ng-dirty.ng-invalid {
6 | box-shadow: inset 0 0px 5px $red;
7 | }
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/sass/utils/_widths.scss:
--------------------------------------------------------------------------------
1 |
2 |
3 | .max-width { width: 100%; }
4 | .width-auto { width: auto; }
5 |
6 | // widths
7 | @for $i from 1 through 30 {
8 | .width-#{$i} {
9 | width: ($spacer * $i) - $gf-form-margin !important;
10 | }
11 | }
12 |
13 | @for $i from 1 through 30 {
14 | .max-width-#{$i} {
15 | max-width: ($spacer * $i) - $gf-form-margin !important;
16 | flex-grow: 1;
17 | }
18 | }
19 |
20 | @for $i from 1 through 30 {
21 | .offset-width-#{$i} {
22 | margin-left: ($spacer * $i) !important;
23 | }
24 | }
25 |
26 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/test/core/utils/flatten_specs.ts:
--------------------------------------------------------------------------------
1 | import {describe, it, expect} from 'test/lib/common';
2 |
3 | import flatten from 'app/core/utils/flatten';
4 |
5 | describe("flatten", () => {
6 |
7 | it('should return flatten object', () => {
8 | var flattened = flatten({
9 | level1: 'level1-value',
10 | deeper: {
11 | level2: 'level2-value',
12 | deeper: {
13 | level3: 'level3-value'
14 | }
15 | }
16 | }, null);
17 |
18 | expect(flattened['level1']).to.be('level1-value');
19 | expect(flattened['deeper.level2']).to.be('level2-value');
20 | expect(flattened['deeper.deeper.level3']).to.be('level3-value');
21 | });
22 |
23 | });
24 |
25 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/test/lib/common.ts:
--------------------------------------------------------------------------------
1 | var _global = (window);
2 | var beforeEach = _global.beforeEach;
3 | var afterEach = _global.afterEach;
4 | var before = _global.before;
5 | var describe = _global.describe;
6 | var it = _global.it;
7 | var sinon = _global.sinon;
8 | var expect = _global.expect;
9 |
10 | var angularMocks = {
11 | module: _global.module,
12 | inject: _global.inject,
13 | };
14 |
15 | export {
16 | beforeEach,
17 | afterEach,
18 | before,
19 | describe,
20 | it,
21 | sinon,
22 | expect,
23 | angularMocks,
24 | };
25 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/test/mocks/dashboard-mock.js:
--------------------------------------------------------------------------------
1 | define([],
2 | function() {
3 | 'use strict';
4 |
5 | return {
6 | create: function() {
7 | return {
8 | title: "",
9 | tags: [],
10 | style: "dark",
11 | timezone: 'browser',
12 | editable: true,
13 | failover: false,
14 | panel_hints: true,
15 | rows: [],
16 | pulldowns: [ { type: 'templating' }, { type: 'annotations' } ],
17 | nav: [ { type: 'timepicker' } ],
18 | time: {from: 'now-6h', to: 'now'},
19 | templating: {
20 | list: []
21 | },
22 | refresh: '10s',
23 | };
24 | }
25 | };
26 | });
27 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/test/specs/app_specs.ts:
--------------------------------------------------------------------------------
1 | import {describe, it, expect} from 'test/lib/common';
2 |
3 | import {GrafanaApp} from 'app/app';
4 |
5 | describe('GrafanaApp', () => {
6 |
7 | var app = new GrafanaApp();
8 |
9 | it('can call inits', () => {
10 | expect(app).to.not.be(null);
11 | });
12 | });
13 |
14 |
15 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/test/specs/helpers.d.ts:
--------------------------------------------------------------------------------
1 | declare let helpers: any;
2 | export default helpers;
3 |
4 |
5 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/vendor/d3/d3.js:
--------------------------------------------------------------------------------
1 | // Import main D3.js module and combine it with another
2 | var d3 = Object.assign({}, require('./d3.v4.min.js'), require('./d3-scale-chromatic.min.js'));
3 | module.exports = d3;
4 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/public/vendor/plugin-text/text.js:
--------------------------------------------------------------------------------
1 | /*
2 | Text plugin
3 | */
4 | exports.translate = function(load) {
5 | load.metadata.format = 'amd';
6 | return 'def' + 'ine(function() {\nreturn "' + load.source
7 | .replace(/(["\\])/g, '\\$1')
8 | .replace(/[\f]/g, "\\f")
9 | .replace(/[\b]/g, "\\b")
10 | .replace(/[\n]/g, "\\n")
11 | .replace(/[\t]/g, "\\t")
12 | .replace(/[\r]/g, "\\r")
13 | .replace(/[\u2028]/g, "\\u2028")
14 | .replace(/[\u2029]/g, "\\u2029")
15 | + '";\n});';
16 | }
17 |
--------------------------------------------------------------------------------
/OcelotSample/工具和文档/Metrics/grafana-4.6.2/scripts/trigger_docker_build.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | _circle_token=$1
4 | _grafana_version=$2
5 |
6 | trigger_build_url=https://circleci.com/api/v1/project/grafana/grafana-docker/tree/master?circle-token=${_circle_token}
7 |
8 | post_data=$(cat <