Documentation
¶
Overview ¶
Package k6registry contains the data model of the k6 extensions registry.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var Schema []byte
Schema contains JSON schema for Grafana k6 Extension Registry JSON.
var ( // Tiers contains possible values for Tier. Tiers = []Tier{TierOfficial, TierCommunity} )
Functions ¶
This section is empty.
Types ¶
type Compliance ¶ added in v0.1.14
type Compliance struct {
// A list of compliance check IDs that failed.
//
// The `issues“ property is primarily used for debugging. It contains the
// (implementation-dependent) identifiers of those compliance checks that failed.
//
Issues []string `json:"issues,omitempty" yaml:"issues,omitempty" mapstructure:"issues,omitempty"`
}
The result of the extension's k6 compliance checks.
type Extension ¶
type Extension struct {
// Flag indicating the need for cgo.
//
// The `cgo` property value `true` indicates that cgo must be enabled to build the
// extension.
//
Cgo bool `json:"cgo,omitempty" yaml:"cgo,omitempty" mapstructure:"cgo,omitempty"`
// The result of the extension's k6 compliance checks.
//
Compliance ExtensionCompliance `json:"compliance,omitempty" yaml:"compliance,omitempty" mapstructure:"compliance,omitempty"`
// Version constraints.
//
// Version constraints are primarily used to filter automatically detected
// versions.
// It can also be used to filter the versions property imported from the origin
// registry.
//
Constraints string `json:"constraints,omitempty" yaml:"constraints,omitempty" mapstructure:"constraints,omitempty"`
// Brief description of the extension.
//
Description string `json:"description,omitempty" yaml:"description,omitempty" mapstructure:"description,omitempty"`
// List of JavaScript import paths registered by the extension.
//
// Currently, paths must start with the prefix `k6/x/`.
//
// The extensions used by k6 scripts are automatically detected based on the
// values specified here, therefore it is important that the values used here are
// consistent with the values registered by the extension at runtime.
//
Imports []string `json:"imports,omitempty" yaml:"imports,omitempty" mapstructure:"imports,omitempty"`
// The extension's go module path.
//
// This is the unique identifier of the extension.
// More info about module paths: https://go.dev/ref/mod#module-path
//
// The extension has no name property, the module path or part of it can be used
// as the extension name. For example, using the first two elements of the module
// path after the host name, the name `grafana/xk6-dashboard` can be formed from
// the module path `github.com/grafana/xk6-dashboard`. This is typically the
// repository owner name and the repository name in the repository manager.
//
// The extension has no URL property, a URL can be created from the module path
// that refers to the extension within the repository manager.
//
Module string `json:"module" yaml:"module" mapstructure:"module"`
// List of output names registered by the extension.
//
// The extensions used by k6 scripts are automatically detected based on the
// values specified here, therefore it is important that the values used here are
// consistent with the values registered by the extension at runtime.
//
Outputs []string `json:"outputs,omitempty" yaml:"outputs,omitempty" mapstructure:"outputs,omitempty"`
// Repository metadata.
//
// Metadata provided by the extension's git repository manager. Repository
// metadata are not registered, they are queried at runtime using the repository
// manager API.
//
Repo *Repository `json:"repo,omitempty" yaml:"repo,omitempty" mapstructure:"repo,omitempty"`
// Maintainer of the extension.
//
// Possible values:
//
// - official: Extensions owned, maintained, and designated by Grafana as
// "official"
// - community: Extensions are listed on the Registry by individual maintainers,
// groups of maintainers, or other members of the k6 community.
//
// Extensions owned by the `grafana` GitHub organization are not officially
// supported by Grafana by default.
// There are several k6 extensions owned by the `grafana` GitHub organization,
// which were created for experimental or example purposes only.
// The `official` tier value is needed so that officially supported extensions can
// be distinguished from them.
//
// If it is missing from the registry source, it will be set with the default
// "community" value during generation.
//
Tier Tier `json:"tier,omitempty" yaml:"tier,omitempty" mapstructure:"tier,omitempty"`
// List of supported versions.
//
// Versions are tags whose format meets the requirements of semantic versioning.
// Version tags often start with the letter `v`, which is not part of the semantic
// version.
//
Versions []string `json:"versions,omitempty" yaml:"versions,omitempty" mapstructure:"versions,omitempty"`
}
Properties of the registered k6 extension.
Only those properties of the extensions are registered, which either cannot be detected automatically, or delegation to the extension is not allowed.
Properties that are available using the repository manager API are intentionally not registered.
The string like properties that are included in the generated Grafana documentation are intentionally not accessed via the API of the repository manager. It is not allowed to inject arbitrary text into the Grafana documentation site without approval. Therefore, these properties are registered (eg `description`)
type ExtensionCompliance ¶ added in v0.5.0
type ExtensionCompliance map[string]Compliance
The result of the extension's k6 compliance checks.
type Metrics ¶ added in v0.1.36
type Metrics struct {
// Number of extensions requiring cgo.
CgoCount int `json:"cgo_count,omitempty" yaml:"cgo_count,omitempty" mapstructure:"cgo_count,omitempty"`
// The total number of extensions.
ExtensionCount int `json:"extension_count,omitempty" yaml:"extension_count,omitempty" mapstructure:"extension_count,omitempty"`
// Number of extensions not buildable with the latest k6 version.
IssueBuildCount int `json:"issue_build_count,omitempty" yaml:"issue_build_count,omitempty" mapstructure:"issue_build_count,omitempty"`
// Number of extensions without CODEOWNERS file.
IssueCodeownersCount int `` /* 127-byte string literal not displayed */
// Number of extensions without examples directory.
IssueExamplesCount int `json:"issue_examples_count,omitempty" yaml:"issue_examples_count,omitempty" mapstructure:"issue_examples_count,omitempty"`
// Number of extensions without git workdir.
IssueGitCount int `json:"issue_git_count,omitempty" yaml:"issue_git_count,omitempty" mapstructure:"issue_git_count,omitempty"`
// Number of extensions without suitable OSS license.
IssueLicenseCount int `json:"issue_license_count,omitempty" yaml:"issue_license_count,omitempty" mapstructure:"issue_license_count,omitempty"`
// Number of extensions without valid go.mod.
IssueModuleCount int `json:"issue_module_count,omitempty" yaml:"issue_module_count,omitempty" mapstructure:"issue_module_count,omitempty"`
// Number of extensions without readme file.
IssueReadmeCount int `json:"issue_readme_count,omitempty" yaml:"issue_readme_count,omitempty" mapstructure:"issue_readme_count,omitempty"`
// Number of extensions with replace directive in go.mod.
IssueReplaceCount int `json:"issue_replace_count,omitempty" yaml:"issue_replace_count,omitempty" mapstructure:"issue_replace_count,omitempty"`
// Number of extensions without smoke test script.
IssueSmokeCount int `json:"issue_smoke_count,omitempty" yaml:"issue_smoke_count,omitempty" mapstructure:"issue_smoke_count,omitempty"`
// Number of extensions without API declaration file.
IssueTypesCount int `json:"issue_types_count,omitempty" yaml:"issue_types_count,omitempty" mapstructure:"issue_types_count,omitempty"`
// Number of extensions without semantic versioning git tags.
IssueVersionsCount int `json:"issue_versions_count,omitempty" yaml:"issue_versions_count,omitempty" mapstructure:"issue_versions_count,omitempty"`
// Number of extension in the community' tier.
TierCommunityCount int `json:"tier_community_count,omitempty" yaml:"tier_community_count,omitempty" mapstructure:"tier_community_count,omitempty"`
// Number of extensions in the 'official' tier.
TierOfficialCount int `json:"tier_official_count,omitempty" yaml:"tier_official_count,omitempty" mapstructure:"tier_official_count,omitempty"`
// Number of JavaScript extension.
TypeJavaScriptCount int `json:"type_javascript_count,omitempty" yaml:"type_javascript_count,omitempty" mapstructure:"type_javascript_count,omitempty"`
// Number of Output extension.
TypeOutputCount int `json:"type_output_count,omitempty" yaml:"type_output_count,omitempty" mapstructure:"type_output_count,omitempty"`
}
Extension registry metrics.
type Registry ¶
type Registry []Extension
k6 Extension Registry.
The k6 extension registry contains the most important properties of registered extensions.
type Repository ¶ added in v0.1.1
type Repository struct {
// Archived repository flag.
//
// A `true` value indicates that the repository is archived, read only.
//
// If a repository is archived, it usually means that the owner has no intention
// of maintaining it. Such extensions should be removed from the registry.
//
Archived bool `json:"archived,omitempty" yaml:"archived,omitempty" mapstructure:"archived,omitempty"`
// URL for the git clone operation.
//
// The clone_url property contains a (typically HTTP) URL, which is used to clone
// the repository.
//
CloneURL string `json:"clone_url,omitempty" yaml:"clone_url,omitempty" mapstructure:"clone_url,omitempty"`
// Repository description.
//
Description string `json:"description,omitempty" yaml:"description,omitempty" mapstructure:"description,omitempty"`
// The URL to the project homepage.
//
// If no homepage is set, the value is the same as the url property.
//
Homepage string `json:"homepage,omitempty" yaml:"homepage,omitempty" mapstructure:"homepage,omitempty"`
// The SPDX ID of the extension's license.
//
// For more information about SPDX, visit https://spdx.org/licenses/
//
License string `json:"license,omitempty" yaml:"license,omitempty" mapstructure:"license,omitempty"`
// The name of the repository.
//
Name string `json:"name" yaml:"name" mapstructure:"name"`
// The owner of the repository.
//
Owner string `json:"owner" yaml:"owner" mapstructure:"owner"`
// Public repository flag.
//
// A `true` value indicates that the repository is public, available to anyone.
//
Public bool `json:"public,omitempty" yaml:"public,omitempty" mapstructure:"public,omitempty"`
// The number of stars in the extension's repository.
//
// The extension's popularity is indicated by how many users have starred the
// extension's repository.
//
Stars int `json:"stars,omitempty" yaml:"stars,omitempty" mapstructure:"stars,omitempty"`
// Last modification timestamp.
//
// The timestamp property contains the timestamp of the last modification of the
// repository in UNIX time format (the number of non-leap seconds that have
// elapsed since 00:00:00 UTC on 1st January 1970).
// Its value depends on the repository manager, in the case of GitHub it contains
// the time of the last push operation, in the case of GitLab the time of the last
// repository activity.
//
Timestamp float64 `json:"timestamp,omitempty" yaml:"timestamp,omitempty" mapstructure:"timestamp,omitempty"`
// Repository topics.
//
// Topics make it easier to find the repository. It is recommended to set the xk6
// topic to the extensions repository.
//
Topics []string `json:"topics,omitempty" yaml:"topics,omitempty" mapstructure:"topics,omitempty"`
// URL of the repository.
//
// The URL is provided by the repository manager and can be displayed in a
// browser.
//
URL string `json:"url" yaml:"url" mapstructure:"url"`
}
Repository metadata.
Metadata provided by the extension's git repository manager. Repository metadata are not registered, they are queried at runtime using the repository manager API.
Directories
¶
| Path | Synopsis |
|---|---|
|
Package cmd contains run cobra command factory function.
|
Package cmd contains run cobra command factory function. |
|
k6registry
command
Package main contains the main function for k6registry CLI tool.
|
Package main contains the main function for k6registry CLI tool. |
|
tools
|
|
|
gendoc
command
Package main contains CLI documentation generator tool.
|
Package main contains CLI documentation generator tool. |