Logstash and Filebeat on Windows

Hi,
I am having problems with my Logstash and Filebeat.
Everytime I start Filebeat and Logstash to send logs to kibana,nothing appears in kibana but logstash and filebeat seem to be working just fine,I wonder if anybody could help me with this issue.
Logstash configuration file :

input {
  beats {
    port => 5044
  }
}
filter {
   json {
  source => "message"
  }
}
output {
  elasticsearch {
    hosts => ["localhost:9200"]
    index => "indexforlogstash"
  }
  stdout {
    codec => rubydebug
  }
}

Filebeat configuration file :

###################### Filebeat Configuration Example #########################

# This file is an example configuration file highlighting only the most common
# options. The filebeat.reference.yml file from the same directory contains all the
# supported options with more comments. You can use it as a reference.
#
# You can find the full configuration reference here:
# https://www.elastic.co/guide/en/beats/filebeat/index.html

# For more available modules and options, please see the filebeat.reference.yml sample
# configuration file.

# ============================== Filebeat inputs ===============================

filebeat.inputs:

# Each - is an input. Most options can be set at the input level, so
# you can use different inputs for various configurations.
# Below are the input specific configurations.

# filestream is an input for collecting log messages from files.
- type: filestream

  # Unique ID among all inputs, an ID is required.
  id: my-filestream-id

  # Change to true to enable this input configuration.
  enabled: true

  # Paths that should be crawled and fetched. Glob based paths.
  paths:
    - C:/ELK Stack/logs/*
    #- c:\programdata\elasticsearch\logs\*

  # Exclude lines. A list of regular expressions to match. It drops the lines that are
  # matching any regular expression from the list.
  #exclude_lines: ['^DBG']

  # Include lines. A list of regular expressions to match. It exports the lines that are
  # matching any regular expression from the list.
  #include_lines: ['^ERR', '^WARN']

  # Exclude files. A list of regular expressions to match. Filebeat drops the files that
  # are matching any regular expression from the list. By default, no files are dropped.
  #prospector.scanner.exclude_files: ['.gz$']

  # Optional additional fields. These fields can be freely picked
  # to add additional information to the crawled log files for filtering
  #fields:
  #  level: debug
  #  review: 1

# ============================== Filebeat modules ==============================

filebeat.config.modules:
  # Glob pattern for configuration loading
  path: ${path.config}/modules.d/*.yml

  # Set to true to enable config reloading
  reload.enabled: false

  # Period on which files under path should be checked for changes
  #reload.period: 10s

# ======================= Elasticsearch template setting =======================

setup.template.settings:
  index.number_of_shards: 1
  #index.codec: best_compression
  #_source.enabled: false


# ================================== General ===================================

# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
#name:

# The tags of the shipper are included in their own field with each
# transaction published.
#tags: ["service-X", "web-tier"]

# Optional fields that you can specify to add additional information to the
# output.
#fields:
#  env: staging

# ================================= Dashboards =================================
# These settings control loading the sample dashboards to the Kibana index. Loading
# the dashboards is disabled by default and can be enabled either by setting the
# options here or by using the `setup` command.
#setup.dashboards.enabled: false

# The URL from where to download the dashboards archive. By default this URL
# has a value which is computed based on the Beat name and version. For released
# versions, this URL points to the dashboard archive on the artifacts.elastic.co
# website.
#setup.dashboards.url:

# =================================== Kibana ===================================

# Starting with Beats version 6.0.0, the dashboards are loaded via the Kibana API.
# This requires a Kibana endpoint configuration.
setup.kibana:

  # Kibana Host
  # Scheme and port can be left out and will be set to the default (http and 5601)
  # In case you specify and additional path, the scheme is required: http://localhost:5601/path
  # IPv6 addresses should always be defined as: https://[2001:db8::1]:5601
  #host: "localhost:5601"

  # Kibana Space ID
  # ID of the Kibana Space into which the dashboards should be loaded. By default,
  # the Default Space will be used.
  #space.id:

# =============================== Elastic Cloud ================================

# These settings simplify using Filebeat with the Elastic Cloud (https://cloud.elastic.co/).

# The cloud.id setting overwrites the `output.elasticsearch.hosts` and
# `setup.kibana.host` options.
# You can find the `cloud.id` in the Elastic Cloud web UI.
#cloud.id:

# The cloud.auth setting overwrites the `output.elasticsearch.username` and
# `output.elasticsearch.password` settings. The format is `<user>:<pass>`.
#cloud.auth:

# ================================== Outputs ===================================

# Configure what output to use when sending the data collected by the beat.

# ---------------------------- Elasticsearch Output ----------------------------
#output.elasticsearch:
  # Array of hosts to connect to.
  #hosts: ["localhost:9200"]

  # Protocol - either `http` (default) or `https`.
  #protocol: "https"

  # Authentication credentials - either API key or username/password.
  #api_key: "id:api_key"
  #username: "elastic"
  #password: "changeme"

# ------------------------------ Logstash Output -------------------------------
output.logstash:
  # The Logstash hosts
  hosts: ["192.168.0.125:5044"]

  # Optional SSL. By default is off.
  # List of root certificates for HTTPS server verifications
  #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]

  # Certificate for SSL client authentication
  #ssl.certificate: "/etc/pki/client/cert.pem"

  # Client Certificate Key
  #ssl.key: "/etc/pki/client/cert.key"

# ================================= Processors =================================
processors:
  - add_host_metadata:
      when.not.contains.tags: forwarded
  - add_cloud_metadata: ~
  - add_docker_metadata: ~
  - add_kubernetes_metadata: ~

# ================================== Logging ===================================

# Sets log level. The default log level is info.
# Available log levels are: error, warning, info, debug
#logging.level: debug

# At debug level, you can selectively enable logging only for some components.
# To enable all selectors use ["*"]. Examples of other selectors are "beat",
# "publisher", "service".
#logging.selectors: ["*"]

# ============================= X-Pack Monitoring ==============================
# Filebeat can export internal metrics to a central Elasticsearch monitoring
# cluster.  This requires xpack monitoring to be enabled in Elasticsearch.  The
# reporting is disabled by default.

# Set to true to enable the monitoring reporter.
#monitoring.enabled: false

# Sets the UUID of the Elasticsearch cluster under which monitoring data for this
# Filebeat instance will appear in the Stack Monitoring UI. If output.elasticsearch
# is enabled, the UUID is derived from the Elasticsearch cluster referenced by output.elasticsearch.
#monitoring.cluster_uuid:

# Uncomment to send the metrics to Elasticsearch. Most settings from the
# Elasticsearch output are accepted here as well.
# Note that the settings should point to your Elasticsearch *monitoring* cluster.
# Any setting that is not set is automatically inherited from the Elasticsearch
# output configuration, so if you have the Elasticsearch output configured such
# that it is pointing to your Elasticsearch monitoring cluster, you can simply
# uncomment the following line.
#monitoring.elasticsearch:

# ============================== Instrumentation ===============================

# Instrumentation support for the filebeat.
#instrumentation:
    # Set to true to enable instrumentation of filebeat.
    #enabled: false

    # Environment in which filebeat is running on (eg: staging, production, etc.)
    #environment: ""

    # APM Server hosts to report instrumentation results to.
    #hosts:
    #  - http://localhost:8200

    # API Key for the APM Server(s).
    # If api_key is set then secret_token will be ignored.
    #api_key:

    # Secret token for the APM Server(s).
    #secret_token:


# ================================= Migration ==================================

# This allows to enable 6.7 migration aliases
#migration.6_to_7.enabled: true

And this is how my Logstash

And my Filebeat

Look like when I start them.

And here is an example of the logs I'm trying to send

{ "time": "2023-03-08 17:20:25.3306", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/test-linda-18856944.html", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:39.2548", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/mk-handyman-london-27951700.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:42.8358", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/truck-tyre-service-london-roadside-tyres-ltd-27948904.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:44.0412", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/justuk-club-27924380.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:44.7718", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/cargo-naija-27824927.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:45.5716", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/escort-rankings-27803986.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:46.5295", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/dulwich-plumber-23680378.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:47.3544", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/forest---ray---dentists--orthodontists--implant-surgeons-17767434.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:49.5841", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/stan-lee-accountancy-ltd-27124138.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:20:50.6891", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/lccl-construction-27057115.html", "referrer": "https://london.cylex-uk.co.uk/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:12.6576", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/claridge's-health-club---spa-25405937.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:13.7030", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/ayurveda-pura-ltd-23767700.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:15.7222", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/the-peak-health-club---spa-23782056.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:19.1393", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/gina-conway-aveda-lifestyle-salon-and-spa-18828122.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:19.9027", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/spa-illuminata-15680826.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:22.8091", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/hush--aesthetic-clinic-19852370.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:23.4520", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/spa-illuminata-15680826.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:26.1697", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/ginkgo-health---beauty-26699644.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:28.4506", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/face-clinic-london-17771927.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:29.4470", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/massaggi-17921805.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }
{ "time": "2023-03-08 17:21:31.0360", "machinename": "RO-ROMOCEAT", "url": " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/mj-medispa-25852112.html", "referrer": "https://london.cylex-uk.co.uk/beauty-health-spas/", "clientIp": "127.0.0.1", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0", "message": "\"GetGeoByIdAsync\" | geoId: {\"CountryCode\":\"GB\", \"Identity\":20417, \"Language\":\"en-GB\"}", "ex": "System.NotImplementedException: The method or operation is not implemented.\r\n   at CylexBDDataAccessLayer.MongoDBAccess.GetGeoByIdAsync(GeoId geoId) in D:\\Projects\\CylexBDForSyncronizing\\CylexBDDataAccessLayer\\Mongo\\GeosDbAccessPartial.cs:line 45" }

Have you checked to see if your indexforlogstash contains data? Have you tried making a Data View in Kibana for that index?

Hi
If by data you mean just checking in the discover section,yes I have.This is what appears

But I don't know what you mean by "making a Data View in kibana for this index,would you mind showing me how that's done?

I just checked,when i start kibana.bat in command prompt i get this warning

 log   [14:11:43.730] [warning][dataView][dataViews][indexPatterns][plugins] No matching indices found: kibana_sample_data_logs
 log   [14:11:43.751] [warning][dataView][dataViews][indexPatterns][plugins] No matching indices found: kibana_sample_data_log

It looks like you are using version 7.17 of Elastic, and you'll need an index pattern to view your data. It looks like you already have this, and it is called indexforlogstash*:

  • Can you go into the Stack Management section and check the configuration for this data view? You'll find this under Stack Management > Index Patterns. Check to see if there are fields listed in this management screen, and look for clues. If you don't see the fields you expect, try re-creating the index pattern.
  • If looking on the index pattern isn't showing useful clues, can you go to Dev Tools and run:
    GET _cat/indices/indexforlogstash*
    
    This will show you if the Kibana instance is connected to an Elasticsearch cluster that is storing the data being indexed by Logstash.

Another thought, try looking closely at Logstash's logs to make sure it is successfully storing the data.

I went to Stack Managment > Index patterns and this is what I found.



And in Dev Tools aswell but I am getting this :

I'm guessing I have to enable my security features?

It looks like the cluster has the index, and there are documents.

Perhaps you aren't seeing data in Kibana because the time range selection is too small? I see in your screenshot of what you see in Kibana that the time range selection is for the last 15 minutes.

Another possibility is the timestamp field you are using for the index pattern in Kibana doesn't match the field where the timestamp actually is in the data. You might want to view some documents using the _search API in Dev Tools to check that the timestamp fields are accurate.

GET indexforlogstash*/_search

