This file is indexed.

/var/lib/ganglia-web/conf/sql/ganglia.mysql is in ganglia-webfrontend 3.6.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
CREATE TABLE IF NOT EXISTS overlay_events (
    `event_id` SERIAL
  , `description` VARCHAR(250)
  , `summary` VARCHAR(250)
  , `grid` VARCHAR(100)
  , `cluster` VARCHAR(100)
  , `host_regex` VARCHAR(100)
  , `start_time` BIGINT DEFAULT NULL
  , `end_time` BIGINT DEFAULT NULL
);