diff --git a/docker-compose.yaml b/docker-compose.yaml index 75a87ab..7a84d0a 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,18 @@ version: '3.0' services: + jaeger: + image: jaegertracing/jaeger-query:1.51 + container_name: 'jaeger-quickwit' + environment: + - GRPC_STORAGE_SERVER=host.docker.internal:7281 + - SPAN_STORAGE_TYPE=grpc-plugin + ports: + - 16686:16686 + extra_hosts: + - "host.docker.internal:host-gateway" + networks: + - quickwit grafana: container_name: 'grafana-quickwit-datasource' build: @@ -15,6 +27,12 @@ services: - gquickwit:/var/lib/grafana extra_hosts: - "host.docker.internal:host-gateway" + networks: + - quickwit + +networks: + quickwit: + driver: bridge volumes: gquickwit: diff --git a/src/components/Divider.tsx b/src/components/Divider.tsx new file mode 100644 index 0000000..11f0239 --- /dev/null +++ b/src/components/Divider.tsx @@ -0,0 +1,25 @@ +import { css } from '@emotion/css'; +import React from 'react'; + +import { GrafanaTheme2 } from '@grafana/data'; +import { useStyles2 } from '@grafana/ui'; + +export const Divider = ({ hideLine = false }) => { + const styles = useStyles2(getStyles); + + if (hideLine) { + return