Skipping plugin [[inputs.logparser]]: service inputs not supported

i want to add my iis logs into telegraf .i am follow the logstach grok but its show :- skipping plugin [[inputs.logparser]]: service inputs not supported error.
my telegraf conf was:-
[[inputs.logparser]]
files = [“C:\inetpub\logs\LogFiles**”]
from_beginning = true

[inputs.logparser.grok]
patterns = [‘%{TIMESTAMP_ISO8601:log_timestamp} %{IPORHOST:site} %{NOTSPACE:computername} %{IPORHOST:site} %{WORD:method} %{URIPATH:page} %{NOTSPACE:querystring} %{NUMBER:port} %{NOTSPACE:username} %{IPORHOST:clienthost} %{NOTSPACE:protocol} %{NOTSPACE:useragent} %{NOTSPACE:response} %{IPORHOST:cshost} %{NUMBER:refer} %{NUMBER:subresponse}’]

sample logs:-

2016-09-28 15:20:46 W3SVC6 127.0.0.1 GET / - 9000 - 127.0.0.1 Mozilla/5.0+(Windows+NT+6.3;+Win64;+x64;+rv:47.0)+Gecko/20100101+Firefox/47.0 - 200 0 0 97564
2016-09-28 15:20:49 W3SVC6 127.0.0.1 GET /Content/css/stylesMaster.css - 9000 - 127.0.0.1 Mozilla/5.0+(Windows+NT+6.3;+Win64;+x64;+rv:47.0)+Gecko/20100101+Firefox/47.0 http://localhost:9000/ 200 0 0 2203

I think this is just the message about running in --test mode. Since service inputs are event driven, there isn’t a way to run them “once”, so they are not ran. You will have to run without --test in order to check these plugins.