File size: 777 Bytes
0cb95ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
plugins:
  datasette-dashboards:
    my-dashboard:
      title: Dashboard
      description: Showing some nice metrics
      layout:
        - [analysis-note, events-count]
      filters:
        date_start:
          name: Date Start
          type: date
          default: "2021-01-01"
        date_end:
          name: Date End
          type: date
      charts:
        analysis-note:
          library: markdown
          display: |-
            # Analysis notes
            > A quick rundown of events statistics

        events-count:
          title: Total number of events
          db: jobs
          query: SELECT count(*) as count FROM images
          library: metric
          display:
            field: count
            prefix:
            suffix: