Skip to content
Snippets Groups Projects
Select Git revision
  • cf36ffb33504d295198a4f2f4e637779f484328f
  • main default protected
  • 14-env
  • fix-version-3
  • automated-updates-fix-action
  • release-0.15
  • automated-updates-main
  • release-0.13
  • automated-updates-release-0.13
  • release-0.14
  • release-0.10
  • release-0.11
  • release-0.12
  • fix-versions-action
  • versions-fix
  • release-0.9
  • release-0.8
  • release-0.7
  • release-0.6
  • release-0.5
  • release-0.4
  • v0.15.0
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.0
  • v0.5.0
  • v0.4.0
  • v0.3.0
  • v0.2.0
  • v0.1.0
36 results

exposing-prometheus-alertmanager-grafana-ingress.md

Blame
  • error-messages.ts 1.73 KiB
    // System error
    export const SYSTEM_INSUFFICIENT_DISK_SPACE = 'disk-space';
    export const SYSTEM_INSUFFICIENT_MEMORY = 'out-of-memory';
    
    // Platform Error
    export const PLATFORM_AUTHENTICATION_ERROR = 'authentication-error';
    export const PLATFORM_BAD_CREDENTIALS = 'bad-credentials';
    export const PLATFORM_FAILURE = 'platform-failure';
    export const PLATFORM_INTEGRATION_UNAUTHORIZED = 'integration-unauthorized';
    export const PLATFORM_NOT_FOUND = 'platform-not-found';
    export const PLATFORM_RATE_LIMIT_EXCEEDED = 'rate-limit-exceeded';
    
    // Config Error
    export const CONFIG_VALIDATION = 'config-validation';
    
    // Repository Error
    export const REPOSITORY_ACCESS_FORBIDDEN = 'forbidden';
    export const REPOSITORY_ARCHIVED = 'archived';
    export const REPOSITORY_BLOCKED = 'blocked';
    export const REPOSITORY_CANNOT_FORK = 'cannot-fork';
    export const REPOSITORY_CHANGED = 'repository-changed';
    export const REPOSITORY_DISABLED = 'disabled';
    export const REPOSITORY_EMPTY = 'empty';
    export const REPOSITORY_FORKED = 'fork';
    export const REPOSITORY_MIRRORED = 'mirror';
    export const REPOSITORY_NOT_FOUND = 'not-found';
    export const REPOSITORY_NO_VULNERABILITY = 'no-vulnerability-alerts';
    export const REPOSITORY_RENAMED = 'renamed';
    export const REPOSITORY_TEMPORARY_ERROR = 'temporary-error';
    export const REPOSITORY_UNINITIATED = 'uninitiated';
    
    // Manager Error
    export const MANAGER_LOCKFILE_ERROR = 'lockfile-error';
    export const MANAGER_NO_PACKAGE_FILES = 'no-package-files';
    
    // Datasource error
    export const DATASOURCE_FAILURE = 'registry-failure';
    
    // Worker Error
    export const WORKER_FILE_UPDATE_FAILED = 'update-failure';
    
    // Bundler Error
    export const BUNDLER_INVALID_CREDENTIALS = 'bundler-credentials';
    
    // Unknown Error
    export const UNKNOWN_ERROR = 'unknown-error';