-
What Grafana version and what operating system are you using?
Download the zip file grafana-enterprise-10.2.1.windows-amd64
On windows 10 Enterprise LTSC without internet connection -
What are you trying to achieve?
Running Grafana on Windows using InfluxDB as datasource -
How are you trying to achieve it?
Follow the step proposed in https://www.youtube.com/watch?v=NlmArL07Vgc -
What happened?
When enter http://localhost:3000 in firefox (87.0 (64-bit)), it displays:
If you’re seeing this Grafana has failed to load its application files
-
This could be caused by your reverse proxy settings.
-
If you host grafana under subpath make sure your grafana.ini root_url setting includes subpath. If not using a reverse proxy make sure to set serve_from_sub_path to true.
-
If you have a local dev build make sure you build frontend using: yarn start, or yarn build
-
Sometimes restarting grafana-server can help
-
Check if you are using a non-supported browser. For more information, refer to the list of supported browsers.
-
What did you expect to happen?
I expect to connect grafana -
Can you copy/paste the configuration(s) that you are having problems with?
Can’t attach .ini file -
Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
Please find the logs in attachment
-
Did you follow any online instructions? If so, what is the URL?
I followed the video : https://www.youtube.com/watch?v=NlmArL07Vgc
I also created influxdb.yaml in C:\Grafana\conf\provisioning\datasources as following:
# # config file version
apiVersion: 1
# # list of datasources that should be deleted from the database
#deleteDatasources:
# - name: Graphite
# orgId: 1
# # list of datasources to insert/update depending
# # on what's available in the database
datasources:
# # <string, required> name of the datasource. Required
# - name: Graphite
- name: InfluxDB
# # <string, required> datasource type. Required
# type: graphite
type: influxdb
# # <string, required> access mode. direct or proxy. Required
access: proxy
# # <int> org id. will default to orgId 1 if not specified
orgId: 1
# # <string> url
url: http://localhost:8086
# # <string> database user, if used
# user:
# # <string> database name, if used
database: "CESDatabase"
# # <bool> enable/disable basic auth
basicAuth: false
# # <string> basic auth username
# basicAuthUser:
# # <bool> enable/disable with credentials headers
# withCredentials:
# # <bool> mark as default datasource. Max one per org
isDefault: true
# # <map> fields that will be converted to json and stored in json_data
# jsonData:
# graphiteVersion: "1.1"
# tlsAuth: true
# tlsAuthWithCACert: true
# httpHeaderName1: "Authorization"
# # <string> json object of data that will be encrypted.
# secureJsonData:
# tlsCACert: "..."
# tlsClientCert: "..."
# tlsClientKey: "..."
# # <openshift\kubernetes token example>
# httpHeaderValue1: "Bearer xf5yhfkpsnmgo"
# version: 1
# # <bool> allow users to edit datasources from the UI.
editable: true