ForkFriendliAIFriendliAIpublished Mar 18, 2024seen 5d

friendliai/locust_exporter

forked from ContainerSolutions/locust_exporter

Open original ↗

Captured source

source ↗
published Mar 18, 2024seen 5dcaptured 15hhttp 200method plain

friendliai/locust_exporter

Description: A Locust metrics exporter for Prometheus

Language: Go

License: Apache-2.0

Stars: 0

Forks: 0

Open issues: 0

Created: 2024-03-18T08:03:02Z

Pushed: 2024-03-18T09:31:20Z

Default branch: main

Fork: yes

Parent repository: ContainerSolutions/locust_exporter

Archived: no

README:

Locust Exporter

Prometheus exporter for Locust. This exporter was inspired by mbolek/locust_exporter.

![locust_dashboard](locust_dashboard.png)

Quick Start

This package is available for Docker:

1. Run Locust (example docker-compose)

2. Run Locust Exporter

with docker:

docker run --net=host containersol/locust_exporter

or with docker-compose:

version: "3.0"

services:
locust-exporter:
image: containersol/locust_exporter
network_mode: "host"

3. Modify prometheus.yml to add target to Prometheus

scrape_configs:
- job_name: 'locust'
static_configs:
- targets: [':9646']

4. Add dashboard to Grafana with ID 11985

Building and Running

The default way to build is:

go get github.com/ContainerSolutions/locust_exporter
cd ${GOPATH-$HOME/go}/src/github.com/ContainerSolutions/locust_exporter/
go run main.go

Flags

  • --locust.uri

Address of Locust. Default is http://localhost:8089.

  • --locust.timeout

Timeout request to Locust. Default is 5s.

  • --web.listen-address

Address to listen on for web interface and telemetry. Default is :9646.

  • --web.telemetry-path

Path under which to expose metrics. Default is /metrics.

  • --locust.namespace

Namespace for prometheus metrics. Default locust.

  • --log.level

Set logging level: one of debug, info, warn, error, fatal

  • --log.format

Set the log output target and format. e.g. logger:syslog?appname=bob&local=7 or logger:stdout?json=true Defaults to logger:stderr.

Environment Variables

The following environment variables configure the exporter:

  • LOCUST_EXPORTER_URI

Address of Locust. Default is http://localhost:8089.

  • LOCUST_EXPORTER_TIMEOUT

Timeout reqeust to Locust. Default is 5s.

  • LOCUST_EXPORTER_WEB_LISTEN_ADDRESS

Address to listen on for web interface and telemetry. Default is :9646.

  • LOCUST_EXPORTER_WEB_TELEMETRY_PATH

Path under which to expose metrics. Default is /metrics.

  • LOCUST_METRIC_NAMESPACE

Namespace for prometheus metrics. Default locust.

Grafana

The grafana dashboard has beed published with ID 11985 and was exported to [locust_dashboard.json](locust_dashboard.json).

Screenshot

[![locust exporter](locust_exporter.png)](locust_exporter.md)

Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

License

Apache License. Please see [License File](LICENSE.md) for more information.