Skip to content

Commit

Permalink
Fix docker image name
Browse files Browse the repository at this point in the history
Fixes #20
  • Loading branch information
Dominik Schulz authored and dominikschulz committed Jan 9, 2018
1 parent c6c4b0a commit b08da57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
config.yaml
config.yml
sql_exporter
*.tar.gz
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
# Prometheus SQL Exporter [![Build Status](https://travis-ci.org/justwatchcom/sql_exporter.svg?branch=master)](https://travis-ci.org/justwatchcom/sql_exporter)

[![Docker Pulls](https://img.shields.io/docker/pulls/justwatch/sql_exporter.svg?maxAge=604800)](https://hub.docker.com/r/justwatchcom/sql_exporter)
[![Docker Pulls](https://img.shields.io/docker/pulls/justwatch/sql_exporter.svg?maxAge=604800)](https://hub.docker.com/r/justwatch/sql_exporter)
[![Go Report Card](https://goreportcard.com/badge/github.com/justwatchcom/sql_exporter)](https://goreportcard.com/report/github.com/justwatchcom/sql_exporter)

This repository contains an service that runs user-defined SQL queries at flexible intervals and exports the resulting metrics via HTTP for Prometheus consumption.
Expand Down Expand Up @@ -29,7 +29,7 @@ cp config.yml.dist config.yml
Running in Docker:

```
docker run -v `pwd`/config.yml:/config/config.yml -e CONFIG=/config/config.yml -d -p 9237:9237 --name sql_exporter justwatchcom/sql_exporter
docker run -v `pwd`/config.yml:/config/config.yml -e CONFIG=/config/config.yml -d -p 9237:9237 --name sql_exporter justwatch/sql_exporter
```

Manual `scrape_configs` snippet:
Expand Down

0 comments on commit b08da57

Please sign in to comment.