You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2022. It is now read-only.
The solution uses Memcache in API Builder & Logstash to avoid unnecessary duplicate queries for APIs and users. To check if entries are cached correctly, you can connect to the memcached via telnet. Some examples:
952
+
The solution uses Memcache in API Builder & Logstash to avoid unnecessary duplicate queries for APIs and users. To check if entries are cached correctly, you can connect to the memcached via `telnet localhost 11211`. Some examples:
This holds the index creation status used by API-Builder & Logstash to determine if an indicies needs to be created or not.
967
967
968
+
To get a key, for instance the version check status:
969
+
```
970
+
get version_status:versionCheck
971
+
VALUE version_status:versionCheck 1 89
972
+
{I"
973
+
message:ETI"'Filebeat and Logstash version okay;TI"versionStatus;TI"ok;T
974
+
END
975
+
968
976
You can find additional information here: https://techleader.pro/a/90-Accessing-Memcached-from-the-command-line. You may also use [PHPMemcachedAdmin](https://github.com/elijaa/phpmemcachedadmin) to get insights about the Memcache instance.
0 commit comments