ZeroCool94 commited on
Commit
0cb95ca
1 Parent(s): ac381c4

Create metadata.yml

Browse files
Files changed (1) hide show
  1. metadata.yml +32 -0
metadata.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ plugins:
2
+ datasette-dashboards:
3
+ my-dashboard:
4
+ title: Dashboard
5
+ description: Showing some nice metrics
6
+ layout:
7
+ - [analysis-note, events-count]
8
+ filters:
9
+ date_start:
10
+ name: Date Start
11
+ type: date
12
+ default: "2021-01-01"
13
+ date_end:
14
+ name: Date End
15
+ type: date
16
+ charts:
17
+ analysis-note:
18
+ library: markdown
19
+ display: |-
20
+ # Analysis notes
21
+ > A quick rundown of events statistics
22
+
23
+ events-count:
24
+ title: Total number of events
25
+ db: jobs
26
+ query: SELECT count(*) as count FROM images
27
+ library: metric
28
+ display:
29
+ field: count
30
+ prefix:
31
+ suffix:
32
+