datasources.yaml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. apiVersion: 1
  2. datasources:
  3. - name: gdev-graphite
  4. type: graphite
  5. access: proxy
  6. url: http://localhost:8180
  7. jsonData:
  8. graphiteVersion: "1.1"
  9. - name: gdev-prometheus
  10. type: prometheus
  11. access: proxy
  12. url: http://localhost:9090
  13. - name: gdev-slow-prometheus
  14. type: prometheus
  15. access: proxy
  16. url: http://localhost:3011
  17. - name: gdev-testdata
  18. type: testdata
  19. isDefault: true
  20. - name: gdev-influxdb
  21. type: influxdb
  22. access: proxy
  23. database: site
  24. user: grafana
  25. url: http://localhost:8086
  26. jsonData:
  27. timeInterval: "15s"
  28. secureJsonData:
  29. password: grafana
  30. - name: gdev-influxdb-telegraf
  31. type: influxdb
  32. access: proxy
  33. database: telegraf
  34. user: grafana
  35. url: http://localhost:8086
  36. jsonData:
  37. timeInterval: "10s"
  38. secureJsonData:
  39. password: grafana
  40. - name: gdev-opentsdb
  41. type: opentsdb
  42. access: proxy
  43. url: http://localhost:4242
  44. jsonData:
  45. tsdbResolution: 1
  46. tsdbVersion: 1
  47. - name: gdev-elasticsearch-v2-metrics
  48. type: elasticsearch
  49. access: proxy
  50. database: "[metrics-]YYYY.MM.DD"
  51. url: http://localhost:9200
  52. jsonData:
  53. interval: Daily
  54. timeField: "@timestamp"
  55. esVersion: 2
  56. - name: gdev-elasticsearch-v2-logs
  57. type: elasticsearch
  58. access: proxy
  59. database: "[logs-]YYYY.MM.DD"
  60. url: http://localhost:9200
  61. jsonData:
  62. interval: Daily
  63. timeField: "@timestamp"
  64. esVersion: 2
  65. - name: gdev-elasticsearch-v5-metrics
  66. type: elasticsearch
  67. access: proxy
  68. database: "[metrics-]YYYY.MM.DD"
  69. url: http://localhost:10200
  70. jsonData:
  71. interval: Daily
  72. timeField: "@timestamp"
  73. esVersion: 5
  74. - name: gdev-elasticsearch-v5-logs
  75. type: elasticsearch
  76. access: proxy
  77. database: "[logs-]YYYY.MM.DD"
  78. url: http://localhost:10200
  79. jsonData:
  80. interval: Daily
  81. timeField: "@timestamp"
  82. esVersion: 5
  83. - name: gdev-elasticsearch-v6-metrics
  84. type: elasticsearch
  85. access: proxy
  86. database: "[metrics-]YYYY.MM.DD"
  87. url: http://localhost:11200
  88. jsonData:
  89. interval: Daily
  90. timeField: "@timestamp"
  91. esVersion: 60
  92. - name: gdev-elasticsearch-v6-logs
  93. type: elasticsearch
  94. access: proxy
  95. database: "[logs-]YYYY.MM.DD"
  96. url: http://localhost:11200
  97. jsonData:
  98. interval: Daily
  99. timeField: "@timestamp"
  100. esVersion: 60
  101. - name: gdev-elasticsearch-v6-filebeat
  102. type: elasticsearch
  103. access: proxy
  104. database: "[filebeat-]YYYY.MM.DD"
  105. url: http://localhost:11200
  106. jsonData:
  107. interval: Daily
  108. timeField: "@timestamp"
  109. esVersion: 60
  110. - name: gdev-elasticsearch-v7-metrics
  111. type: elasticsearch
  112. access: proxy
  113. database: "[metrics-]YYYY.MM.DD"
  114. url: http://localhost:12200
  115. jsonData:
  116. timeInterval: 10s
  117. interval: Daily
  118. timeField: "@timestamp"
  119. esVersion: 70
  120. - name: gdev-elasticsearch-v7-logs
  121. type: elasticsearch
  122. access: proxy
  123. database: "[logs-]YYYY.MM.DD"
  124. url: http://localhost:12200
  125. jsonData:
  126. interval: Daily
  127. timeField: "@timestamp"
  128. esVersion: 70
  129. - name: gdev-elasticsearch-v7-filebeat
  130. type: elasticsearch
  131. access: proxy
  132. database: "[filebeat-]YYYY.MM.DD"
  133. url: http://localhost:12200
  134. jsonData:
  135. interval: Daily
  136. timeField: "@timestamp"
  137. esVersion: 70
  138. timeInterval: "10s"
  139. logMessageField: message
  140. logLevelField: fields.level
  141. - name: gdev-elasticsearch-v7-metricbeat
  142. type: elasticsearch
  143. access: proxy
  144. database: "[metricbeat-]YYYY.MM.DD"
  145. url: http://localhost:12200
  146. jsonData:
  147. interval: Daily
  148. timeField: "@timestamp"
  149. esVersion: 70
  150. timeInterval: "10s"
  151. - name: gdev-mysql
  152. type: mysql
  153. url: localhost:3306
  154. database: grafana
  155. user: grafana
  156. secureJsonData:
  157. password: password
  158. - name: gdev-mysql-ds-tests
  159. type: mysql
  160. url: localhost:3306
  161. database: grafana_ds_tests
  162. user: grafana
  163. secureJsonData:
  164. password: password
  165. - name: gdev-mssql
  166. type: mssql
  167. url: localhost:1433
  168. database: grafana
  169. user: grafana
  170. secureJsonData:
  171. password: Password!
  172. - name: gdev-mssql-ds-tests
  173. type: mssql
  174. url: localhost:1433
  175. database: grafanatest
  176. user: grafana
  177. secureJsonData:
  178. password: Password!
  179. - name: gdev-postgres
  180. type: postgres
  181. url: localhost:5432
  182. database: grafana
  183. user: grafana
  184. secureJsonData:
  185. password: password
  186. jsonData:
  187. sslmode: "disable"
  188. - name: gdev-postgres-ds-tests
  189. type: postgres
  190. url: localhost:5432
  191. database: grafanadstest
  192. user: grafanatest
  193. secureJsonData:
  194. password: grafanatest
  195. jsonData:
  196. sslmode: "disable"
  197. - name: gdev-cloudwatch
  198. type: cloudwatch
  199. editable: true
  200. jsonData:
  201. authType: credentials
  202. defaultRegion: eu-west-2
  203. - name: gdev-loki
  204. type: loki
  205. access: proxy
  206. url: http://localhost:3100
  207. editable: false