Merge pull request #16210 from grafana/16187_docs

docs: loki provisioning
pull/16227/head
Daniel Lee 6 years ago committed by GitHub
commit 9f58b85693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      docs/sources/features/datasources/loki.md

@ -113,7 +113,25 @@ apiVersion: 1
datasources:
- name: Loki
type: loki
access: proxy
url: http://localhost:3100
jsonData:
maxLines: 1000
```
Here's another with basic auth:
```yaml
apiVersion: 1
datasources:
- name: Loki
type: loki
access: proxy
url: http://localhost:3100
basicAuth: true
basicAuthUser: my_user
basicAuthPassword: test_password
jsonData:
maxLines: 1000
```

Loading…
Cancel
Save