Jason W
08/21/2020, 4:09 PMseph
"3600": SELECT...
https://osquery.readthedocs.io/en/stable/deployment/configuration/ documents
"interval": {
"3600": [
"SELECT total_seconds AS uptime FROM uptime;"
]
}
christran
08/26/2020, 8:59 AMSeán O'Halloran
08/26/2020, 4:56 PMdefensivedepth
08/26/2020, 6:59 PMAyan
08/26/2020, 7:51 PMGavin
08/27/2020, 6:21 PMfilebeat
as a daemonset
on k8s to read the osquery
log files from fleet
, I have asked Elastic for some guidance and I think I am hitting a filebeat bug but was curious if any one has had any success.Zach Zeid
08/31/2020, 2:11 PMKOLIDE_SERVER_TLS
to true
and I get { "terminated": "tls: failed to find any PEM data in key input", "ts": "2020-08-31T14:07:27.746925412Z" }
However, if it's set to false, the logs show that transport
is http
, but communication between hosts and fleet are still good. I've confirmed the key data is good, what am I missing?Ayan
08/31/2020, 5:46 PMZach Zeid
09/02/2020, 2:48 PMfleet serve
. After fleet serve
is running, nothing from stdout is getting logged. Is this expected, if so is there a way around this?Zach Zeid
09/03/2020, 5:36 PM--tls_dump
I see what appears to be html in the output, is that expected?asvoboda
09/04/2020, 12:02 PMZach Zeid
09/04/2020, 2:21 PMZach Zeid
09/04/2020, 4:59 PMSOC-Service
09/04/2020, 6:53 PMzwass
Zach Zeid
09/08/2020, 6:49 PMZach Zeid
09/08/2020, 7:48 PMfleetctl
? somehow I'm getting this error from a host W0908 15:45:25.950857 20167 decorators.cpp:217] Invalid decorator interval rate 3600 configuration in config source: tls_plugin
demonbhao
09/09/2020, 9:26 AMZach Zeid
09/09/2020, 3:59 PMZach Zeid
09/09/2020, 4:53 PMAhmed
09/10/2020, 8:15 AMINSERT INTO hosts (
detail_update_time,
osquery_host_id,
seen_time,
node_key
) VALUES ('1970-01-02 00:00:00', 'web01', '2020-09-02 13:50:33.053319', 'REDACTEDREDACTED')
ON DUPLICATE KEY UPDATE
node_key = VALUES(node_key),
deleted = FALSE;
SELECT DISTINCT dqc.id, q.query
FROM distributed_query_campaigns dqc
JOIN distributed_query_campaign_targets dqct
ON (dqc.id = dqct.distributed_query_campaign_id)
LEFT JOIN label_query_executions lqe
ON (dqct.type = 0 AND dqct.target_id = lqe.label_id AND lqe.matches)
LEFT JOIN hosts h
ON ((dqct.type = 0 AND lqe.host_id = h.id) OR (dqct.type = 1 AND dqct.target_id = h.id))
LEFT JOIN distributed_query_executions dqe
ON (h.id = dqe.host_id AND dqc.id = dqe.distributed_query_campaign_id)
JOIN queries q
ON (dqc.query_id = q.id)
WHERE dqe.status IS NULL AND dqc.status = 1 AND h.id = 4862
AND NOT q.deleted
AND NOT dqc.deleted
SELECT DISTINCT *
FROM hosts
WHERE ( id IN
(
SELECT id
FROM hosts
WHERE MATCH ( host_name , uuid ) AGAINST ( ? IN BOOLEAN MODE )
)
OR id IN
(
SELECT host_id
FROM network_interfaces
WHERE MATCH ( ip_address ) AGAINST ( ? IN BOOLEAN MODE )
) )
AND NOT deleted LIMIT ?
would you please also share some insights when every query of these is executed by fleet?
https://github.com/kolide/fleet/issues/2293demonbhao
09/10/2020, 9:01 AMZach Zeid
09/10/2020, 2:29 PMArtem
09/11/2020, 10:56 AMbeatus
09/11/2020, 5:30 PM20200405120000_UpdateLabelStorage.go (create label_membership table: Error 1050: Table 'label_membership' already exists), quitting migration.
vaar
09/12/2020, 4:14 PMdemonbhao
09/15/2020, 8:15 AMbeatus
09/15/2020, 7:35 PM2020-09-15T19:30:47.771465407Z {"component":"service","err":"failed to ingest result: campaign waiting for listener","ip_addr":"x","level":"debug","method":"SubmitDistributedQueryResults","took":"8.342794ms","ts":"2020-09-15T19:30:47.771281978Z","x_for_ip_addr":"x"}
I've already got kolide in debug mode but i'm not seeing anything aside from the failureSam.P
09/18/2020, 1:40 AM