This repository contains:
- specifications for Elastic Packages, as served up by the Elastic Package Registry (EPR). There may be multiple versions of the specifications; these can be found under the
versions
top-level folder. Read more in the Specification Versioning section below. - code libraries for validating said specifications; these can be found under the
code
top-level folder.
Please use this repository to discuss any changes to the specification, either my making issues or PRs to the specification.
An Elastic Package is a collection of assets for the Elastic Stack. In addition, it contains manifest files which contain additional information about the package. The exact content and structure of a package are described by the package spec.
A package with all its assets is downloaded as a .zip file from the package-registry by Fleet inside Kibana. The assets are then unpacked and each asset is installed into the related API and the package can be configured.
In the following is a high level overview of a package.
In general, assets within a package are organised by {stack-component}/{asset-type}. For example assets for Elasticsearch ingest pipelines are in the folder elasticsearch/ingest-pipeline
. The same logic applies to all Elasticsearch, Kibana and Elastic Agent assets.
There is a special folder data_stream
. All assets inside the data_stream
folder must follow the Data Stream naming scheme. data_stream
can contain multiple folders, each with the name of that describes the content. Inside this folder, the same structure as before for {stack-component}/{asset-type} applies. The difference is that for all these assets, Fleet during installation enforces naming rules related to the Data Stream naming scheme. All assets in this folder belong directly or indirectly to data streams.
In contrast, any asset added on the top level will be picked up as json document, pushed to the corresponding Elasticsearch / Kibana APIs and used as is. In most scenarios, only data stream assets are needed. There are exceptions where global assets are required to get more flexibility. This could be, for example, an ILM policy that applies to all data streams.
For a quick overview, these are the assets typically found in an Elastic Package. The package spec will always contain the fully up-to-date list.
- Elasticsearch
- Ingest Pipeline
- Index Template
- Transform
- Index template settings
- Kibana
- Dashboards
- Visualization
- Index patterns
- ML Modules
- Map
- Search
- Security rules
- CSP (cloud security posture) rule templates
- Other
- fields.yml
The special asset fields.yml
is used to generate out of a single definition Elasticsearch Index Templates and Kibana index patterns. The exact definition can be found in the package spec.
An Elastic Package specification describes:
- the folder structure of packages and expected files within these folders; and
- the structure of the expected files' contents.
There may be multiple versions of specifications. At the root of this repository is a versions
folder. In this folder you will find sub-folders for each active major version of the specification, e.g. versions/1
, versions/2
, etc. Read more in the Specification Versioning section below.
Within each major version folder, there must be a spec.yml
file. This file is the entry point for the specification for a package's contents. It describes the the folder structure of packages and expected files within these folders (this is point 1. above). The specification is expressed using a schema similar to JSON Schema, but with a couple of differences:
- The
type
field can be eitherfolder
orfile
, - A new field,
contents
is introduced to (recursively) describe the contents of folders (i.e. when type == folder), and - The specification is written as YAML for readability.
Expected package files, e.g. manifest.yml
themselves have a structure to their contents. This structure is described in specification files using JSON schema (this is point 2. above). These specification files are also written as YAML for readability.
Note that the specification files primarily define the structure (syntax) of a package's contents. To a limited extent they may also define some semantics, e.g. enumeration values for certain fields. Richer semantics, however, will need to be expressed as validation code.
As mentioned above, package specifications are versioned. Versions follow the semantic versioning scheme. In the context of package specifications, this means the following.
-
Packages must specify the specification version they are using. This is done via the
format_version
property in the package's rootmanifest.yml
file. The value offormat_version
must conform to the semantic versioning scheme. -
Specifications are organized under the
versions
folder located at the root of this repository. Theversions
folder will contain a sub-folder for each major version of the specification, e.g.versions/1
,versions/2
, etc. -
Within each major version folder, there is a
spec.yml
file. It contains a root-level property calledversion
which specifies the complete, current version of the specification. The value ofversion
conforms to the semantic versioning scheme. -
Note that the latest version — and only the latest version — of the specifications may include a pre-release suffix,
e.g. 1.4.0-alpha1
. This indicates that this version is still under development and may be changed multiple times. Once the pre-relase suffix is removed, however, the specification at that version becomes immutable. Further changes must follow the process outlined below in Changing a Specification.
- Consider the latest version of the specification. Say it is
x.y.z
. It will be located under theversions/x
folder, wherex
is the major version of the specification. - Now consider a proposal to change the specification in some way. The version number of the changed specification must be determined as follows:
- If the proposed change makes the specification stricter than it is at
x.y.z
, the new version number will beX.0.0
, whereX = x + 1
. That is, we bump up the major version.- Add a new folder named
versions/X
, whereX
is the new major version number. - The changed specification — in its entirety — must be added to the new version folder.
- Set the root-level
version
property in the specification's rootspec.yml
file toX.0.0
. - Start a new
CHANGELOG.yml
file at the root of theversions/X
folder, add a section forX.0.0
and make an entry under it explaining your change. If there are multiple changes, please add multiple entries under the new section.
- Add a new folder named
- If the proposed change makes the specification looser than it is at
x.y.z
, the new version number will bex.Y.0
, whereY = y + 1
. That is, we bump up the minor version. Note that adding new, but optional, constraints to a specification is a change that makes a specification looser.- Apply the proposed changes to the existing specification under the
versions/x
folder, wherex
is the major version number of the specification being changed. - Set the root-level
version
property in the specification's rootspec.yml
file tox.Y.0
. - Modify the
CHANGELOG.yml
file at the root of theversions/x
folder, add an section forx.Y.0
and make an entry under it explaining your change. If there are multiple changes, please add multiple entries under the new section.
- Apply the proposed changes to the existing specification under the
- If the proposed change does not change the strictness of the specification at
x.y.z
, the new version number will bex.y.Z
, whereZ = z + 1
. That is, we bump the patch version.- Apply the proposed changes to the existing specification under the
versions/x
folder, wherex
is the major version number of the specification being changed. - Set the root-level
version
property in the specification's rootspec.yml
file tox.y.Z
. - Modify the
CHANGELOG.yml
file at the root of theversions/x
folder, add an section forx.y.Z
and make an entry under it explaining your change. If there are multiple changes, please add multiple entries under the new section.
- Apply the proposed changes to the existing specification under the
- If the proposed change makes the specification stricter than it is at
A package specifying its format_version
as x.y.z
must be valid against specifications in the semantic version range [x.y.z, X.0.0)
, where X = x + 1
.