amazon web services - Monitoring Datomic in CloudWatch without CloudFormation -


i'm trying monitor datomic transactor in cloudwatch. according documentation (section "using s3 log storage , cloudwatch metrics other storages") should able setting couple config variables , making sure instance launched appropriate iam policy.

i set appropriate configs in transactor.properties file pass transactor when starts:

aws-cloudwatch-region=us-east-1 aws-cloudwatch-dimension-value=transactor-staging 

and set instance iam role called datomic policy contains:

{   "version": "2012-10-17",   "statement":     [{"resource":"*",       "effect":"allow",       "action": ["cloudwatch:putmetricdata", "cloudwatch:putmetricdatabatch"],       "condition":{"bool":{"aws:securetransport":"true"}}}]} 

but when in cloudwatch can't find metrics associated datomic or transactor. when run transactor don't see error messages in logs.

is there else need do? should note i'm not using cloudformation, haven't run through of cloudformation datomic init stuff if that's relevant here.

thanks!


Comments

Popular posts from this blog

shader - OpenGL Shadow Map -

stringtemplate - StringTemplate4 if conditional with length -