I usually set the timestamp to absolute from 00:00 - 23:30.In the picture above I just rushed to send you an exmple,but it still doesn't work even with the absolute timestamp.
I used what you told me in Dev Tools and it seems like kibana is reading some data:

{
  "took" : 5,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 10000,
      "relation" : "gte"
    },
    "max_score" : 1.0,
    "hits" : [
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "0S3AD4gBkOEy-tCdLJfy",
        "_score" : 1.0,
        "_source" : {
          "message" : "\"MongoDBAccess.GetCompany\" | companyId: {\"CylexId\":18856944, \"CountryCode\":\"GB\"}",
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "time" : "2023-03-17 12:37:10.0049",
          "machinename" : "RO-ROMOCEAT",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "@version" : "1",
          "host" : "ro-dumitrasraul",
          "@timestamp" : "2023-05-12T11:37:12.495Z",
          "clientIp" : "127.0.0.1",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.GetCompany(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 109""",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/test-linda-18856944.html"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "yy3AD4gBkOEy-tCdLJfw",
        "_score" : 1.0,
        "_source" : {
          "message" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBD.BL.CompanyProfileBuilder.SetCompany() in D:\Projects\CylexBDForSyncronizing\CylexBD\BL\CompanyProfileBuilder.cs:line 849""",
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "time" : "2023-03-17 12:40:43.5651",
          "machinename" : "RO-ROMOCEAT",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "@version" : "1",
          "host" : "ro-dumitrasraul",
          "@timestamp" : "2023-05-12T11:37:12.501Z",
          "clientIp" : "127.0.0.1",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/stan-lee-accountancy-ltd-27124138.html"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "2C3AD4gBkOEy-tCdLJfy",
        "_score" : 1.0,
        "_source" : {
          "message" : "\"MongoDBAccess.GetCompany\" | companyId: {\"CylexId\":27948904, \"CountryCode\":\"GB\"}",
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "time" : "2023-03-17 12:40:38.7020",
          "machinename" : "RO-ROMOCEAT",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "@version" : "1",
          "host" : "ro-dumitrasraul",
          "@timestamp" : "2023-05-12T11:37:12.499Z",
          "clientIp" : "127.0.0.1",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.GetCompany(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 109""",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/truck-tyre-service-london-roadside-tyres-ltd-27948904.html"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "2S3AD4gBkOEy-tCdLJfy",
        "_score" : 1.0,
        "_ignored" : [
          "ex.keyword"
        ],
        "_source" : {
          "message" : "\"MongoDBAccess.CompanyExistAsync\" | companyId: {\"CylexId\":23680378, \"CountryCode\":\"GB\"}",
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "time" : "2023-03-17 12:40:42.2447",
          "machinename" : "RO-ROMOCEAT",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "@version" : "1",
          "host" : "ro-dumitrasraul",
          "@timestamp" : "2023-05-12T11:37:12.500Z",
          "clientIp" : "127.0.0.1",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.CompanyExistAsync(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 46""",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/dulwich-plumber-23680378.html"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "oi0TC4gBkOEy-tCdmJfR",
        "_score" : 1.0,
        "_source" : {
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "clientIp" : "127.0.0.1",
          "message" : "\"MongoDBAccess.GetCompany\" | companyId: {\"CylexId\":27057115, \"CountryCode\":\"GB\"}",
          "machinename" : "RO-ROMOCEAT",
          "time" : "2023-03-17 12:37:23.2284",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "@timestamp" : "2023-05-11T13:50:13.516Z",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "host" : "ro-dumitrasraul",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/lccl-construction-27057115.html",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.GetCompany(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 109""",
          "@version" : "1"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "oy0TC4gBkOEy-tCdmJfR",
        "_score" : 1.0,
        "_source" : {
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "clientIp" : "127.0.0.1",
          "message" : "\"MongoDBAccess.GetCompany\" | companyId: {\"CylexId\":23680378, \"CountryCode\":\"GB\"}",
          "machinename" : "RO-ROMOCEAT",
          "time" : "2023-03-17 12:37:26.4827",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "@timestamp" : "2023-05-11T13:50:13.517Z",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "host" : "ro-dumitrasraul",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/dulwich-plumber-23680378.html",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.GetCompany(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 109""",
          "@version" : "1"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "ty0TC4gBkOEy-tCdmJfV",
        "_score" : 1.0,
        "_source" : {
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "clientIp" : "127.0.0.1",
          "message" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBD.BL.CompanyProfileBuilder.SetCompany() in D:\Projects\CylexBDForSyncronizing\CylexBD\BL\CompanyProfileBuilder.cs:line 849""",
          "machinename" : "RO-ROMOCEAT",
          "time" : "2023-03-17 12:40:37.7397",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "@timestamp" : "2023-05-11T13:50:13.518Z",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "host" : "ro-dumitrasraul",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/mk-handyman-london-27951700.html",
          "@version" : "1"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "sS0TC4gBkOEy-tCdmJfU",
        "_score" : 1.0,
        "_ignored" : [
          "ex.keyword"
        ],
        "_source" : {
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "clientIp" : "127.0.0.1",
          "message" : "\"MongoDBAccess.CompanyExistAsync\" | companyId: {\"CylexId\":23680378, \"CountryCode\":\"GB\"}",
          "machinename" : "RO-ROMOCEAT",
          "time" : "2023-03-17 12:37:26.4186",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "@timestamp" : "2023-05-11T13:50:13.517Z",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "host" : "ro-dumitrasraul",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/dulwich-plumber-23680378.html",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.CompanyExistAsync(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 46""",
          "@version" : "1"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "xy3AD4gBkOEy-tCdLJfw",
        "_score" : 1.0,
        "_ignored" : [
          "ex.keyword"
        ],
        "_source" : {
          "message" : "\"MongoDBAccess.CompanyExistAsync\" | companyId: {\"CylexId\":17767434, \"CountryCode\":\"GB\"}",
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "time" : "2023-03-17 12:37:24.2199",
          "machinename" : "RO-ROMOCEAT",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "@version" : "1",
          "host" : "ro-dumitrasraul",
          "@timestamp" : "2023-05-12T11:37:12.496Z",
          "clientIp" : "127.0.0.1",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.CompanyExistAsync(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 46""",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/forest---ray---dentists--orthodontists--implant-surgeons-17767434.html"
        }
      },
      {
        "_index" : "indexforlogstash",
        "_type" : "_doc",
        "_id" : "yC3AD4gBkOEy-tCdLJfw",
        "_score" : 1.0,
        "_ignored" : [
          "ex.keyword"
        ],
        "_source" : {
          "message" : "\"MongoDBAccess.CompanyExistAsync\" | companyId: {\"CylexId\":27924380, \"CountryCode\":\"GB\"}",
          "path" : "C:/ELK Stack/logs/2023-03-17-Error.json",
          "time" : "2023-03-17 12:37:27.2516",
          "machinename" : "RO-ROMOCEAT",
          "useragent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0",
          "@version" : "1",
          "host" : "ro-dumitrasraul",
          "@timestamp" : "2023-05-12T11:37:12.497Z",
          "clientIp" : "127.0.0.1",
          "referrer" : "https://london.cylex-uk.co.uk/",
          "ex" : """System.NotImplementedException: The method or operation is not implemented.
   at CylexBDDataAccessLayer.MongoDBAccess.CompanyExistAsync(CompanyId companyId) in D:\Projects\CylexBDForSyncronizing\CylexBDDataAccessLayer\Mongo\CompaniesDbAccessPartial.cs:line 46""",
          "url" : " https://london.cylex-uk.co.uk/GB/cylex-uk.co.uk/london/company/justuk-club-27924380.html"
        }
      }
    ]
  }
}

Here's an image aswell :

.
But it seem like the data doesn't coorelate with the one I'm trying to send.This data is from may so it's one month old.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.