1a988df143
* first attempt to have info function * unit test for query modeller * enable info function in devenv * fix unit test * add unit test for info function * throw error when trying to visualize the info function * remove visual query support * Update packages/grafana-prometheus/src/promql.ts Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> * Update packages/grafana-prometheus/src/querybuilder/parsing.test.ts Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> * update info function detail --------- Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com>
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
prometheus:
|
|
build: docker/blocks/prometheus
|
|
ports:
|
|
- "9090:9090"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
command: >
|
|
--enable-feature=remote-write-receiver
|
|
--enable-feature=promql-experimental-functions
|
|
--config.file=/etc/prometheus/prometheus.yml
|
|
--storage.tsdb.path=/prometheus
|
|
--web.console.libraries=/usr/share/prometheus/console_libraries
|
|
--web.console.templates=/usr/share/prometheus/consoles
|
|
--web.config.file=/etc/prometheus/web.yml
|
|
|
|
node_exporter:
|
|
image: prom/node-exporter
|
|
ports:
|
|
- "9101:9100"
|
|
|
|
fake-prometheus-data:
|
|
image: grafana/fake-data-gen
|
|
ports:
|
|
- "9091:9091"
|
|
environment:
|
|
FD_DATASOURCE: prom
|
|
|
|
alertmanager:
|
|
image: prom/alertmanager
|
|
volumes:
|
|
- ${PWD}/docker/blocks/prometheus/alertmanager.yml:/etc/alertmanager/alertmanager.yml
|
|
command: >
|
|
--config.file=/etc/alertmanager/alertmanager.yml
|
|
ports:
|
|
- "9093:9093"
|
|
|
|
prometheus-random-data:
|
|
build: docker/blocks/prometheus_random_data
|
|
ports:
|
|
- "8081:8080"
|
|
|
|
prometheus-high-card:
|
|
build: docker/blocks/prometheus_high_card
|
|
ports:
|
|
- "9111:9111"
|
|
|
|
prometheus-utf8:
|
|
build: docker/blocks/prometheus_utf8
|
|
ports:
|
|
- "9112:9112"
|