Plugin not found, no installed plugin with that id

Hi

I’ve just installed Grafana on Centos
# yum install grafana

POSTTRANS: Running script
Verifying : grafana-6.6.2-1.x86_64 1/1

Installed:
grafana.x86_64 0:6.6.2-1

Then I created a datasource.yaml file in /etc/grafana/provisioning/datasources

# # config file version
apiVersion: 1

# # list of datasources that should be deleted from the database
#deleteDatasources:
# - name: Graphite
# orgId: 1

datasources:
- name: InfluxDB
** type: InfluxDB**
** access: direct**
** orgId: 1**
** url: http://xx.xx.xx.xx:8086**
** password: ig_graf**
** user: ig_graf**
** database: telegraf**
** isDefault: true**

Then started Grafana
# service grafana-server start

All looks ok. no errors in logs
I log into Grafana and go to datasource tab. I can see my datasource has been added.


However when I click on it to view detail I get error:

Plugin not found, no installed plugin with that id

So now I’m complexed as you why? Any hints appreciated

I think issue is that plugin which you want to use is not installed. Did you check plugin list in grafana. Second way to check plugins list is navigate to this folder " grafana-6.5.2\data\plugins " . If not installed just install that plugin.

Solved!

The yaml file field for type was wong:
Replaced:
type: InfluxDB

With
type: influxdb

e.g all lower case

All good now