Grafana improvements
2 unresolved threads
2 unresolved threads
This upgrades Grafana to the latest 4.1.1 and fixes some problems I ran into with make performance-metrics-setup
Merge request reports
Activity
15 request = Net::HTTP::Post.new('/api/datasources') 16 request.basic_auth('admin', 'admin') 17 request.add_field('Content-Type', 'application/json') 18 request.body = <<EOS 19 { 20 "name": "InfluxDB", 21 "type": "influxdb", 22 "url": "http://localhost:8086", 23 "access": "direct", 24 "database": "gitlab", 25 "isDefault": true 26 } 27 EOS 28 puts http.request(request).body 15 create_data_source(host, port, name: 'InfluxDB', database: 'gitlab', isDefault: true) 16 create_data_source(host, port, name: 'InfluxDB Internal', database: '_internal') Thanks @toupeira !
mentioned in commit cbbbd4e0
Please register or sign in to reply