Hey, I came back after an hour and this came up on monitoring:
We couldn't activate monitoring
Here might be some things to check
No Monitoring data could be found for the selected time period, but we could not find the cluster setting that makes the data unavailable.
There may be data available for a different time period than we have selected. Try adjusting the time filter controls to a time range where the Monitoring data is expected.
We are refreshing the search for data in the background. If cluster data is found, we will redirect to the cluster overview page.
and this:
Monitoring Request Failed
Unable to find the cluster in the selected time range. UUID: BZrLFZApRyWIsTznQpzRfg
HTTP 404
I can see data if the time period is longer than 4 hours, however there are no recent logs being shipped. When I restarted winlogbeat I got this error:
Start-Service : Failed to start service 'winlogbeat (winlogbeat)'.
At line:1 char:1
+ Start-Service winlogbeat
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OpenError: (System.ServiceProcess.ServiceController:ServiceController)
ServiceCommandException
+ FullyQualifiedErrorId : StartServiceFailed,Microsoft.PowerShell.Commands.StartServiceCommand
After running this command on PS:
.\winlogbeat.exe -c winlogbeat.yml -e -v -d "*"
2018-07-18T14:09:04.894+0100 ERROR instance/beat.go:691 Exiting: Error importing Kibana dashboards: fail to import the dashboards in Kibana: Error importing directory C:\software\winlogbeat\kibana: Failed to import index-pattern: Failed to load directory C:\software\winlogbeat\kibana/6/index-pattern:
error loading C:\software\winlogbeat\kibana\6\index-pattern\winlogbeat.json: blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];. Response: {"objects":[{"id":"winlogbeat-*","type":"index-pattern","error":{"message":"blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"}}]}
to solve this issue ^: I ran this
PUT _settings
{
"index": {
"blocks": {
"read_only_allow_delete": "false"
}
}
}
Any clues as to why I am getting this?