Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
27608895
Unverified
Commit
27608895
authored
May 31, 2020
by
Ryan McKinley
Committed by
GitHub
May 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chore: cleanup after previous commits)
parent
53b9f325
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
18 deletions
+4
-18
public/app/plugins/datasource/mssql/partials/query.editor.html
+0
-4
public/app/plugins/datasource/mssql/query_ctrl.ts
+1
-1
public/app/plugins/datasource/mysql/query_ctrl.ts
+1
-1
public/app/plugins/datasource/postgres/query_ctrl.ts
+1
-2
public/app/plugins/datasource/stackdriver/components/Help.tsx
+1
-1
public/app/plugins/panel/text2/module.tsx
+0
-9
No files found.
public/app/plugins/datasource/mssql/partials/query.editor.html
View file @
27608895
...
...
@@ -31,10 +31,6 @@
</div>
</div>
<div
class=
"gf-form"
ng-show=
"ctrl.showLastQuerySQL"
>
<pre
class=
"gf-form-pre"
>
{{ctrl.lastQueryMeta.sql}}
</pre>
</div>
<div
class=
"gf-form"
ng-show=
"ctrl.showHelp"
>
<pre
class=
"gf-form-pre alert alert-info"
>
Time series:
- return column named time (in UTC), as a unix time stamp or any sql native date data type. You can use the macros below.
...
...
public/app/plugins/datasource/mssql/query_ctrl.ts
View file @
27608895
...
...
@@ -31,7 +31,7 @@ export class MssqlQueryCtrl extends QueryCtrl {
formats
:
any
[];
target
:
MssqlQuery
;
lastQueryError
:
string
;
lastQueryError
:
string
|
null
;
showHelp
:
boolean
;
/** @ngInject */
...
...
public/app/plugins/datasource/mysql/query_ctrl.ts
View file @
27608895
...
...
@@ -29,7 +29,7 @@ export class MysqlQueryCtrl extends QueryCtrl {
static
templateUrl
=
'partials/query.editor.html'
;
formats
:
any
[];
lastQueryError
:
string
;
lastQueryError
:
string
|
null
;
showHelp
:
boolean
;
queryModel
:
MysqlQuery
;
...
...
public/app/plugins/datasource/postgres/query_ctrl.ts
View file @
27608895
...
...
@@ -28,11 +28,10 @@ WHERE
export
class
PostgresQueryCtrl
extends
QueryCtrl
{
static
templateUrl
=
'partials/query.editor.html'
;
showLastQuerySQL
:
boolean
;
formats
:
any
[];
queryModel
:
PostgresQuery
;
metaBuilder
:
PostgresMetaQuery
;
lastQueryError
:
string
;
lastQueryError
:
string
|
null
;
showHelp
:
boolean
;
tableSegment
:
any
;
whereAdd
:
any
;
...
...
public/app/plugins/datasource/stackdriver/components/Help.tsx
View file @
27608895
...
...
@@ -4,7 +4,7 @@ import { Icon } from '@grafana/ui';
export
interface
Props
{
rawQuery
:
string
;
lastQueryError
:
string
;
lastQueryError
?
:
string
;
metricDescriptor
?:
MetricDescriptor
;
}
...
...
public/app/plugins/panel/text2/module.tsx
View file @
27608895
...
...
@@ -19,15 +19,6 @@ export const plugin = new PanelPlugin<TextOptions>(TextPanel)
},
defaultValue
:
'markdown'
,
})
.
addStringArray
({
path
:
'strings'
,
name
:
'String Array'
,
description
:
'list of strings'
,
settings
:
{
placeholder
:
'Add a string value (text2 demo)'
,
},
defaultValue
:
[
'hello'
,
'world'
],
})
.
addTextInput
({
path
:
'content'
,
name
:
'Content'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment